mirror of
https://github.com/loro-dev/loro.git
synced 2025-01-22 21:07:43 +00:00
e19fb6a91b
and fix several insertion bugs
18 lines
285 B
Makefile
18 lines
285 B
Makefile
build:
|
|
cargo build
|
|
|
|
test *FLAGS:
|
|
cargo nextest run {{FLAGS}}
|
|
|
|
# test without proptest
|
|
test-fast:
|
|
RUSTFLAGS='--cfg no_proptest' cargo nextest run
|
|
|
|
check-unsafe:
|
|
env RUSTFLAGS="-Funsafe-code --cap-lints=warn" cargo check
|
|
|
|
deny:
|
|
cargo deny check
|
|
|
|
crev:
|
|
cargo crev crate check
|