forked from zxch3n/crdt-bench-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (36 loc) · 812 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
40
41
42
43
44
[package]
name = "crdt-bench-native"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = "0.8.5"
criterion = "0.4.0"
loro-internal = { path = "../loro/crates/loro-internal" }
arbitrary = { version = "1.2.0", features = ["derive"] }
enum-as-inner = "0.5.1"
flate2 = "1.0.25"
serde_json = "1.0.89"
yrs = "0.16.2"
automerge = "0.3.0"
diamond-types = "1.0.0"
arref = "0.1.0"
indicatif = "0.17.3"
y-octo = { path = "../y-octo/y-octo", features = ["large_refs"] }
[profile.release]
debug = true
[[bench]]
name = "automerge"
harness = false
[[bench]]
name = "loro"
harness = false
[[bench]]
name = "yocto"
harness = false
[[bench]]
name = "yrs"
harness = false
[[bench]]
name = "diamond-type"
harness = false