-
Notifications
You must be signed in to change notification settings - Fork 668
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3793 from stacks-network/refactor/pox-lock-member
Refactor: PoX lock handling into separate workspace member
- Loading branch information
Showing
10 changed files
with
1,758 additions
and
1,536 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
[package] | ||
name = "pox-locking" | ||
version = "2.4.0" | ||
authors = [ "Jude Nelson <[email protected]>", | ||
"Aaron Blankstein <[email protected]>", | ||
"Ludo Galabru <[email protected]>" ] | ||
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 = { package = "clarity", path = "../clarity/." } | ||
stacks_common = { package = "stacks-common", path = "../stacks-common/." } | ||
slog = { version = "2.5.2", features = [ "max_level_trace" ] } | ||
|
||
[features] | ||
slog_json = ["stacks_common/slog_json", "clarity/slog_json"] |
Oops, something went wrong.