-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
40 lines (36 loc) · 851 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
[package]
name = "pgp-chat"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name="client"
path="./src/client.rs"
[[bin]]
name="relay"
path="./src/relay.rs"
[dependencies]
anyhow = "1.0.79"
base64 = "0.20.0"
chrono = "0.4.33"
clap = { version = "4.4.18", features = ["derive"] }
ncurses = "5.101.0"
sequoia-openpgp = "1.17.0"
serde = { version = "1.0.195", features = ["derive"] }
zmq = "0.10.0"
chacha20poly1305 = "0.10.1"
aead = "0.5.2"
zenoh = "1.0.0"
async-std = "1.12.0"
futures = "0.3.30"
tokio = { version = "1.38.0", features = ["signal"] }
lazy_static = "1.5.0"
async-trait = "0.1.81"
async-recursion = "1.1.1"
sha2 = "0.10.8"
once_cell = "1.19.0"
ratatui = "0.28.1"
color-eyre = "0.6.3"
rand = "0.8.5"
serde_cbor = "0.11.2"
ringbuffer = "0.15.0"