mirror of
https://github.com/loro-dev/loro.git
synced 2025-02-05 20:17:13 +00:00
chore: optimize build time
This commit is contained in:
parent
fec3c272f8
commit
c6f268edda
5 changed files with 10 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -4,6 +4,7 @@ use std::{
|
|||
};
|
||||
|
||||
use fxhash::FxHashMap;
|
||||
#[cfg(test)]
|
||||
mod test;
|
||||
|
||||
use crate::{
|
||||
|
|
|
@ -17,6 +17,7 @@ mod loro;
|
|||
mod smstring;
|
||||
mod snapshot;
|
||||
mod span;
|
||||
#[cfg(test)]
|
||||
mod tests;
|
||||
mod value;
|
||||
|
||||
|
|
|
@ -11,3 +11,6 @@ loro-core = {path = "../loro-core"}
|
|||
ring = "0.16.20"
|
||||
rle = {path = "../rle"}
|
||||
sha2 = "0.10.2"
|
||||
|
||||
[lib]
|
||||
doctest = false
|
||||
|
|
|
@ -1 +1 @@
|
|||
nightly
|
||||
stable
|
||||
|
|
Loading…
Reference in a new issue