diff --git a/Cargo.lock b/Cargo.lock index 6625ca4e94..b87d079ecd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5453,9 +5453,9 @@ dependencies = [ [[package]] name = "smallvec" -version = "1.11.0" +version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" +checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a" [[package]] name = "snafu" diff --git a/influxdb_line_protocol/Cargo.toml b/influxdb_line_protocol/Cargo.toml index d6daf8da2a..e82072b95f 100644 --- a/influxdb_line_protocol/Cargo.toml +++ b/influxdb_line_protocol/Cargo.toml @@ -20,7 +20,7 @@ repository = "https://github.com/influxdata/influxdb_iox/tree/main/influxdb_line bytes = "1.5" log = "0.4.20" nom = { version = "7", default-features = false, features = ["std"] } -smallvec = { version = "1.11.0", features = ["union"] } +smallvec = { version = "1.11.1", features = ["union"] } snafu = "0.7" [dev-dependencies] # In alphabetical order diff --git a/router/Cargo.toml b/router/Cargo.toml index 3758f61d45..ac7db08fc2 100644 --- a/router/Cargo.toml +++ b/router/Cargo.toml @@ -36,7 +36,7 @@ service_grpc_object_store = { path = "../service_grpc_object_store" } service_grpc_schema = { path = "../service_grpc_schema" } service_grpc_table = { path = "../service_grpc_table" } sharder = { path = "../sharder" } -smallvec = "1.11.0" +smallvec = "1.11.1" thiserror = "1.0" tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] } tonic = { workspace = true }