-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
62 lines (54 loc) · 1.71 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
[package]
name = "rumi"
version = "0.1.0"
edition = "2021"
authors = ["Harsh Pratap Singh <harshpratapsingh821@gmail.com>"]
description = "A privacy-preserving discovery service design for mapping distinct identifiers to IDs without revealing any information to the server!"
license = "MIT"
repository = "https://github.com/harsh-ps-2003/rumi"
documentation = "https://docs.rs/rumi"
readme = "README.md"
keywords = ["privacy", "cryptography", "oram", "discovery-service", "zero-knowledge"]
categories = ["cryptography"]
[[bin]]
name = "server"
path = "src/bin/server.rs"
doc = false # Don't include binaries in docs
[[bin]]
name = "client"
path = "src/bin/client.rs"
doc = false # Don't include binaries in docs
[dependencies]
tokio = { version = "1.0", features = ["full", "tracing", "rt-multi-thread"] }
tonic = "0.12.3"
clap = { version = "4.0", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rand = "0.8"
uuid = { version = "1.0", features = ["v4"] }
p256 = { version = "0.13", features = ["arithmetic", "hash2curve", "serde"] }
hex = "0.4"
sha2 = "0.10"
zeroize = { version = "1.5", features = ["derive"] }
bincode = "1.3"
prost = "0.13.3"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-attributes = "0.1.26"
console = "0.15"
console-subscriber = "0.4.1"
prometheus = { version = "0.13" }
lazy_static = "1.4"
reqwest = { version = "0.11", features = ["json"] }
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
tokio-console = "0.1.13"
[build-dependencies]
tonic-build = "0.12.3"
[profile.release]
debug = true
[[bench]]
name = "oram_benchmarks"
harness = false
[build]
rustflags = ["--cfg", "tokio_unstable"]