-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 1006 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
workspace = { members = [
"examples/http-multi-server-channels",
"examples/http-single-server-channels",
"examples/iroh-p2p-channels",
"examples/sql-integration",
"examples/api-integration",
] }
[package]
name = "polytune"
version = "0.1.0"
edition = "2021"
[dependencies]
bincode = "1.3.3"
blake3 = "1.5.0"
chacha20poly1305 = "0.10.1"
garble_lang = { version = "0.4.0", features = ["serde"] }
rand = "0.8.5"
rand_chacha = "0.3.1"
serde = { version = "1.0.195", features = ["derive"] }
tokio = { version = "1.35.1", features = ["full"] }
trait-variant = "0.1.1"
async-trait = "0.1.77"
smallvec = { version = "1.13.2", features = ["serde"] }
curve25519-dalek = { version = "4.1.3", features = ["rand_core"] }
ocelot = { git = "https://github.com/GaloisInc/swanky", rev = "154fa34" }
scuttlebutt = { git = "https://github.com/GaloisInc/swanky", rev = "154fa34" }
[dev-dependencies]
criterion = { version = "0.5.1", features = ["async_tokio"] }
[[bench]]
name = "join"
harness = false