Merge pull request #7837 from influxdata/dom/deps

chore: remove unused deps
pull/24376/head
kodiakhq[bot] 2023-05-22 11:46:14 +00:00 committed by GitHub
commit 6f10fd2383
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 14 deletions

7
Cargo.lock generated
View File

@ -6244,29 +6244,22 @@ name = "wal"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"assert_matches", "assert_matches",
"async-trait",
"byteorder", "byteorder",
"bytes",
"crc32fast", "crc32fast",
"data_types", "data_types",
"dml", "dml",
"futures",
"generated_types", "generated_types",
"hashbrown 0.13.2", "hashbrown 0.13.2",
"mutable_batch", "mutable_batch",
"mutable_batch_lp", "mutable_batch_lp",
"mutable_batch_pb", "mutable_batch_pb",
"observability_deps", "observability_deps",
"once_cell",
"parking_lot 0.12.1", "parking_lot 0.12.1",
"prost", "prost",
"regex",
"serde",
"snafu", "snafu",
"snap", "snap",
"test_helpers", "test_helpers",
"tokio", "tokio",
"tokio-util",
"workspace-hack", "workspace-hack",
] ]

View File

@ -6,26 +6,19 @@ edition.workspace = true
license.workspace = true license.workspace = true
[dependencies] # In alphabetical order [dependencies] # In alphabetical order
async-trait = "0.1"
bytes = "1.4"
byteorder = "1.3.4" byteorder = "1.3.4"
crc32fast = "1.2.0" crc32fast = "1.2.0"
data_types = { path = "../data_types" } data_types = { path = "../data_types" }
futures = "0.3"
generated_types = { path = "../generated_types" } generated_types = { path = "../generated_types" }
hashbrown.workspace = true hashbrown.workspace = true
mutable_batch = { version = "0.1.0", path = "../mutable_batch" } mutable_batch = { version = "0.1.0", path = "../mutable_batch" }
mutable_batch_pb = { version = "0.1.0", path = "../mutable_batch_pb" } mutable_batch_pb = { version = "0.1.0", path = "../mutable_batch_pb" }
observability_deps = { path = "../observability_deps" } observability_deps = { path = "../observability_deps" }
once_cell = { version = "1.17", features = ["parking_lot"] }
parking_lot = "0.12" parking_lot = "0.12"
prost = "0.11" prost = "0.11"
regex = "1.8.1"
serde = { version = "1.0", features = ["derive"] }
snafu = "0.7" snafu = "0.7"
snap = "1.0.0" snap = "1.0.0"
tokio = { version = "1.28", features = ["macros", "fs", "io-util", "parking_lot", "rt-multi-thread", "sync", "time"] } tokio = { version = "1.28", features = ["macros", "fs", "io-util", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio-util = "0.7"
workspace-hack = { version = "0.1", path = "../workspace-hack" } workspace-hack = { version = "0.1", path = "../workspace-hack" }
[dev-dependencies] # In alphabetical order [dev-dependencies] # In alphabetical order