-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
68 lines (63 loc) · 2.42 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "blockfrost-platform"
version = "0.0.1"
license = "Apache-2.0"
edition = "2021"
build = "build.rs"
[dependencies]
axum = "0.8.1"
tokio = { version = "1.43.0", features = ["rt", "rt-multi-thread", "signal"] }
crossbeam = "0.8"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "fmt"] }
serde = { version = "1.0.218", features = ["derive"] }
tower-http = { version = "0.6.1", features = ["normalize-path"] }
tower-layer = "0.3.2"
tower = "0.5.1"
serde_json = "1.0.135"
clap = { version = "4.5.26", features = ["derive"] }
toml = "0.8.19"
thiserror = "2.0.11"
sentry = "0.36.0"
blake2 = "0.10.6"
num_cpus = "1"
pallas = { git = "https://github.com/blockfrost/pallas.git", rev = "62c94e25e2ea3950e3d7f35b7d0663eeacf56793" }
pallas-network = { git = "https://github.com/blockfrost/pallas.git", rev = "62c94e25e2ea3950e3d7f35b7d0663eeacf56793" }
pallas-crypto = { git = "https://github.com/blockfrost/pallas.git", rev = "62c94e25e2ea3950e3d7f35b7d0663eeacf56793" }
pallas-traverse = { git = "https://github.com/blockfrost/pallas.git", rev = "62c94e25e2ea3950e3d7f35b7d0663eeacf56793" }
pallas-codec = { git = "https://github.com/blockfrost/pallas.git", rev = "62c94e25e2ea3950e3d7f35b7d0663eeacf56793" }
pallas-addresses = { git = "https://github.com/blockfrost/pallas.git", rev = "62c94e25e2ea3950e3d7f35b7d0663eeacf56793" }
pallas-primitives = { git = "https://github.com/blockfrost/pallas.git", rev = "62c94e25e2ea3950e3d7f35b7d0663eeacf56793" }
pallas-hardano = { git = "https://github.com/blockfrost/pallas.git", rev = "62c94e25e2ea3950e3d7f35b7d0663eeacf56793" }
reqwest = "0.12.12"
hex = "0.4.3"
cbor = "0.4.1"
metrics = { version = "0.24.1", default-features = false }
metrics-exporter-prometheus = { version = "0.16.1", default-features = false }
chrono = "0.4"
deadpool = "0.12.1"
serde_with = "3.12.0"
sysinfo = "0.33.1"
dotenvy = "0.15.7"
uuid = { version = "1.10.0", features = ["v4"] }
twelf = { version = "0.15.0", features = ["clap", "toml"] }
dirs = "5.0"
inquire = "0.7.5"
anyhow = "1.0.95"
[dev-dependencies]
tracing-test = "0.2.5"
rstest = "0.24.0"
pretty_assertions = "1.4.1"
proptest = "1.6"
cardano-serialization-lib = "12.1.1"
bip39 = "2.1.0"
blockfrost = "1.0.5"
blockfrost-openapi = "0.1.69"
[target.'cfg(target_env = "musl")'.dependencies]
jemalloc = "0.3"
[build-dependencies]
reqwest = { version = "0.12.7", features = ["blocking"] }
dirs = "5.0"
bzip2 = "0.4.3"
tar = "0.4.38"
zip = "0.6.6"