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-10-21 09:57:46 +00:00
|
|
|
smallvec = "1.8.0"
|
2022-11-10 14:34:49 +00:00
|
|
|
bumpalo = { version = "3.11.1", features = ["collections", "boxed"] }
|
2022-07-26 18:24:25 +00:00
|
|
|
num = "0.4.0"
|
2022-08-09 09:32:38 +00:00
|
|
|
enum-as-inner = "0.5.1"
|
2023-07-10 07:57:55 +00:00
|
|
|
ouroboros = "0.15.4"
|
2022-10-11 08:50:22 +00:00
|
|
|
arref = "0.1.0"
|
2022-12-06 08:05:58 +00:00
|
|
|
crdt-list = { version = "0.4.0" }
|
2022-10-12 17:24:47 +00:00
|
|
|
fxhash = "0.2.1"
|
2022-12-06 08:34:46 +00:00
|
|
|
heapless = "0.7.16"
|
|
|
|
debug-log = "0.1.4"
|
2022-12-09 09:22:33 +00:00
|
|
|
append-only-bytes = { version = "0.1.4", features = ["u32_range"] }
|
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]
|
2022-11-14 02:49:42 +00:00
|
|
|
test_utils = []
|
2022-10-28 09:19:58 +00:00
|
|
|
wasm = []
|