forked from txpipe/dolos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (50 loc) · 1.78 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
[package]
name = "dolos"
description = "A Cardano data-node built in Rust"
version = "0.7.0-alpha.4"
edition = "2021"
repository = "https://github.com/txpipe/dolos"
homepage = "https://github.com/txpipe/dolos"
documentation = "https://docs.rs/dolos"
license = "Apache-2.0"
readme = "README.md"
authors = ["Santiago Carmuega <[email protected]>"]
[dependencies]
pallas = { git = "https://github.com/txpipe/pallas.git", features = ["unstable"] }
# pallas = { version = "^0.23", features = ["unstable"] }
# pallas = { path = "../pallas/pallas", features = ["unstable"] }
gasket = { version = "^0.5", features = ["derive"] }
# gasket = { path = "../../construkts/gasket-rs/gasket", features = ["derive"] }
utxorpc-spec = { version = "0.3.0" }
hex = "0.4.3"
bech32 = "0.8.1"
clap = { version = "4.3.0", features = ["derive"] }
log = "0.4.18"
config = { version = "0.13.3", default-features = false, features = ["toml", "json"] }
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.107"
thiserror = "1.0.30"
lazy_static = "1.4.0"
rocksdb = { version = "0.22.0", default-features = false, features = ["multi-threaded-cf"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
bincode = "1.3.3"
miette = { version = "5.9.0", features = ["fancy"] }
tokio = { version = "1.28.2", features = ["rt", "rt-multi-thread"] }
async-trait = "0.1.68"
tonic = { version = "^0.9", features = ["tls"] }
tonic-web = "^0.9"
tonic-reflection = "^0.9"
bytes = "1.4.0"
futures-core = "0.3.28"
tokio-stream = { version = "0.1.14", features = ["sync"] }
futures-util = "0.3.28"
async-stream = "0.3.5"
serde_with = "3.4.0"
mithril-client = { version = "0.5.17", optional = true, features = ["fs"] }
protoc-wkt = "1.0.0"
[dev-dependencies]
tempfile = "3.3.0"
[features]
mithril = ["mithril-client"]
default = ["mithril"]