loro/crates/rle/Cargo.toml

23 lines
538 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]
2022-08-09 13:25:24 +00:00
bumpalo = { version = "3.10.0", 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"
crdt-list = { version = "0.2.1", path = "../../../crdt-list" }
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"