-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: MrCroxx <[email protected]>
- Loading branch information
Showing
7 changed files
with
32 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "foyer-bench" | ||
version = "0.3.2" | ||
version = "0.3.3" | ||
edition = "2021" | ||
authors = ["MrCroxx <[email protected]>"] | ||
description = "bench tool for foyer - the hybrid cache for Rust" | ||
|
@@ -17,7 +17,7 @@ clap = { workspace = true } | |
console-subscriber = { version = "0.4", optional = true } | ||
fastrace = { workspace = true, optional = true } | ||
fastrace-jaeger = { workspace = true, optional = true } | ||
foyer = { version = "0.11.2", path = "../foyer" } | ||
foyer = { version = "0.11.3", path = "../foyer" } | ||
futures = "0.3" | ||
hdrhistogram = "7" | ||
itertools = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "foyer-common" | ||
version = "0.9.2" | ||
version = "0.9.3" | ||
edition = "2021" | ||
authors = ["MrCroxx <[email protected]>"] | ||
description = "common components for foyer - the hybrid cache for Rust" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "foyer-intrusive" | ||
version = "0.9.2" | ||
version = "0.9.3" | ||
edition = "2021" | ||
authors = ["MrCroxx <[email protected]>"] | ||
description = "intrusive data structures for foyer - the hybrid cache for Rust" | ||
|
@@ -11,7 +11,7 @@ readme = "../README.md" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
foyer-common = { version = "0.9.2", path = "../foyer-common" } | ||
foyer-common = { version = "0.9.3", path = "../foyer-common" } | ||
itertools = { workspace = true } | ||
|
||
[features] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "foyer-memory" | ||
version = "0.7.2" | ||
version = "0.7.3" | ||
edition = "2021" | ||
authors = ["MrCroxx <[email protected]>"] | ||
description = "memory cache for foyer - the hybrid cache for Rust" | ||
|
@@ -15,8 +15,8 @@ ahash = "0.8" | |
bitflags = "2" | ||
cmsketch = "0.2.1" | ||
fastrace = { workspace = true } | ||
foyer-common = { version = "0.9.2", path = "../foyer-common" } | ||
foyer-intrusive = { version = "0.9.2", path = "../foyer-intrusive" } | ||
foyer-common = { version = "0.9.3", path = "../foyer-common" } | ||
foyer-intrusive = { version = "0.9.3", path = "../foyer-intrusive" } | ||
futures = "0.3" | ||
hashbrown = "0.14" | ||
itertools = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "foyer-storage" | ||
version = "0.10.2" | ||
version = "0.10.3" | ||
edition = "2021" | ||
authors = ["MrCroxx <[email protected]>"] | ||
description = "storage engine for foyer - the hybrid cache for Rust" | ||
|
@@ -24,8 +24,8 @@ bytes = "1" | |
clap = { workspace = true } | ||
either = "1" | ||
fastrace = { workspace = true } | ||
foyer-common = { version = "0.9.2", path = "../foyer-common" } | ||
foyer-memory = { version = "0.7.2", path = "../foyer-memory" } | ||
foyer-common = { version = "0.9.3", path = "../foyer-common" } | ||
foyer-memory = { version = "0.7.3", path = "../foyer-memory" } | ||
fs4 = "0.9.1" | ||
futures = "0.3" | ||
itertools = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "foyer" | ||
version = "0.11.2" | ||
version = "0.11.3" | ||
edition = "2021" | ||
authors = ["MrCroxx <[email protected]>"] | ||
description = "Hybrid cache for Rust" | ||
|
@@ -15,9 +15,9 @@ rust-version = "1.81.0" | |
ahash = "0.8" | ||
anyhow = "1" | ||
fastrace = { workspace = true } | ||
foyer-common = { version = "0.9.2", path = "../foyer-common" } | ||
foyer-memory = { version = "0.7.2", path = "../foyer-memory" } | ||
foyer-storage = { version = "0.10.2", path = "../foyer-storage" } | ||
foyer-common = { version = "0.9.3", path = "../foyer-common" } | ||
foyer-memory = { version = "0.7.3", path = "../foyer-memory" } | ||
foyer-storage = { version = "0.10.3", path = "../foyer-storage" } | ||
futures = "0.3" | ||
pin-project = "1" | ||
tokio = { workspace = true } | ||
|