-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
93 lines (77 loc) · 1.72 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[package]
name = "eemod"
version = "0.1.0"
edition = "2021"
authors = ["myl7 <[email protected]>"]
# description = ""
documentation = "https://github.com/myl7/eemod#readme"
homepage = "https://github.com/myl7/eemod"
repository = "https://github.com/myl7/eemod.git"
# license = ""
keywords = ["moderation", "e2ee", "threshold-report", "tracing"]
# categories = []
[dependencies]
aes-gcm = "0.10.2"
anyhow = "1.0.75"
async-trait = "0.1.73"
dcf = { version = "0.5.0", features = ["prg"] }
double-ratchet = "0.1.0"
double-ratchet-signal = "0.1.3"
dpf-fss = { version = "0.5.0", features = ["prg"] }
group-math = { version = "0.2.1", features = ["int"] }
hex = "0.4.3"
md-5 = "0.10.6"
num-bigint = "0.4.4"
prost = "0.12.1"
rand = { version = "0.8.5", features = ["std", "std_rng"] }
rand_os = "0.1"
ring-compat = "0.7.0"
rocksdb = { version = "0.21.0", default-features = false }
# sha2 = "0.10.7"
tokio = { version = "1.32.0", features = ["rt", "rt-multi-thread", "macros"] }
tonic = "0.10.0"
uuid = "1.4.1"
[[bench]]
name = "gen_id"
harness = false
[[bench]]
name = "gen_id_by_entities"
harness = false
[[bench]]
name = "verify_msg"
harness = false
[[bench]]
name = "shuffle_id"
harness = false
[[bench]]
name = "gen_id_shares"
harness = false
[[bench]]
bench = false
name = "gen_id_shuffle"
harness = false
[[bench]]
name = "update_msp"
harness = false
[[bench]]
name = "msp_compare"
harness = false
[[bench]]
name = "gen_compare"
harness = false
[[bench]]
name = "gen_mac"
harness = false
[[bench]]
name = "verify_mac"
harness = false
[[bench]]
name = "seek_source"
harness = false
[[bench]]
name = "gen_recv_msg"
harness = false
[build-dependencies]
tonic-build = "0.10.0"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["async_tokio"] }