-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathjustfile
37 lines (23 loc) · 847 Bytes
/
justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
_default:
just --list
test:
# Test all features
cargo test --workspace --all-features
# Check no default features
cargo check --no-default-features --workspace
# Check `fs` feature (gel-tokio)
cargo check --features=fs --package gel-tokio
# Check with env feature, gel-tokio
cargo check --features=env --package gel-tokio
# Test gel-protocol without default features
cargo test --package=gel-protocol --no-default-features
# Test gel-protocol with "all-types" feature
cargo test --package=gel-protocol --features=all-types
cargo clippy --workspace --all-features --all-targets
cargo fmt --check
test-fast:
cargo fmt
cargo test --workspace --features=unstable
cargo clippy --workspace --all-features --all-targets
publish:
tools/publish.sh gel-tokio