loro/crates/loro-core/Cargo.toml

71 lines
1.7 KiB
TOML
Raw Normal View History

2022-07-12 16:47:41 +00:00
[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"
2022-09-01 16:59:02 +00:00
rle = { path = "../rle" }
2022-07-15 10:24:15 +00:00
smallvec = "1.8.0"
smartstring = "1.0.1"
2022-07-15 13:51:19 +00:00
fxhash = "0.2.1"
2022-07-18 05:53:16 +00:00
ring = "0.16.20"
2022-07-19 03:54:14 +00:00
pin-project = "1.0.10"
2022-09-01 16:59:02 +00:00
serde = { version = "1.0.140", features = ["derive"] }
2022-07-25 05:00:22 +00:00
thiserror = "1.0.31"
2022-08-03 18:42:00 +00:00
im = "15.1.0"
2022-08-26 12:19:38 +00:00
enum-as-inner = "0.5.1"
2022-09-01 16:59:02 +00:00
num = "0.4.0"
2022-10-26 15:35:21 +00:00
crdt-list = { version = "0.3.0" }
owning_ref = "0.4.1"
2022-10-20 11:19:43 +00:00
rand = { version = "0.8.5", optional = true }
arbitrary = { version = "1.1.7", optional = true }
tabled = { version = "0.10.0", optional = true }
2022-10-21 11:29:03 +00:00
colored = "2.0.0"
2022-10-24 17:33:17 +00:00
bit-vec = "0.6.3"
2022-10-28 09:19:58 +00:00
wasm-bindgen = { version = "0.2.83", optional = true }
js-sys = { version = "0.3.60", optional = true }
2022-07-20 08:29:36 +00:00
[dev-dependencies]
2022-10-26 14:20:09 +00:00
dhat = "0.3.1"
2022-10-20 11:19:43 +00:00
rand = { version = "0.8.5" }
2022-07-20 08:29:36 +00:00
proptest = "1.0.0"
proptest-derive = "0.3.0"
2022-09-20 07:31:18 +00:00
static_assertions = "1.1.0"
2022-10-20 11:19:43 +00:00
tabled = "0.10.0"
2022-10-20 09:34:51 +00:00
color-backtrace = { version = "0.5" }
ctor = "0.1.23"
2022-10-27 08:36:04 +00:00
criterion = "0.4.0"
2022-10-31 08:16:44 +00:00
serde_json = "1.0.87"
flate2 = "1.0.24"
2022-10-31 11:27:13 +00:00
tikv-jemalloc-ctl = "0.5.0"
tikv-jemalloc-sys = { version = "0.5.0", features = [
"stats",
"profiling",
"unprefixed_malloc_on_supported_platforms",
] }
tikv-jemallocator = { version = "0.5.0", features = [
2022-10-31 09:21:06 +00:00
"stats",
"profiling",
"unprefixed_malloc_on_supported_platforms",
] }
2022-07-31 07:56:15 +00:00
# See https://matklad.github.io/2021/02/27/delete-cargo-integration-tests.html
[lib]
doctest = false
2022-10-08 18:04:41 +00:00
[features]
2022-10-28 09:19:58 +00:00
wasm = ["wasm-bindgen", "js-sys"]
parallel = []
2022-10-24 03:33:39 +00:00
# whether to use list slice instead of raw str in text container
slice = []
2022-10-26 14:20:09 +00:00
fuzzing = ["crdt-list/fuzzing", "rand", "slice", "arbitrary", "tabled"]
2022-10-24 03:33:39 +00:00
proptest = ["fuzzing"]
2022-10-27 08:36:04 +00:00
[[bench]]
name = "text"
harness = false