forked from hyperledger-labs/weaver-dlt-interoperability
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (34 loc) · 977 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
41
[package]
name = "relay"
version = "1.6.2"
authors = ["Antony Targett <[email protected]>", "Nick Waywood <[email protected]>", "Sandeep Nishad <[email protected]"]
edition = "2018"
[[bin]]
name = "server"
path = "src/main.rs"
[[bin]]
name = "client"
path = "src/client.rs"
[[bin]]
name = "client-tls"
path = "src/client_tls.rs"
[[bin]]
name = "dummy-driver"
path = "driver/driver.rs"
[dependencies]
tonic = { version="0.8.3", features = ["tls"] }
tokio = { version = "1.27", 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.159", 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.95"
# weaver_protos_rs = { path = "./protos-rs" }
weaver_protos_rs = "1.6.2"
[build-dependencies]
tonic-build = "0.8.4"