-
Notifications
You must be signed in to change notification settings - Fork 677
/
Cargo.toml
32 lines (28 loc) · 1.08 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
[package]
name = "pox-locking"
version = "2.4.0"
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 = "Contract call result handler for applying PoX lock operations"
keywords = [ "stacks", "stx", "bitcoin", "crypto", "blockstack", "decentralized", "dapps", "blockchain" ]
readme = "README.md"
resolver = "2"
edition = "2021"
rust-version = "1.61"
[lib]
name = "pox_locking"
path = "src/lib.rs"
[dependencies]
clarity = { path = "../clarity", default-features = false, optional = true }
stacks-common = { path = "../stacks-common", default-features = false, optional = true }
slog = { version = "2.5.2", features = [ "max_level_trace" ] }
[dev-dependencies]
mutants = "0.0.3"
[features]
default = ["stacks-common/default", "clarity/default"]
slog_json = ["stacks-common/slog_json", "clarity/slog_json"]
wasm = ["stacks-common/wasm", "clarity/wasm"]