-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
39 lines (34 loc) · 1007 Bytes
/
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
[package]
name = "cola"
version = "0.5.0"
edition = "2021"
authors = ["Riccardo Mazzarini <[email protected]>"]
description = "A text CRDT for real-time collaborative editing"
documentation = "https://docs.rs/cola"
repository = "https://github.com/nomad/cola"
readme = "README.md"
license = "MIT"
keywords = ["crdt", "collaboration", "text", "editor", "tree"]
categories = ["data-structures", "text-editors", "text-processing"]
exclude = ["/.github/*", "/examples/**", "/fuzz/**", "/tests/**"]
[package.metadata.docs.rs]
features = ["serde"]
rustdoc-args = ["--cfg", "docsrs"]
[features]
encode = ["dep:sha2", "dep:varint-simd"]
serde = ["encode", "dep:serde"]
[dependencies]
serde = { version = "1.0", optional = true }
sha2 = { version = "0.10", optional = true }
varint-simd = { version = "0.4", optional = true }
[dev-dependencies]
bincode = "1.3"
criterion = "0.5"
rand = "0.8"
rand_chacha = "0.3"
serde_json = "1"
traces = { path = "./traces" }
zstd = "0.13"
[[bench]]
name = "traces"
harness = false