add serde_json; upgrade rustqlite

This commit is contained in:
Jude Nelson
2019-01-15 18:54:57 -05:00
parent 6940784abe
commit bc62c8800c

View File

@@ -1,10 +1,10 @@
[package]
name = "blockstack-core"
version = "0.0.1"
authors = ["Jude Nelson <judecn@gmail.com>"]
authors = ["Jude Nelson <jude@blockstack.com>"]
license = "GPLv3"
homepage = "https://github.com/jcnelson/blockstack-ng"
repository = "https://github.com/jcnelson/blockstack-ng"
homepage = "https://github.com/blockstack/blockstack-core"
repository = "https://github.com/blockstack/blockstack-core"
description = "Reference implementation of Blockstack Core"
keywords = [ "bitcoin", "crypto", "blockstack", "decentralized", "dapps", "blockchain" ]
readme = "README.md"
@@ -17,13 +17,17 @@ log = "0.4"
rand = "0.5"
serde = "1"
serde_derive = "1"
secp256k1 = "0.11.5"
serde_json = "1.0"
rust-crypto = "0.2"
sha2 = "0.8.0"
dirs = "1.0.4"
[dependencies.secp256k1]
version = "0.11.5"
features = ["serde"]
[dependencies.rusqlite]
version = "0.15.0"
version = "0.16.0"
# features = ["bundled"]
[dependencies.ed25519-dalek]