forked from hyperledger-cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (46 loc) · 1.21 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
[package]
name = "relay"
version = "2.0.0-rc.1"
authors = ["Antony Targett <[email protected]>", "Nick Waywood <[email protected]>", "Sandeep Nishad <[email protected]"]
edition = "2021"
[[bin]]
name = "server"
path = "src/main.rs"
[[bin]]
name = "client"
path = "src/client.rs"
[[bin]]
name = "satp_client"
path = "src/sample_satp_client.rs"
[[bin]]
name = "client-tls"
path = "src/client_tls.rs"
[[bin]]
name = "dummy-driver"
path = "driver/driver.rs"
[dependencies]
tonic = { version="0.10.2", features = ["tls"] }
tokio = { version = "1.34.0", features = ["macros", "fs", "rt", "rt-multi-thread", "sync"] }
sled = "0.34.7"
uuid = { version = "1.3.0", features = ["v4"] }
bincode = "1.3.3"
serde = {version="1.0.193", features = ["derive"]}
config = "0.11.0"
listenfd = "1.0.1"
futures = { version = "0.3.27" }
base64 = "0.20.0"
reqwest = { version = "0.11.16", features = ["json"] }
serde_json = "1.0.108"
# cacti_weaver_protos_rs = { path = "./protos-rs" }
cacti_weaver_protos_rs = "2.0.0-rc.1"
colored = {version="2.0.4"}
rusqlite = "0.29.0"
chrono = "0.4"
dotenv = "0.15"
log = "0.4.20"
r2d2 = "0.8.10"
r2d2_sqlite = "0.22.0"
lazy_static = "1.4"
env_logger = "0.10.0"
[build-dependencies]
tonic-build = "0.10.2"