mirror of
https://github.com/loro-dev/loro.git
synced 2025-02-02 11:06:14 +00:00
10 lines
134 B
Makefile
10 lines
134 B
Makefile
|
build:
|
||
|
cargo build
|
||
|
|
||
|
test:
|
||
|
cargo nextest run
|
||
|
|
||
|
# test without proptest
|
||
|
test-fast:
|
||
|
RUSTFLAGS='--cfg no_proptest' cargo nextest run
|