Skip to content

Commit

Permalink
Fix different wal crate versions (qdrant#4064)
Browse files Browse the repository at this point in the history
  • Loading branch information
agourlay authored and timvisee committed Apr 22, 2024
1 parent c7c3977 commit e1c21b1
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 51 deletions.
64 changes: 16 additions & 48 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ clap = { version = "4.5.4", features = ["derive"] }
serde_cbor = { workspace = true }
uuid = { workspace = true }
sys-info = "0.9.1"
wal = { git = "https://github.com/qdrant/wal.git", rev = "fad0e7c48be58d8e7db4cc739acd9b1cf6735de0" }
wal = { workspace = true }

config = "~0.14.0"

Expand Down Expand Up @@ -141,6 +141,7 @@ tonic-reflection = "0.9.2"
tracing = { version = "0.1", features = ["async-await"] }
uuid = { version = "1.8", features = ["v4", "serde"] }
validator = { version = "0.16.1", features = ["derive"] }
wal = { git = "https://github.com/qdrant/wal.git", rev = "a7870900f29811a24e20882887d60e6a2febf945" }

[[bin]]
name = "schema_generator"
Expand Down
2 changes: 1 addition & 1 deletion lib/collection/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ serde = { workspace = true }
serde_cbor = { workspace = true }
serde_json = { workspace = true }
rmp-serde = "~1.1"
wal = { git = "https://github.com/qdrant/wal.git", rev = "fad0e7c48be58d8e7db4cc739acd9b1cf6735de0" }
wal = { workspace = true }
ordered-float = "4.2"
hashring = "0.3.3"
tinyvec = { version = "1.6.0", features = ["alloc"] }
Expand Down
2 changes: 1 addition & 1 deletion lib/storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env_logger = "0.11"
[dependencies]
thiserror = "1.0"
rand = "0.8.5"
wal = { git = "https://github.com/qdrant/wal.git", rev = "acaf1b2ebd5de3a871f4d2c48e13fc8788ffa43b" }
wal = { workspace = true }
tokio = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
Expand Down

0 comments on commit e1c21b1

Please sign in to comment.