forked from input-output-hk/mithril
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
75 lines (71 loc) · 2.4 KB
/
Cargo.toml
File metadata and controls
75 lines (71 loc) · 2.4 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[workspace]
resolver = "2"
members = [
"demo/protocol-demo",
"examples/client-cardano-database",
"examples/client-cardano-database-v2",
"examples/client-cardano-stake-distribution",
"examples/client-cardano-transaction",
"examples/client-mithril-stake-distribution",
"internal/cardano-node/mithril-cardano-node-chain",
"internal/cardano-node/mithril-cardano-node-internal-database",
"internal/mithril-aggregator-client",
"internal/mithril-build-script",
"internal/mithril-cli-helper",
"internal/mithril-dmq",
"internal/mithril-doc",
"internal/mithril-doc-derive",
"internal/mithril-era",
"internal/mithril-metric",
"internal/mithril-persistence",
"internal/mithril-protocol-config",
"internal/mithril-resource-pool",
"internal/mithril-ticker",
"internal/signed-entity/mithril-signed-entity-lock",
"internal/signed-entity/mithril-signed-entity-preloader",
"internal/tests/mithril-api-spec",
"internal/tests/mithril-test-http-server",
"mithril-aggregator",
"mithril-client",
"mithril-client-cli",
"mithril-client-wasm",
"mithril-common",
"mithril-relay",
"mithril-signer",
"mithril-stm",
"mithril-test-lab/mithril-aggregator-fake",
"mithril-test-lab/mithril-end-to-end",
]
[workspace.package]
authors = ["dev@iohk.io", "mithril-dev@iohk.io"]
documentation = "https://mithril.network/doc"
edition = "2024"
homepage = "https://mithril.network"
license = "Apache-2.0"
repository = "https://github.com/input-output-hk/mithril/"
[workspace.dependencies]
anyhow = "1.0.99"
async-recursion = "1.1.1"
async-trait = "0.1.89"
chrono = { version = "0.4.41", features = ["serde"] }
clap = { version = "4.5.47", features = ["derive", "env"] }
config = "0.15.15"
digest = { version = "0.10.7", features = ["alloc"] }
hex = "0.4.3"
mockall = "0.13.1"
rand_chacha = "0.3.1"
rand_core = { version = "0.6.4", features = ["std"] }
rayon = "1.11.0"
reqwest = { version = "0.12.23", default-features = false, features = ["json"] }
semver = "1.0.26"
serde = { version = "1.0.219", features = ["derive", "rc"] }
serde_json = "1.0.143"
slog = "2.7.0"
slog-async = "2.8.0"
slog-bunyan = "2.5.0"
slog-term = "2.9.2"
strum = { version = "0.27.2", features = ["derive"] }
thiserror = "2.0.16"
tokio = { version = "1.47.1", features = ["rt", "sync", "time"] }
tracing = "0.1.41"
warp = { version = "0.4.2", features = ["server", "websocket"] }