-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
69 lines (60 loc) · 1.75 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "crdt-richtext"
version = "0.1.1"
edition = "2021"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/loro-dev/crdt-richtext"
description = "Richtext CRDT, Rust implementation of Peritext and Fugue"
repository = "https://github.com/loro-dev/crdt-richtext"
authors = ["zxch3n <remch183@outlook.com>"]
keywords = ["crdt", "p2p", "richtext", "text-editing"]
include = ["Cargo.toml", "src/**/*.rs", "benches/**/*.rs", "examples/**/*.rs"]
documentation = "https://docs.rs/crdt-richtext"
[workspace]
members = ["./crdt-richtext-wasm"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
crdt-list = { version = "0.4.1", optional = true, features = ["fuzzing"] }
rand = { version = "0.8.5", optional = true }
arbitrary = { version = "1.2.3", optional = true }
enum-as-inner = "0.5.1"
arref = "0.1.0"
debug-log = "0.1.4"
heapless = "0.7.16"
fxhash = "0.2.1"
generic-btree = { version = "0.3.1" }
bitvec = "1.0.1"
append-only-bytes = { version = "0.1.5", features = ["u32_range"] }
string_cache = "0.8.6"
smallvec = "1.10.0"
serde_columnar = "0.2.5"
serde = { version = "1.0.140", features = ["derive"] }
flate2 = "1.0.25"
serde_json = "1.0"
thiserror = "1.0"
[dev-dependencies]
rand = { version = "0.8.5" }
pprof = { version = "0.11.1", features = [
"flamegraph",
"criterion",
"frame-pointer",
] }
criterion = "0.4.0"
arbtest = "0.2.0"
color-backtrace = "0.5.1"
ctor = "0.1.26"
dhat = "0.3.2"
serde_json = "1.0.94"
arbitrary = { version = "1.2.3", features = ["derive"] }
flate2 = "1.0.25"
[features]
test = ["crdt-list", "rand", "arbitrary"]
[[bench]]
name = "bench"
harness = false
[[bench]]
name = "rich-text"
harness = false
[patch.crates-io]
generic-btree = { path = "../generic-btree" }