-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (34 loc) · 898 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
[package]
name = "heart7"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "heart7d"
path = "src/bin/server.rs"
[[bin]]
name = "heart7"
path = "src/bin/client.rs"
[dependencies]
tonic = "0.11.0"
prost = "0.12.3"
tokio = { version = "1.0", features = ["full"] }
tokio-stream = { version = "0.1", features = ["sync"] }
log = "0.4.19"
rand = "0.8.5"
crossterm = { version = "0.27.0", features = ["event-stream"] }
ratatui = { version = "0.22.0", features = ["all-widgets"]}
tokio-util = "0.7.8"
futures = "0.3.28"
log4rs = "1.2.0"
tui-input = "0.8.0"
clap = { version = "4.3.24", features = ["derive"] }
anyhow = "1.0.89"
thiserror = "1.0.64"
http = "0.2.11"
tonic-web = "0.11.0"
tower-http = { version = "0.4.4", default-features = false, features = ["cors"] }
[dependencies.uuid]
version = "1.4.1"
features = ["v4", "fast-rng", "macro-diagnostics"]
[build-dependencies]
tonic-build = "0.11.0"