Skip to content

Commit

Permalink
firewood-v0.0.2 (#23)
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Batschelet <[email protected]>
  • Loading branch information
hexfusion authored Apr 21, 2023
1 parent 772fc03 commit 0ce7204
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 19 deletions.
4 changes: 2 additions & 2 deletions firewood-growth-ring/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "firewood-growth-ring"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
keywords = ["wal", "db", "futures"]
license = "MIT"
Expand All @@ -9,7 +9,7 @@ description = "Simple and modular write-ahead-logging implementation."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
firewood-libaio= { version = "0.0.1", path = "../firewood-libaio", package = "firewood-libaio" }
firewood-libaio= { version = "0.0.2", path = "../firewood-libaio", package = "firewood-libaio" }
crc = "3.0.0"
lru = "0.10.0"
scan_fmt = "0.2.6"
Expand Down
2 changes: 1 addition & 1 deletion firewood-libaio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "firewood-libaio"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
keywords = ["libaio", "aio", "async", "futures"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion firewood-shale/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "firewood-shale"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
description = "Useful abstraction and light-weight implemenation for a key-value store."
license = "MIT"
Expand Down
28 changes: 15 additions & 13 deletions firewood/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "firewood"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
authors = [
"Ted Yin (@Determinant) <[email protected]>",
Expand All @@ -13,27 +13,29 @@ authors = [
description = "Firewood is an embedded key-value store, optimized to store blockchain state."
license-file = "../LICENSE.md"
homepage = "https://avalabs.org"
readme = "../README.md"

[dependencies]
aquamarine = "0.3.1"
firewood-growth-ring = { version = "0.0.1", path = "../firewood-growth-ring" }
firewood-libaio = {version = "0.0.1", path = "../firewood-libaio" }
firewood-shale = { version = "0.0.1", path = "../firewood-shale" }
async-trait = "0.1.57"
bytemuck = { version = "1.13.1", features = ["derive"] }
enum-as-inner = "0.5.1"
parking_lot = "0.12.1"
rlp = "0.5.2"
sha3 = "0.10.2"
once_cell = "1.13.1"
firewood-growth-ring = { version = "0.0.2", path = "../firewood-growth-ring" }
firewood-libaio = {version = "0.0.2", path = "../firewood-libaio" }
firewood-shale = { version = "0.0.2", path = "../firewood-shale" }
futures = "0.3.24"
hex = "0.4.3"
lru = "0.10.0"
nix = "0.26.1"
typed-builder = "0.14.0"
tokio = { version = "1.21.1", features = ["rt", "sync", "macros"] }
futures = "0.3.24"
once_cell = "1.13.1"
parking_lot = "0.12.1"
primitive-types = { version = "0.12.0", features = ["impl-rlp"] }
rlp = "0.5.2"
serde = { version = "1.0", features = ["derive"] }
sha3 = "0.10.2"
thiserror = "1.0.38"
async-trait = "0.1.57"
bytemuck = { version = "1.13.1", features = ["derive"] }
tokio = { version = "1.21.1", features = ["rt", "sync", "macros"] }
typed-builder = "0.14.0"

[dev-dependencies]
criterion = "0.4.0"
Expand Down
4 changes: 2 additions & 2 deletions fwdctl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "fwdctl"
version = "0.0.1"
version = "0.0.2"
edition = "2021"

[dependencies]
firewood = { version = "0.0.1", path = "../firewood" }
firewood = { version = "0.0.2", path = "../firewood" }
clap = { version = "4.0.29", features = ["cargo", "derive"] }
anyhow = "1.0.66"
env_logger = "0.10.0"
Expand Down

0 comments on commit 0ce7204

Please sign in to comment.