mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-01-12 22:43:42 +08:00
62 lines
1.8 KiB
TOML
62 lines
1.8 KiB
TOML
[package]
|
|
name = "clarity"
|
|
version = "0.0.1"
|
|
authors = [ "Jude Nelson <jude@stacks.org>",
|
|
"Aaron Blankstein <aaron@blockstack.com>",
|
|
"Ludo Galabru <ludovic@blockstack.com>" ]
|
|
license = "GPLv3"
|
|
homepage = "https://github.com/blockstack/stacks-blockchain"
|
|
repository = "https://github.com/blockstack/stacks-blockchain"
|
|
description = "Reference implementation of the Stacks 2.0 Blockchain"
|
|
keywords = [ "stacks", "stx", "bitcoin", "crypto", "blockstack", "decentralized", "dapps", "blockchain" ]
|
|
readme = "README.md"
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
[lib]
|
|
name = "clarity"
|
|
path = "./src/libclarity.rs"
|
|
|
|
[dependencies]
|
|
rand = { workspace = true }
|
|
rand_chacha = { workspace = true }
|
|
serde = "1"
|
|
serde_derive = "1"
|
|
serde_stacker = "0.1"
|
|
regex = "1"
|
|
lazy_static = "1.4.0"
|
|
integer-sqrt = "0.1.3"
|
|
slog = { version = "2.5.2", features = [ "max_level_trace" ] }
|
|
stacks_common = { package = "stacks-common", path = "../stacks-common", optional = true, default-features = false }
|
|
rstest = "0.17.0"
|
|
rstest_reuse = "0.5.0"
|
|
hashbrown = { workspace = true }
|
|
mutants = "0.0.3"
|
|
|
|
[dependencies.serde_json]
|
|
version = "1.0"
|
|
features = ["arbitrary_precision", "unbounded_depth"]
|
|
|
|
[dependencies.rusqlite]
|
|
version = "=0.24.2"
|
|
optional = true
|
|
features = ["blob", "serde_json", "i128_blob", "bundled", "trace"]
|
|
|
|
[dependencies.time]
|
|
version = "0.2.23"
|
|
features = ["std"]
|
|
|
|
[dev-dependencies]
|
|
assert-json-diff = "1.0.0"
|
|
# a nightly rustc regression (35dbef235 2021-03-02) prevents criterion from compiling
|
|
# but it isn't necessary for tests: only benchmarks. therefore, commenting out for now.
|
|
# criterion = "0.3"
|
|
|
|
[features]
|
|
default = ["canonical"]
|
|
canonical = ["rusqlite", "stacks_common/canonical"]
|
|
developer-mode = ["stacks_common/developer-mode"]
|
|
slog_json = ["stacks_common/slog_json"]
|
|
testing = ["canonical"]
|
|
devtools = []
|