Skip to content

Commit 0ce7204

Browse files
authored
firewood-v0.0.2 (#23)
Signed-off-by: Sam Batschelet <[email protected]>
1 parent 772fc03 commit 0ce7204

File tree

5 files changed

+21
-19
lines changed

5 files changed

+21
-19
lines changed

firewood-growth-ring/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "firewood-growth-ring"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
edition = "2021"
55
keywords = ["wal", "db", "futures"]
66
license = "MIT"
@@ -9,7 +9,7 @@ description = "Simple and modular write-ahead-logging implementation."
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
firewood-libaio= { version = "0.0.1", path = "../firewood-libaio", package = "firewood-libaio" }
12+
firewood-libaio= { version = "0.0.2", path = "../firewood-libaio", package = "firewood-libaio" }
1313
crc = "3.0.0"
1414
lru = "0.10.0"
1515
scan_fmt = "0.2.6"

firewood-libaio/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "firewood-libaio"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
edition = "2021"
55
keywords = ["libaio", "aio", "async", "futures"]
66
license = "MIT"

firewood-shale/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "firewood-shale"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
edition = "2021"
55
description = "Useful abstraction and light-weight implemenation for a key-value store."
66
license = "MIT"

firewood/Cargo.toml

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "firewood"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
edition = "2021"
55
authors = [
66
"Ted Yin (@Determinant) <[email protected]>",
@@ -13,27 +13,29 @@ authors = [
1313
description = "Firewood is an embedded key-value store, optimized to store blockchain state."
1414
license-file = "../LICENSE.md"
1515
homepage = "https://avalabs.org"
16+
readme = "../README.md"
17+
1618
[dependencies]
1719
aquamarine = "0.3.1"
18-
firewood-growth-ring = { version = "0.0.1", path = "../firewood-growth-ring" }
19-
firewood-libaio = {version = "0.0.1", path = "../firewood-libaio" }
20-
firewood-shale = { version = "0.0.1", path = "../firewood-shale" }
20+
async-trait = "0.1.57"
21+
bytemuck = { version = "1.13.1", features = ["derive"] }
2122
enum-as-inner = "0.5.1"
22-
parking_lot = "0.12.1"
23-
rlp = "0.5.2"
24-
sha3 = "0.10.2"
25-
once_cell = "1.13.1"
23+
firewood-growth-ring = { version = "0.0.2", path = "../firewood-growth-ring" }
24+
firewood-libaio = {version = "0.0.2", path = "../firewood-libaio" }
25+
firewood-shale = { version = "0.0.2", path = "../firewood-shale" }
26+
futures = "0.3.24"
2627
hex = "0.4.3"
2728
lru = "0.10.0"
2829
nix = "0.26.1"
29-
typed-builder = "0.14.0"
30-
tokio = { version = "1.21.1", features = ["rt", "sync", "macros"] }
31-
futures = "0.3.24"
30+
once_cell = "1.13.1"
31+
parking_lot = "0.12.1"
3232
primitive-types = { version = "0.12.0", features = ["impl-rlp"] }
33+
rlp = "0.5.2"
3334
serde = { version = "1.0", features = ["derive"] }
35+
sha3 = "0.10.2"
3436
thiserror = "1.0.38"
35-
async-trait = "0.1.57"
36-
bytemuck = { version = "1.13.1", features = ["derive"] }
37+
tokio = { version = "1.21.1", features = ["rt", "sync", "macros"] }
38+
typed-builder = "0.14.0"
3739

3840
[dev-dependencies]
3941
criterion = "0.4.0"

fwdctl/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "fwdctl"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
edition = "2021"
55

66
[dependencies]
7-
firewood = { version = "0.0.1", path = "../firewood" }
7+
firewood = { version = "0.0.2", path = "../firewood" }
88
clap = { version = "4.0.29", features = ["cargo", "derive"] }
99
anyhow = "1.0.66"
1010
env_logger = "0.10.0"

0 commit comments

Comments
 (0)