-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (37 loc) · 1.19 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
[package]
name = "hashseq"
license = "MIT"
authors = [ "David Rusu <davidrusu.me@gmail.com>" ]
description = "A BFT Sequence CRDT suitable for unpermissioned networks with unbounded number of collaborators."
keywords = [ "bft", "crdt", "distributed", "decentralized", "collaboration" ]
homepage = "https://github.com/davidrusu/hashseq"
repository = "https://github.com/davidrusu/hashseq"
documentation = "https://docs.rs/hashseq"
version = "0.1.0"
edition = "2021"
[dependencies]
serde = { version = "1", features = ["derive"] }
tiny-keccak = { version = "2.0.2", features = ["sha3"] }
content-tree = "0.2.0"
rle = "0.2.0"
rand = "0.8.5"
associative_positional_list = "0.1.3"
[dev-dependencies]
serde_json = "1.0.86"
indicatif = "0.17.1"
pprof = { version = "0.13", default_features = false, features = ["flamegraph", "frame-pointer"] }
quickcheck = "1"
quickcheck_macros = "1"
criterion = "0.5"
iced = { version = "0.10", features=["canvas"]} # { git = "https://github.com/iced-rs/iced.git", rev = "7dd32f3be43c72e11dac5e07918e9ad6d36b6555" }
bincode = "1.3.3"
[profile.bench]
debug = true
[profile.release]
debug = true
[[bench]]
name = "inserts"
harness = false
[[bench]]
name = "automerge_bench"
harness = false