Skip to content

Commit

Permalink
chore: use fuzzy verion for internal crate dep
Browse files Browse the repository at this point in the history
Signed-off-by: MrCroxx <mrcroxx@outlook.com>
  • Loading branch information
MrCroxx committed Apr 11, 2024
1 parent 449c4d2 commit 8952dba
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions foyer-experimental-bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ anyhow = "1"
bytesize = "1"
clap = { version = "4", features = ["derive"] }
console-subscriber = { version = "0.2", optional = true }
foyer-common = { version = "0.5", path = "../foyer-common" }
foyer-common = { version = "*", path = "../foyer-common" }
foyer-experimental = { version = "*", path = "../foyer-experimental" }
foyer-intrusive = { version = "0.4", path = "../foyer-intrusive" }
foyer-storage = { version = "0.6", path = "../foyer-storage" }
foyer-intrusive = { version = "*", path = "../foyer-intrusive" }
foyer-storage = { version = "*", path = "../foyer-storage" }
foyer-workspace-hack = { version = "0.4", path = "../foyer-workspace-hack" }
futures = "0.3"
hdrhistogram = "7"
Expand Down
2 changes: 1 addition & 1 deletion foyer-experimental/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ normal = ["foyer-workspace-hack"]
anyhow = "1.0"
bytes = "1"
crossbeam = { version = "0.8", features = ["std", "crossbeam-channel"] }
foyer-common = { version = "0.5", path = "../foyer-common" }
foyer-common = { version = "*", path = "../foyer-common" }
foyer-workspace-hack = { version = "0.4", path = "../foyer-workspace-hack" }
lazy_static = "1"
parking_lot = { version = "0.12", features = ["arc_lock"] }
Expand Down
2 changes: 1 addition & 1 deletion foyer-intrusive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ normal = ["foyer-workspace-hack"]
[dependencies]
bytes = "1"
cmsketch = "0.1"
foyer-common = { version = "0.5", path = "../foyer-common" }
foyer-common = { version = "*", path = "../foyer-common" }
foyer-workspace-hack = { version = "0.4", path = "../foyer-workspace-hack" }
itertools = "0.12"
memoffset = "0.9"
Expand Down
2 changes: 1 addition & 1 deletion foyer-memory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ahash = "0.8"
bitflags = "2"
cmsketch = "0.2"
crossbeam = "0.8"
foyer-intrusive = { version = "0.4", path = "../foyer-intrusive" }
foyer-intrusive = { version = "*", path = "../foyer-intrusive" }
foyer-workspace-hack = { version = "0.4", path = "../foyer-workspace-hack" }
futures = "0.3"
hashbrown = "0.14"
Expand Down
6 changes: 3 additions & 3 deletions foyer-storage-bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ anyhow = "1"
bytesize = "1"
clap = { version = "4", features = ["derive"] }
console-subscriber = { version = "0.2", optional = true }
foyer-common = { version = "0.5", path = "../foyer-common" }
foyer-intrusive = { version = "0.4", path = "../foyer-intrusive" }
foyer-storage = { version = "0.6", path = "../foyer-storage" }
foyer-common = { version = "*", path = "../foyer-common" }
foyer-intrusive = { version = "*", path = "../foyer-intrusive" }
foyer-storage = { version = "*", path = "../foyer-storage" }
foyer-workspace-hack = { version = "0.4", path = "../foyer-workspace-hack" }
futures = "0.3"
hdrhistogram = "7"
Expand Down
4 changes: 2 additions & 2 deletions foyer-storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ anyhow = "1.0"
bitflags = "2.3.1"
bitmaps = "3.2"
bytes = "1"
foyer-common = { version = "0.5", path = "../foyer-common" }
foyer-intrusive = { version = "0.4", path = "../foyer-intrusive" }
foyer-common = { version = "*", path = "../foyer-common" }
foyer-intrusive = { version = "*", path = "../foyer-intrusive" }
foyer-workspace-hack = { version = "0.4", path = "../foyer-workspace-hack" }
futures = "0.3"
itertools = "0.12"
Expand Down
8 changes: 4 additions & 4 deletions foyer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ rust-version = "1.77.2"
normal = ["foyer-workspace-hack"]

[dependencies]
foyer-common = { version = "0.5", path = "../foyer-common" }
foyer-intrusive = { version = "0.4", path = "../foyer-intrusive" }
foyer-memory = { version = "0.2", path = "../foyer-memory" }
foyer-storage = { version = "0.6", path = "../foyer-storage" }
foyer-common = { version = "*", path = "../foyer-common" }
foyer-intrusive = { version = "*", path = "../foyer-intrusive" }
foyer-memory = { version = "*", path = "../foyer-memory" }
foyer-storage = { version = "*", path = "../foyer-storage" }
foyer-workspace-hack = { version = "0.4", path = "../foyer-workspace-hack" }

0 comments on commit 8952dba

Please sign in to comment.