Ready to publish

This commit is contained in:
David Palm 2018-10-09 15:26:15 +02:00
parent dc08611450
commit 4dbe6332c5
8 changed files with 18 additions and 18 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "hashdb"
version = "0.3.0-beta.0"
version = "0.3.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "trait for hash-keyed databases."
license = "GPL-3.0"

View File

@ -1,6 +1,6 @@
[package]
name = "memorydb"
version = "0.3.0-beta.0"
version = "0.3.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "in-memory implementation of hashdb"
repository = "https://github.com/paritytech/parity-common"
@ -8,9 +8,9 @@ license = "GPL-3.0"
[dependencies]
heapsize = "0.4"
hashdb = { version = "0.3.0-beta", path = "../hashdb" }
hashdb = { version = "0.3.0", path = "../hashdb" }
plain_hasher = { version = "0.2", path = "../plain_hasher", default-features = false }
rlp = { version = "0.3.0-beta", path = "../rlp", default-features = false }
rlp = { version = "0.3.0", path = "../rlp", default-features = false }
[dev-dependencies]
tiny-keccak = "1.4.2"

View File

@ -1,6 +1,6 @@
[package]
name = "patricia-trie"
version = "0.3.0-beta.0"
version = "0.3.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Merkle-Patricia Trie generic over key hasher and node encoding"
repository = "https://github.com/paritytech/parity-common"
@ -10,17 +10,17 @@ license = "GPL-3.0"
elastic-array = "0.10"
log = "0.3"
rand = "0.4"
hashdb = { version = "0.3.0-beta", path = "../hashdb" }
hashdb = { version = "0.3.0", path = "../hashdb" }
parity-bytes = { version = "0.1", path = "../parity-bytes" }
[dev-dependencies]
env_logger = "0.5"
ethereum-types = "0.4"
keccak-hash = { version = "0.1", path = "../keccak-hash" }
memorydb = { version = "0.3.0-beta", path = "../memorydb", default-features = false }
rlp = { version = "0.3.0-beta", path = "../rlp", default-features = false }
memorydb = { version = "0.3.0", path = "../memorydb", default-features = false }
rlp = { version = "0.3.0", path = "../rlp", default-features = false }
trie-standardmap = { version = "0.1", path = "../trie-standardmap", default-features = false }
triehash = { version = "0.3.0-beta", path = "../triehash", default-features = false }
triehash = { version = "0.3.0", path = "../triehash", default-features = false }
parity-bytes = { version = "0.1.0", path = "../parity-bytes" }
patricia-trie-ethereum = { version = "0.1", path = "../test-support/patricia-trie-ethereum" }
keccak-hasher = { version = "0.1", path = "../test-support/keccak-hasher" }

View File

@ -1,6 +1,6 @@
[package]
name = "rlp"
version = "0.3.0-beta.1"
version = "0.3.0"
description = "Recursive-length prefix encoding, decoding, and compression"
repository = "https://github.com/paritytech/parity-common"
license = "MIT/Apache-2.0"

View File

@ -9,5 +9,5 @@ license = "GPL-3.0"
[dependencies]
ethereum-types = "0.4"
tiny-keccak = "1.4.2"
hashdb = { version = "0.3.0-beta", path = "../../hashdb" }
hashdb = { version = "0.3.0", path = "../../hashdb" }
plain_hasher = { path = "../../plain_hasher" }

View File

@ -6,10 +6,10 @@ description = "Merkle-Patricia Trie (Ethereum Style)"
license = "GPL-3.0"
[dependencies]
patricia-trie = { version = "0.3.0-beta", path = "../../patricia_trie" }
patricia-trie = { version = "0.3.0", path = "../../patricia_trie" }
keccak-hasher = { version = "0.1", path = "../keccak-hasher" }
hashdb = { version = "0.3.0-beta", path = "../../hashdb" }
rlp = { version = "0.3.0-beta", path = "../../rlp" }
hashdb = { version = "0.3.0", path = "../../hashdb" }
rlp = { version = "0.3.0", path = "../../rlp" }
parity-bytes = { version = "0.1", path = "../../parity-bytes" }
ethereum-types = "0.4"

View File

@ -10,4 +10,4 @@ license = "GPL-3.0"
ethereum-types = "0.4"
keccak-hash = { version = "0.1", path = "../keccak-hash" }
parity-bytes = { version = "0.1", path = "../parity-bytes" }
rlp = { version = "0.3.0-beta", path = "../rlp" }
rlp = { version = "0.3.0", path = "../rlp" }

View File

@ -1,14 +1,14 @@
[package]
name = "triehash"
version = "0.3.0-beta.0"
version = "0.3.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "In-memory patricia trie operations"
repository = "https://github.com/paritytech/parity-common"
license = "GPL-3.0"
[dependencies]
hashdb = { version = "0.3.0-beta", path = "../hashdb", default-features = false }
rlp = { version = "0.3.0-beta", path = "../rlp", default-features = false }
hashdb = { version = "0.3.0", path = "../hashdb", default-features = false }
rlp = { version = "0.3.0", path = "../rlp", default-features = false }
[dev-dependencies]
trie-standardmap = { version = "0.1", path = "../trie-standardmap" }