forked from hyperledger-iroha/iroha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (38 loc) · 1.3 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
[package]
name = "iroha_telemetry"
edition.workspace = true
version.workspace = true
authors.workspace = true
license.workspace = true
[lints]
workspace = true
[features]
# Support developer-specific telemetry.
# Should not be enabled on production builds.
dev-telemetry = []
# Export Prometheus metrics. See https://prometheus.io/.
metric-instrumentation = []
[dependencies]
iroha_config = { workspace = true }
iroha_logger = { workspace = true }
iroha_futures = { workspace = true, features = ["telemetry"] }
iroha_telemetry_derive = { workspace = true }
async-trait = { workspace = true }
chrono = "0.4.38"
eyre = { workspace = true }
futures = { workspace = true, features = ["std", "async-await"] }
serde_json = { workspace = true }
streaming-stats = "0.2.3"
serde = { workspace = true, features = ["derive"] }
tokio = { workspace = true, features = ["rt", "rt-multi-thread", "macros"] }
tokio-stream = { workspace = true, features = ["fs", "sync"] }
tokio-tungstenite = { workspace = true }
url = { workspace = true, features = ["serde"] }
prometheus = { workspace = true }
parity-scale-codec = { workspace = true }
[build-dependencies]
eyre = { workspace = true }
vergen = { workspace = true, features = ["cargo", "git", "gitoxide"] }
[dev-dependencies]
expect-test = { workspace = true }
hex = { workspace = true }