loro/crates/loro-core/Cargo.toml

46 lines
1.2 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-12 17:24:47 +00:00
crdt-list = { version = "0.2.1", path = "../../../crdt-list" }
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-07-20 08:29:36 +00:00
[dev-dependencies]
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-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-24 03:33:39 +00:00
# whether to use list slice instead of raw str in text container
slice = []
fuzzing = ["crdt-list/fuzzing", "slice", "rand", "arbitrary", "tabled"]
proptest = ["fuzzing"]