-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (31 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
38 lines (31 loc) · 1.01 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
# Acropolis snapshot bootstrapper module
[package]
name = "acropolis_module_snapshot_bootstrapper"
version = "0.1.0"
edition = "2021"
authors = ["Josh Marchand <josh@sundae.fi>"]
description = "Snapshot bootstrapper Caryatid module for Acropolis"
license = "Apache-2.0"
[dependencies]
acropolis_common = { path = "../../common" }
acropolis_codec = { path = "../../codec" }
caryatid_sdk = { workspace = true }
anyhow = { workspace = true }
pallas-traverse = { workspace = true }
config = { workspace = true }
minicbor = { version = "0.25.1", features = ["std", "half", "derive"] }
tokio = { workspace = true }
tracing = { workspace = true }
serde = { workspace = true, features = ["rc"] }
serde_json = { workspace = true }
thiserror = "2.0.17"
async-compression = { version = "0.4.32", features = ["tokio", "gzip"] }
reqwest = { version = "0.12", features = ["stream"] }
futures-util = "0.3.31"
tokio-util = "0.7.17"
[dev-dependencies]
wiremock = "0.6.5"
flate2 = "1.1.5"
tempfile = "3.23.0"
[lib]
path = "src/bootstrapper.rs"