-
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 #3848 from stacks-network/feat/stackerdb-rpc
Feat/stackerdb rpc
- Loading branch information
Showing
56 changed files
with
4,703 additions
and
1,856 deletions.
There are no files selected for viewing
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
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
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
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
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,33 @@ | ||
[package] | ||
name = "libstackerdb" | ||
version = "0.0.1" | ||
authors = [ "Jude Nelson <[email protected]>" ] | ||
license = "GPLv3" | ||
homepage = "https://github.com/blockstack/stacks-blockchain" | ||
repository = "https://github.com/blockstack/stacks-blockchain" | ||
description = "Client library for the StackerDB subsystem" | ||
keywords = [ "stacks", "stx", "bitcoin", "crypto", "blockstack", "decentralized", "dapps", "blockchain" ] | ||
readme = "README.md" | ||
resolver = "2" | ||
edition = "2021" | ||
|
||
[lib] | ||
name = "libstackerdb" | ||
path = "./src/libstackerdb.rs" | ||
|
||
[dependencies] | ||
serde = "1" | ||
serde_derive = "1" | ||
serde_stacker = "0.1" | ||
stacks-common = { path = "../stacks-common" } | ||
clarity = { path = "../clarity" } | ||
|
||
[dependencies.secp256k1] | ||
version = "0.24.3" | ||
features = ["serde", "recovery"] | ||
|
||
[target.'cfg(all(any(target_arch = "x86_64", target_arch = "x86", target_arch = "aarch64"), not(target_env = "msvc")))'.dependencies] | ||
sha2 = { version = "0.10", features = ["asm"] } | ||
|
||
[target.'cfg(any(not(any(target_arch = "x86_64", target_arch = "x86", target_arch = "aarch64")), target_env = "msvc"))'.dependencies] | ||
sha2 = { version = "0.10" } |
Oops, something went wrong.