-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 980 Bytes
/
Cargo.toml
File metadata and controls
36 lines (30 loc) · 980 Bytes
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
[package]
name = "summit-application"
version.workspace = true
edition.workspace = true
[dependencies]
summit-types.workspace = true
summit-syncer.workspace = true
summit-finalizer.workspace = true
anyhow.workspace = true
tracing.workspace = true
commonware-consensus.workspace = true
commonware-cryptography.workspace = true
commonware-runtime.workspace = true
commonware-macros.workspace = true
commonware-utils.workspace = true
futures.workspace = true
governor.workspace = true
rand.workspace = true
tokio-util.workspace = true
# For metrics - activate with `prom` feature
metrics = { version = "0.24.0", optional = true }
# Only used for tests, but it cannot be in dep-dependencies, because
# the test flag is only active in application for tests that are run inside of application.
# But e2e tests are in the node crate.
# commonware depends on it, so we have to build it anyway.
prometheus-client = "0.22.3"
[features]
prom = ["metrics"]
bench = []
permissioned = []