2022-11-01 08:38:44 -06:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
|
|
cargo doc
|
|
|
|
|
cargo test
|
2022-11-08 08:43:27 -07:00
|
|
|
cargo build --release --no-default-features
|
|
|
|
|
cargo build --release --no-default-features --features std
|
|
|
|
|
cargo build --release --no-default-features --features swash
|
2022-11-09 10:09:42 -07:00
|
|
|
cargo build --release --no-default-features --features syntect
|
|
|
|
|
cargo build --release --all-features
|
2022-11-01 08:38:44 -06:00
|
|
|
cargo build --release --all
|
|
|
|
|
env RUST_LOG=editor_test=info target/release/editor-test
|