mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-04-28 19:55:20 +08:00
33 lines
773 B
TOML
33 lines
773 B
TOML
[package]
|
|
name = "stacks-node"
|
|
version = "0.1.0"
|
|
authors = ["Ludo Galabru <ludovic@blockstack.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
lazy_static = "1.4.0"
|
|
pico-args = "0.3.1"
|
|
rand = "=0.7.2"
|
|
secp256k1 = { version = "0.11.5" }
|
|
serde = "1"
|
|
serde_derive = "1"
|
|
serde_json = { version = "1.0", features = ["arbitrary_precision", "raw_value"] }
|
|
stacks = { package = "blockstack-core", path = "../../." }
|
|
toml = "0.5.6"
|
|
async-h1 = "=1.0"
|
|
async-std = { version = "<1.6", features = ["attributes"] }
|
|
http-types = "1.0"
|
|
base64 = "0.12.0"
|
|
|
|
[dev-dependencies]
|
|
warp = "0.2"
|
|
tokio = "0.2.21"
|
|
reqwest = { version = "0.10", features = ["blocking", "json", "rustls"] }
|
|
|
|
[[bin]]
|
|
name = "stacks-node"
|
|
path = "src/main.rs"
|
|
|
|
[features]
|
|
monitoring_prom = ["stacks/monitoring_prom"]
|
|
default = [] |