-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (45 loc) · 1.36 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
54
55
[package]
name = "emerald-api"
description = "Emerald API"
repository = "https://github.com/emeraldpay/emerald-api-rs"
version = "0.1.0-dev"
edition = "2021"
license = "Apache-2.0"
[dependencies]
tonic = { version = "0.12", features = ["codegen", "prost"], default-features = false }
prost = "^0.13"
tokio = { version = "1.38", features = ["macros", "rt-multi-thread"], optional = true }
tower = "0.5"
futures = "0.3.30"
bytes = "1.7.1"
http-body = "1.0"
tracing = "0.1"
chrono = "0.4"
[build-dependencies]
tonic-build = "0.12"
[dev-dependencies]
tokio-macros = "2.4"
tracing-subscriber = { version = "0.3" , features = ["env-filter", "fmt"]}
[features]
default = []
tonic = ["tonic/transport", "tonic/tls", "tonic/tls-native-roots"]
client = ["dep:tokio", "tonic", "client-auth"]
server = ["dep:tokio", "tonic"]
auth = []
client-auth = ["auth", "client"]
server-auth = ["auth", "server"]
blockchain = []
client-blockchain = ["blockchain", "client"]
server-blockchain = ["blockchain", "server"]
market = []
client-market = ["market", "client"]
server-market = ["market", "server"]
monitoring = []
client-monitoring = ["monitoring", "client"]
server-monitoring = ["monitoring", "server"]
transaction = []
client-transaction = ["transaction", "client"]
server-transaction = ["transaction", "server"]
token = []
client-token = ["token", "client"]
server-token = ["token", "server"]