-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (26 loc) · 840 Bytes
/
Cargo.toml
File metadata and controls
32 lines (26 loc) · 840 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
# Acropolis genesis bootstrapper module
[package]
name = "acropolis_module_genesis_bootstrapper"
version = "0.1.0"
edition = "2021"
authors = ["Paul Clark <[email protected]>"]
description = "Genesis bootstrapper Caryatid module for Acropolis"
license = "Apache-2.0"
build = "build.rs"
[dependencies]
acropolis_common = { path = "../../common" }
caryatid_sdk = { workspace = true }
anyhow = { workspace = true }
config = { workspace = true }
pallas = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
blake2 = "0.10.6"
tracing = { workspace = true }
[build-dependencies]
anyhow = { workspace = true }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde_json = { workspace = true }
tokio = { workspace = true }
[lib]
path = "src/genesis_bootstrapper.rs"