[package] name = "libstackerdb" version = "0.0.1" authors = [ "Jude Nelson " ] 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" }