-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (46 loc) · 1.38 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
[package]
name = "rust-bitxhub-client"
version = "0.1.0"
edition = "2021"
# [lib]
# name = "client"
# path = "src/client.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-stream = "0.3"
futures = {version = "0.3", default-features = false, features = ["alloc"]}
prost = "0.9"
tokio = {version = "1.0", features = ["rt-multi-thread", "time", "fs", "macros", "net"]}
tokio-stream = {version = "0.1", features = ["net"]}
tonic = {version = "0.6.2", features = ["tls", "compression"]}
tower = {version = "0.4"}
# Required for routeguide
rand = "0.8"
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
# Tracing
tracing = "0.1.16"
tracing-attributes = "0.1"
tracing-futures = "0.2"
tracing-subscriber = {version = "0.3", features = ["tracing-log"]}
# Required for wellknown types
prost-types = "0.9"
# Hyper example
http = "0.2"
http-body = "0.4.2"
hyper = {version = "0.14", features = ["full"]}
pin-project = "1.0"
warp = "0.3"
# Health example
# Reflection example
listenfd = "0.3"
# grpc-web example
bytes = "1"
# time
chrono = "0.4"
# hex
hex = "0.3"
web3 = { version = "0.18.0", features = ["signing"] }
secp256k1 = {version="0.21.3", features = ["rand", "rand-std", "serde", "bitcoin_hashes", "recovery", "global-context" ]}
[build-dependencies]
tonic-build = {version="0.6.2", features = ["prost", "compression"]}