feat: disable bytes serde (#2580)

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
pull/24376/head
Raphael Taylor-Davies 2021-09-20 10:07:12 +01:00 committed by GitHub
parent 9fba7b0ba0
commit f62d0eab3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 5 additions and 8 deletions

3
Cargo.lock generated
View File

@ -481,9 +481,6 @@ name = "bytes"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
dependencies = [
"serde",
]
[[package]]
name = "cache_loader_async"

View File

@ -5,7 +5,7 @@ authors = ["Paul Dix <paul@pauldix.net>"]
edition = "2018"
[dependencies] # In alphabetical order
bytes = { version = "1.0", features = ["serde"] }
bytes = "1.0"
data_types = { path = "../data_types" }
futures = "0.3"
google_types = { path = "../google_types" }

View File

@ -6,7 +6,7 @@ description = "Standard Protobuf definitions - extracted into separate crate to
edition = "2018"
[dependencies] # In alphabetical order
bytes = { version = "1.0", features = ["serde"] }
bytes = "1.0"
chrono = "0.4"
pbjson = { path = "../pbjson" }
prost = "0.8"

View File

@ -5,7 +5,7 @@ authors = ["Marko Mikulicic <mkm@influxdata.com>"]
edition = "2018"
[dependencies]
bytes = { version = "1.0" }
bytes = "1.0"
cache_loader_async = {version = "0.1.0", features = ["ttl-cache"] }
futures = "0.3"
observability_deps = { path = "../observability_deps" }

View File

@ -5,7 +5,7 @@ authors = ["Paul Dix <paul@pauldix.net>"]
edition = "2018"
[dependencies] # In alphabetical order
bytes = { version = "1.0", default-features = false }
bytes = "1.0"
futures = { version = "0.3", default-features = false }
reqwest = { version = "0.11", features = ["stream", "json"] }
serde = { version = "1.0", features = ["derive"] }

View File

@ -8,7 +8,7 @@ edition = "2018"
arrow = { version = "5.0", features = ["prettyprint"] }
arrow_util = { path = "../arrow_util" }
async-trait = "0.1"
bytes = { version = "1.0" }
bytes = "1.0"
chrono = "0.4"
cache_loader_async = { version = "0.1.0", features = ["ttl-cache"] }
crc32fast = "1.2.0"