loro/crates/loro-core/Cargo.toml
Zixuan Chen 1d38440e9f refactor: org loro entry code
add raw string pool
add owning_ref dep
2022-10-26 23:31:34 +08:00

40 lines
894 B
TOML

[package]
name = "loro-core"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
string_cache = "0.8.3"
rle = { path = "../rle" }
smallvec = "1.8.0"
smartstring = "1.0.1"
fxhash = "0.2.1"
ring = "0.16.20"
pin-project = "1.0.10"
serde = { version = "1.0.140", features = ["derive"] }
thiserror = "1.0.31"
im = "15.1.0"
enum-as-inner = "0.5.1"
num = "0.4.0"
crdt-list = { version = "0.2.1", path = "../../../crdt-list" }
rand = { version = "0.8.5", optional = true }
owning_ref = "0.4.1"
[dev-dependencies]
proptest = "1.0.0"
proptest-derive = "0.3.0"
rand = "0.8.5"
static_assertions = "1.1.0"
tabled = "0.9.0"
# See https://matklad.github.io/2021/02/27/delete-cargo-integration-tests.html
[lib]
doctest = false
[features]
fuzzing = ["crdt-list/fuzzing", "rand"]
[profile.release]
debug = true