loro/crates/rle/Cargo.toml

30 lines
603 B
TOML
Raw Normal View History

2022-07-12 16:47:41 +00:00
[package]
name = "rle"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
smallvec = "1.8.0"
bumpalo = { version = "3.11.1", features = ["collections", "boxed"] }
2022-07-26 18:24:25 +00:00
num = "0.4.0"
enum-as-inner = "0.5.1"
ouroboros = "0.15.2"
2022-10-11 08:50:22 +00:00
arref = "0.1.0"
2022-10-26 15:35:21 +00:00
crdt-list = { version = "0.3.0" }
2022-10-12 17:24:47 +00:00
fxhash = "0.2.1"
2022-08-11 12:12:47 +00:00
[dev-dependencies]
color-backtrace = { version = "0.5" }
ctor = "0.1.23"
2022-08-12 10:56:51 +00:00
proptest = "1.0.0"
2022-08-12 18:20:46 +00:00
smartstring = "1.0.1"
2022-09-08 10:24:19 +00:00
rand = "0.8.5"
2022-09-20 07:31:18 +00:00
static_assertions = "1.1.0"
2022-10-12 17:24:47 +00:00
[features]
fuzzing = []
2022-10-24 03:33:39 +00:00
proptest = ["fuzzing"]
2022-10-28 09:19:58 +00:00
wasm = []