chore: address PR feedback
- move enabling v3 feature to root Cargo.toml - added the upstream PR for datafusion-common that introduced RUSTSEC-2024-0384chore/update-core-deps
parent
9ccfc1b8de
commit
fadf1fb6b5
|
@ -122,7 +122,7 @@ authz = { git = "https://github.com/influxdata/influxdb3_core", rev = "6fcbb0042
|
|||
clap_blocks = { git = "https://github.com/influxdata/influxdb3_core", rev = "6fcbb004232738d55655f32f4ad2385523d10696" }
|
||||
data_types = { git = "https://github.com/influxdata/influxdb3_core", rev = "6fcbb004232738d55655f32f4ad2385523d10696" }
|
||||
datafusion_util = { git = "https://github.com/influxdata/influxdb3_core", rev = "6fcbb004232738d55655f32f4ad2385523d10696" }
|
||||
influxdb-line-protocol = { git = "https://github.com/influxdata/influxdb3_core", rev = "6fcbb004232738d55655f32f4ad2385523d10696" }
|
||||
influxdb-line-protocol = { git = "https://github.com/influxdata/influxdb3_core", rev = "6fcbb004232738d55655f32f4ad2385523d10696", features = ["v3"] }
|
||||
influxdb_influxql_parser = { git = "https://github.com/influxdata/influxdb3_core", rev = "6fcbb004232738d55655f32f4ad2385523d10696" }
|
||||
influxdb_iox_client = { git = "https://github.com/influxdata/influxdb3_core", rev = "6fcbb004232738d55655f32f4ad2385523d10696" }
|
||||
iox_catalog = { git = "https://github.com/influxdata/influxdb3_core", rev = "6fcbb004232738d55655f32f4ad2385523d10696" }
|
||||
|
@ -137,7 +137,7 @@ metric_exporters = { git = "https://github.com/influxdata/influxdb3_core", rev =
|
|||
observability_deps = { git = "https://github.com/influxdata/influxdb3_core", rev = "6fcbb004232738d55655f32f4ad2385523d10696" }
|
||||
panic_logging = { git = "https://github.com/influxdata/influxdb3_core", rev = "6fcbb004232738d55655f32f4ad2385523d10696" }
|
||||
parquet_file = { git = "https://github.com/influxdata/influxdb3_core", rev = "6fcbb004232738d55655f32f4ad2385523d10696" }
|
||||
schema = { git = "https://github.com/influxdata/influxdb3_core", rev = "6fcbb004232738d55655f32f4ad2385523d10696" }
|
||||
schema = { git = "https://github.com/influxdata/influxdb3_core", rev = "6fcbb004232738d55655f32f4ad2385523d10696", features = ["v3"] }
|
||||
service_common = { git = "https://github.com/influxdata/influxdb3_core", rev = "6fcbb004232738d55655f32f4ad2385523d10696" }
|
||||
service_grpc_flight = { git = "https://github.com/influxdata/influxdb3_core", rev = "6fcbb004232738d55655f32f4ad2385523d10696" }
|
||||
test_helpers = { git = "https://github.com/influxdata/influxdb3_core", rev = "6fcbb004232738d55655f32f4ad2385523d10696" }
|
||||
|
|
|
@ -8,6 +8,7 @@ ignore = [
|
|||
# see https://github.com/apache/arrow-rs/pull/6401
|
||||
"RUSTSEC-2023-0086",
|
||||
# dependent on datafusion-common moving away from instant
|
||||
# https://github.com/apache/datafusion/pull/13355
|
||||
"RUSTSEC-2024-0384",
|
||||
]
|
||||
git-fetch-with-cli = true
|
||||
|
|
|
@ -9,7 +9,7 @@ license.workspace = true
|
|||
# Core Crates
|
||||
influxdb-line-protocol.workspace = true
|
||||
observability_deps.workspace = true
|
||||
schema = { workspace = true, features = ["v3"] }
|
||||
schema = { workspace = true }
|
||||
|
||||
# Local deps
|
||||
influxdb3_id = { path = "../influxdb3_id" }
|
||||
|
|
|
@ -9,7 +9,7 @@ license.workspace = true
|
|||
# Core crates
|
||||
data_types.workspace = true
|
||||
iox_time.workspace = true
|
||||
influxdb-line-protocol = { workspace = true, features = ["v3"] }
|
||||
influxdb-line-protocol = { workspace = true }
|
||||
observability_deps.workspace = true
|
||||
schema.workspace = true
|
||||
|
||||
|
|
Loading…
Reference in New Issue