chore: optimize build time

This commit is contained in:
Zixuan Chen 2022-07-31 15:56:15 +08:00
parent fec3c272f8
commit c6f268edda
5 changed files with 10 additions and 1 deletions

View file

@ -20,3 +20,7 @@ thiserror = "1.0.31"
[dev-dependencies]
proptest = "1.0.0"
proptest-derive = "0.3.0"
# See https://matklad.github.io/2021/02/27/delete-cargo-integration-tests.html
[lib]
doctest = false

View file

@ -4,6 +4,7 @@ use std::{
};
use fxhash::FxHashMap;
#[cfg(test)]
mod test;
use crate::{

View file

@ -17,6 +17,7 @@ mod loro;
mod smstring;
mod snapshot;
mod span;
#[cfg(test)]
mod tests;
mod value;

View file

@ -11,3 +11,6 @@ loro-core = {path = "../loro-core"}
ring = "0.16.20"
rle = {path = "../rle"}
sha2 = "0.10.2"
[lib]
doctest = false

View file

@ -1 +1 @@
nightly
stable