chore: Update to (almost) released object_store 0.4.0 (#5419)
* chore: update object_store * chore: update hakari config * chore: Run cargo hakari tasks Co-authored-by: CircleCI[bot] <circleci@influxdata.com>pull/24376/head
parent
bd4b708055
commit
7f0ae53d6f
|
@ -39,9 +39,9 @@ workspace-members = [
|
|||
"mutable_batch_tests",
|
||||
]
|
||||
third-party = [
|
||||
{ name = "azure_core", version = "0.2" },
|
||||
{ name = "azure_storage", version = "0.2" },
|
||||
{ name = "azure_storage_blobs", version = "0.2" },
|
||||
{ name = "azure_core", version = "0.4" },
|
||||
{ name = "azure_storage", version = "0.5" },
|
||||
{ name = "azure_storage_blobs", version = "0.5" },
|
||||
{ name = "criterion" },
|
||||
{ name = "pprof" },
|
||||
{ name = "tikv-jemalloc-sys" },
|
||||
|
|
|
@ -29,7 +29,7 @@ version = "0.7.6"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
|
||||
dependencies = [
|
||||
"getrandom",
|
||||
"getrandom 0.2.7",
|
||||
"once_cell",
|
||||
"version_check",
|
||||
]
|
||||
|
@ -41,7 +41,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
checksum = "57e6e951cfbb2db8de1828d49073a113a29fd7117b1596caa781a258c7e38d72"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"getrandom",
|
||||
"getrandom 0.2.7",
|
||||
"once_cell",
|
||||
"version_check",
|
||||
]
|
||||
|
@ -172,7 +172,7 @@ dependencies = [
|
|||
"datafusion 0.1.0",
|
||||
"hashbrown",
|
||||
"num-traits",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"snafu",
|
||||
"workspace-hack",
|
||||
]
|
||||
|
@ -207,6 +207,26 @@ version = "1.5.0"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9"
|
||||
|
||||
[[package]]
|
||||
name = "async-channel"
|
||||
version = "1.7.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e14485364214912d3b19cc3435dde4df66065127f05fa0d75c712f36f12c2f28"
|
||||
dependencies = [
|
||||
"concurrent-queue",
|
||||
"event-listener",
|
||||
"futures-core",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "async-lock"
|
||||
version = "2.5.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e97a171d191782fba31bb902b14ad94e24a68145032b7eedf871ab0bc0d077b6"
|
||||
dependencies = [
|
||||
"event-listener",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "async-socks5"
|
||||
version = "0.5.1"
|
||||
|
@ -239,6 +259,18 @@ dependencies = [
|
|||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "async-timer"
|
||||
version = "1.0.0-beta.8"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "faacdfdccd10db54656717fddcd1a2ab6cd1ab16c0d6e7d89ec365b885fc9844"
|
||||
dependencies = [
|
||||
"error-code",
|
||||
"libc",
|
||||
"wasm-bindgen",
|
||||
"winapi",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "async-trait"
|
||||
version = "0.1.57"
|
||||
|
@ -321,47 +353,65 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "azure_core"
|
||||
version = "0.2.2"
|
||||
version = "0.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ca4393afee90ad13c987a2cbfeb5bbb0b9fb3c86585e42ed3ed151babaa93da1"
|
||||
checksum = "e6e66a6d993197d1b575cffd08bf725e04bc1414de6586baeb3537925e49b4ff"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"base64",
|
||||
"bytes",
|
||||
"chrono",
|
||||
"dyn-clone",
|
||||
"futures",
|
||||
"getrandom",
|
||||
"http",
|
||||
"getrandom 0.2.7",
|
||||
"http-types",
|
||||
"log",
|
||||
"oauth2",
|
||||
"paste",
|
||||
"pin-project",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"reqwest",
|
||||
"rustc_version",
|
||||
"serde",
|
||||
"serde_derive",
|
||||
"serde_json",
|
||||
"thiserror",
|
||||
"time 0.3.13",
|
||||
"url",
|
||||
"uuid 1.1.2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "azure_identity"
|
||||
version = "0.5.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c6492760665ae7cf6daccf20847f12c9cd695327aa41c86c5de17d835b43e820"
|
||||
dependencies = [
|
||||
"async-lock",
|
||||
"async-timer",
|
||||
"async-trait",
|
||||
"azure_core",
|
||||
"base64",
|
||||
"fix-hidden-lifetime-bug",
|
||||
"futures",
|
||||
"log",
|
||||
"oauth2",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"time 0.3.13",
|
||||
"url",
|
||||
"uuid 1.1.2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "azure_storage"
|
||||
version = "0.2.0"
|
||||
version = "0.5.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7a9f2aee687da9817f7b332e1e01dda51cd9f7a0a68a5abcfec7c4c494a65546"
|
||||
checksum = "55aa63fb0426c76b9cc909234e94e69764f5e777a62b7ed6411f3cc04aa94a16"
|
||||
dependencies = [
|
||||
"RustyXML",
|
||||
"async-trait",
|
||||
"azure_core",
|
||||
"base64",
|
||||
"bytes",
|
||||
"chrono",
|
||||
"futures",
|
||||
"hmac",
|
||||
"http",
|
||||
"log",
|
||||
"once_cell",
|
||||
"serde",
|
||||
|
@ -369,32 +419,30 @@ dependencies = [
|
|||
"serde_derive",
|
||||
"serde_json",
|
||||
"sha2",
|
||||
"thiserror",
|
||||
"time 0.3.13",
|
||||
"url",
|
||||
"uuid 1.1.2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "azure_storage_blobs"
|
||||
version = "0.2.0"
|
||||
version = "0.5.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d17982127c4a34736a60656ddbd05b1714420686b6e6304145ee3b4501395e75"
|
||||
checksum = "33f953cedd7c240347ed0f6ed8a0bd7472b32579c38341ab9e117eaa6173e9ba"
|
||||
dependencies = [
|
||||
"RustyXML",
|
||||
"azure_core",
|
||||
"azure_storage",
|
||||
"base64",
|
||||
"bytes",
|
||||
"chrono",
|
||||
"futures",
|
||||
"http",
|
||||
"log",
|
||||
"md5",
|
||||
"serde",
|
||||
"serde-xml-rs",
|
||||
"serde_derive",
|
||||
"serde_json",
|
||||
"thiserror",
|
||||
"time 0.3.13",
|
||||
"url",
|
||||
"uuid 1.1.2",
|
||||
]
|
||||
|
@ -404,7 +452,7 @@ name = "backoff"
|
|||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"observability_deps",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"tokio",
|
||||
"workspace-hack",
|
||||
]
|
||||
|
@ -544,6 +592,12 @@ version = "1.2.1"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
|
||||
|
||||
[[package]]
|
||||
name = "cache-padded"
|
||||
version = "1.2.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c"
|
||||
|
||||
[[package]]
|
||||
name = "cache_system"
|
||||
version = "0.1.0"
|
||||
|
@ -557,7 +611,7 @@ dependencies = [
|
|||
"parking_lot 0.12.1",
|
||||
"pdatastructs",
|
||||
"proptest",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"tokio",
|
||||
"trace",
|
||||
"workspace-hack",
|
||||
|
@ -669,7 +723,7 @@ dependencies = [
|
|||
"iox_catalog",
|
||||
"iox_time",
|
||||
"metric",
|
||||
"object_store 0.3.0",
|
||||
"object_store",
|
||||
"observability_deps",
|
||||
"serde",
|
||||
"serde_json",
|
||||
|
@ -777,7 +831,7 @@ dependencies = [
|
|||
"iox_tests",
|
||||
"iox_time",
|
||||
"metric",
|
||||
"object_store 0.3.0",
|
||||
"object_store",
|
||||
"observability_deps",
|
||||
"parquet_file",
|
||||
"predicate",
|
||||
|
@ -791,6 +845,15 @@ dependencies = [
|
|||
"workspace-hack",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "concurrent-queue"
|
||||
version = "1.2.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "af4780a44ab5696ea9e28294517f1fffb421a83a25af521333c838635509db9c"
|
||||
dependencies = [
|
||||
"cache-padded",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "console-api"
|
||||
version = "0.4.0"
|
||||
|
@ -1102,13 +1165,13 @@ dependencies = [
|
|||
"lazy_static",
|
||||
"log",
|
||||
"num_cpus",
|
||||
"object_store 0.4.0",
|
||||
"object_store",
|
||||
"ordered-float 3.0.0",
|
||||
"parking_lot 0.12.1",
|
||||
"parquet",
|
||||
"paste",
|
||||
"pin-project-lite",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"smallvec",
|
||||
"sqlparser",
|
||||
"tempfile",
|
||||
|
@ -1124,7 +1187,7 @@ version = "11.0.0"
|
|||
source = "git+https://github.com/apache/arrow-datafusion.git?rev=929eb6d860fb60ba994b24397ad3c3eb7d839cdf#929eb6d860fb60ba994b24397ad3c3eb7d839cdf"
|
||||
dependencies = [
|
||||
"arrow",
|
||||
"object_store 0.4.0",
|
||||
"object_store",
|
||||
"ordered-float 3.0.0",
|
||||
"parquet",
|
||||
"serde_json",
|
||||
|
@ -1175,7 +1238,7 @@ dependencies = [
|
|||
"md-5",
|
||||
"ordered-float 3.0.0",
|
||||
"paste",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"regex",
|
||||
"sha2",
|
||||
"unicode-segmentation",
|
||||
|
@ -1202,7 +1265,7 @@ dependencies = [
|
|||
"arrow",
|
||||
"datafusion-common",
|
||||
"paste",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -1431,6 +1494,26 @@ dependencies = [
|
|||
"winapi",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "fix-hidden-lifetime-bug"
|
||||
version = "0.2.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d4ae9c2016a663983d4e40a9ff967d6dcac59819672f0b47f2b17574e99c33c8"
|
||||
dependencies = [
|
||||
"fix-hidden-lifetime-bug-proc_macros",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "fix-hidden-lifetime-bug-proc_macros"
|
||||
version = "0.2.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e4c81935e123ab0741c4c4f0d9b8377e5fb21d3de7e062fa4b1263b1fbcba1ea"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "fixedbitset"
|
||||
version = "0.4.2"
|
||||
|
@ -1548,6 +1631,21 @@ version = "0.3.23"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "93a66fc6d035a26a3ae255a6d2bca35eda63ae4c5512bef54449113f7a1228e5"
|
||||
|
||||
[[package]]
|
||||
name = "futures-lite"
|
||||
version = "1.12.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
|
||||
dependencies = [
|
||||
"fastrand",
|
||||
"futures-core",
|
||||
"futures-io",
|
||||
"memchr",
|
||||
"parking",
|
||||
"pin-project-lite",
|
||||
"waker-fn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "futures-macro"
|
||||
version = "0.3.23"
|
||||
|
@ -1602,7 +1700,7 @@ dependencies = [
|
|||
"futures",
|
||||
"iox_catalog",
|
||||
"metric",
|
||||
"object_store 0.3.0",
|
||||
"object_store",
|
||||
"observability_deps",
|
||||
"once_cell",
|
||||
"parquet_file",
|
||||
|
@ -1646,6 +1744,17 @@ dependencies = [
|
|||
"version_check",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "getrandom"
|
||||
version = "0.1.16"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"libc",
|
||||
"wasi 0.9.0+wasi-snapshot-preview1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "getrandom"
|
||||
version = "0.2.7"
|
||||
|
@ -1835,6 +1944,26 @@ version = "0.3.0"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29"
|
||||
|
||||
[[package]]
|
||||
name = "http-types"
|
||||
version = "2.12.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"async-channel",
|
||||
"base64",
|
||||
"futures-lite",
|
||||
"infer",
|
||||
"pin-project-lite",
|
||||
"rand 0.7.3",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"serde_qs",
|
||||
"serde_urlencoded",
|
||||
"url",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "httparse"
|
||||
version = "1.7.1"
|
||||
|
@ -1936,7 +2065,7 @@ dependencies = [
|
|||
"futures",
|
||||
"iox_catalog",
|
||||
"metric",
|
||||
"object_store 0.3.0",
|
||||
"object_store",
|
||||
"observability_deps",
|
||||
"schema",
|
||||
"serde",
|
||||
|
@ -1957,6 +2086,12 @@ dependencies = [
|
|||
"hashbrown",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "infer"
|
||||
version = "0.2.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac"
|
||||
|
||||
[[package]]
|
||||
name = "inferno"
|
||||
version = "0.11.7"
|
||||
|
@ -2034,7 +2169,7 @@ dependencies = [
|
|||
"libc",
|
||||
"metric",
|
||||
"num_cpus",
|
||||
"object_store 0.3.0",
|
||||
"object_store",
|
||||
"object_store_metrics",
|
||||
"observability_deps",
|
||||
"once_cell",
|
||||
|
@ -2078,7 +2213,7 @@ dependencies = [
|
|||
"mutable_batch_lp",
|
||||
"mutable_batch_pb",
|
||||
"prost 0.11.0",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"thiserror",
|
||||
"tokio",
|
||||
"tonic",
|
||||
|
@ -2118,7 +2253,7 @@ dependencies = [
|
|||
"hex",
|
||||
"integer-encoding 3.0.4",
|
||||
"observability_deps",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"snafu",
|
||||
"snap",
|
||||
"test_helpers",
|
||||
|
@ -2162,7 +2297,7 @@ dependencies = [
|
|||
"metric",
|
||||
"mutable_batch",
|
||||
"mutable_batch_lp",
|
||||
"object_store 0.3.0",
|
||||
"object_store",
|
||||
"observability_deps",
|
||||
"once_cell",
|
||||
"parking_lot 0.12.1",
|
||||
|
@ -2230,7 +2365,7 @@ dependencies = [
|
|||
"observability_deps",
|
||||
"paste",
|
||||
"pretty_assertions",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"snafu",
|
||||
"sqlx",
|
||||
"sqlx-hotswap-pool",
|
||||
|
@ -2255,7 +2390,7 @@ dependencies = [
|
|||
"humantime",
|
||||
"influxdb2_client",
|
||||
"itertools",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"regex",
|
||||
"serde",
|
||||
"serde_json",
|
||||
|
@ -2311,7 +2446,7 @@ dependencies = [
|
|||
"iox_time",
|
||||
"metric",
|
||||
"mutable_batch_lp",
|
||||
"object_store 0.3.0",
|
||||
"object_store",
|
||||
"observability_deps",
|
||||
"once_cell",
|
||||
"parquet_file",
|
||||
|
@ -2391,7 +2526,7 @@ dependencies = [
|
|||
"iox_time",
|
||||
"ioxd_common",
|
||||
"metric",
|
||||
"object_store 0.3.0",
|
||||
"object_store",
|
||||
"parquet_file",
|
||||
"thiserror",
|
||||
"trace",
|
||||
|
@ -2428,7 +2563,7 @@ dependencies = [
|
|||
"iox_query",
|
||||
"ioxd_common",
|
||||
"metric",
|
||||
"object_store 0.3.0",
|
||||
"object_store",
|
||||
"thiserror",
|
||||
"trace",
|
||||
"workspace-hack",
|
||||
|
@ -2451,7 +2586,7 @@ dependencies = [
|
|||
"iox_time",
|
||||
"ioxd_common",
|
||||
"metric",
|
||||
"object_store 0.3.0",
|
||||
"object_store",
|
||||
"parquet_file",
|
||||
"querier",
|
||||
"router",
|
||||
|
@ -2479,7 +2614,7 @@ dependencies = [
|
|||
"ioxd_common",
|
||||
"metric",
|
||||
"mutable_batch",
|
||||
"object_store 0.3.0",
|
||||
"object_store",
|
||||
"observability_deps",
|
||||
"router",
|
||||
"sharder",
|
||||
|
@ -2830,7 +2965,7 @@ dependencies = [
|
|||
"httparse",
|
||||
"lazy_static",
|
||||
"log",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"regex",
|
||||
"serde_json",
|
||||
"serde_urlencoded",
|
||||
|
@ -2874,7 +3009,7 @@ dependencies = [
|
|||
"hashbrown",
|
||||
"iox_time",
|
||||
"itertools",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"schema",
|
||||
"snafu",
|
||||
"workspace-hack",
|
||||
|
@ -3087,9 +3222,9 @@ checksum = "6d62c436394991641b970a92e23e8eeb4eb9bca74af4f5badc53bcd568daadbd"
|
|||
dependencies = [
|
||||
"base64",
|
||||
"chrono",
|
||||
"getrandom",
|
||||
"getrandom 0.2.7",
|
||||
"http",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"reqwest",
|
||||
"serde",
|
||||
"serde_json",
|
||||
|
@ -3110,11 +3245,12 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "object_store"
|
||||
version = "0.3.0"
|
||||
source = "git+https://github.com/tustvold/arrow-rs.git?rev=0f9d902aae0c0ce07e3f81d06d621b5189ad9240#0f9d902aae0c0ce07e3f81d06d621b5189ad9240"
|
||||
version = "0.4.0"
|
||||
source = "git+https://github.com/apache/arrow-rs.git?rev=3f0e12d8d362752181c75836d25d424862acc424#3f0e12d8d362752181c75836d25d424862acc424"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"azure_core",
|
||||
"azure_identity",
|
||||
"azure_storage",
|
||||
"azure_storage_blobs",
|
||||
"base64",
|
||||
|
@ -3125,7 +3261,7 @@ dependencies = [
|
|||
"parking_lot 0.12.1",
|
||||
"percent-encoding",
|
||||
"quick-xml",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"reqwest",
|
||||
"ring",
|
||||
"rustls-pemfile",
|
||||
|
@ -3138,26 +3274,6 @@ dependencies = [
|
|||
"walkdir",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "object_store"
|
||||
version = "0.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "cf3845781c5ecf37b3e3610df73fff11487591eba423a987e1b21bb4d389c326"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"bytes",
|
||||
"chrono",
|
||||
"futures",
|
||||
"itertools",
|
||||
"parking_lot 0.12.1",
|
||||
"percent-encoding",
|
||||
"snafu",
|
||||
"tokio",
|
||||
"tracing",
|
||||
"url",
|
||||
"walkdir",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "object_store_metrics"
|
||||
version = "0.1.0"
|
||||
|
@ -3168,7 +3284,7 @@ dependencies = [
|
|||
"futures",
|
||||
"iox_time",
|
||||
"metric",
|
||||
"object_store 0.3.0",
|
||||
"object_store",
|
||||
"pin-project",
|
||||
"snafu",
|
||||
"tokio",
|
||||
|
@ -3239,7 +3355,7 @@ dependencies = [
|
|||
"criterion",
|
||||
"influxdb_tsm",
|
||||
"parquet",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"schema",
|
||||
"snafu",
|
||||
"workspace-hack",
|
||||
|
@ -3254,6 +3370,12 @@ dependencies = [
|
|||
"workspace-hack",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "parking"
|
||||
version = "2.0.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
|
||||
|
||||
[[package]]
|
||||
name = "parking_lot"
|
||||
version = "0.11.2"
|
||||
|
@ -3322,7 +3444,7 @@ dependencies = [
|
|||
"num",
|
||||
"num-bigint",
|
||||
"parquet-format",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"seq-macro",
|
||||
"snap",
|
||||
"thrift",
|
||||
|
@ -3352,7 +3474,7 @@ dependencies = [
|
|||
"futures",
|
||||
"generated_types",
|
||||
"iox_time",
|
||||
"object_store 0.3.0",
|
||||
"object_store",
|
||||
"observability_deps",
|
||||
"parking_lot 0.12.1",
|
||||
"parquet",
|
||||
|
@ -3715,8 +3837,8 @@ dependencies = [
|
|||
"lazy_static",
|
||||
"num-traits",
|
||||
"quick-error",
|
||||
"rand",
|
||||
"rand_chacha",
|
||||
"rand 0.8.4",
|
||||
"rand_chacha 0.3.1",
|
||||
"rand_xorshift",
|
||||
"regex-syntax",
|
||||
]
|
||||
|
@ -3858,13 +3980,13 @@ dependencies = [
|
|||
"iox_time",
|
||||
"metric",
|
||||
"mutable_batch_lp",
|
||||
"object_store 0.3.0",
|
||||
"object_store",
|
||||
"observability_deps",
|
||||
"parking_lot 0.12.1",
|
||||
"parquet_file",
|
||||
"pin-project",
|
||||
"predicate",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"read_buffer",
|
||||
"schema",
|
||||
"service_common",
|
||||
|
@ -3961,6 +4083,19 @@ dependencies = [
|
|||
"proc-macro2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rand"
|
||||
version = "0.7.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
|
||||
dependencies = [
|
||||
"getrandom 0.1.16",
|
||||
"libc",
|
||||
"rand_chacha 0.2.2",
|
||||
"rand_core 0.5.1",
|
||||
"rand_hc 0.2.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rand"
|
||||
version = "0.8.4"
|
||||
|
@ -3968,9 +4103,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
|
||||
dependencies = [
|
||||
"libc",
|
||||
"rand_chacha",
|
||||
"rand_core",
|
||||
"rand_hc",
|
||||
"rand_chacha 0.3.1",
|
||||
"rand_core 0.6.3",
|
||||
"rand_hc 0.3.1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rand_chacha"
|
||||
version = "0.2.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
|
||||
dependencies = [
|
||||
"ppv-lite86",
|
||||
"rand_core 0.5.1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -3980,7 +4125,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
||||
dependencies = [
|
||||
"ppv-lite86",
|
||||
"rand_core",
|
||||
"rand_core 0.6.3",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rand_core"
|
||||
version = "0.5.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
|
||||
dependencies = [
|
||||
"getrandom 0.1.16",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -3989,7 +4143,7 @@ version = "0.6.3"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
|
||||
dependencies = [
|
||||
"getrandom",
|
||||
"getrandom 0.2.7",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -3999,7 +4153,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
|
||||
dependencies = [
|
||||
"num-traits",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rand_hc"
|
||||
version = "0.2.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
|
||||
dependencies = [
|
||||
"rand_core 0.5.1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -4008,7 +4171,7 @@ version = "0.3.1"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
|
||||
dependencies = [
|
||||
"rand_core",
|
||||
"rand_core 0.6.3",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -4017,7 +4180,7 @@ version = "0.3.0"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f"
|
||||
dependencies = [
|
||||
"rand_core",
|
||||
"rand_core 0.6.3",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -4063,7 +4226,7 @@ dependencies = [
|
|||
"parking_lot 0.12.1",
|
||||
"permutation",
|
||||
"proptest",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"rand_distr",
|
||||
"schema",
|
||||
"snafu",
|
||||
|
@ -4085,7 +4248,7 @@ version = "0.4.3"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
|
||||
dependencies = [
|
||||
"getrandom",
|
||||
"getrandom 0.2.7",
|
||||
"redox_syscall",
|
||||
"thiserror",
|
||||
]
|
||||
|
@ -4210,14 +4373,14 @@ dependencies = [
|
|||
"mutable_batch",
|
||||
"mutable_batch_lp",
|
||||
"mutable_batch_pb",
|
||||
"object_store 0.3.0",
|
||||
"object_store",
|
||||
"observability_deps",
|
||||
"once_cell",
|
||||
"parking_lot 0.12.1",
|
||||
"paste",
|
||||
"predicate",
|
||||
"pretty_assertions",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"schema",
|
||||
"serde",
|
||||
"serde_urlencoded",
|
||||
|
@ -4249,7 +4412,7 @@ dependencies = [
|
|||
"integer-encoding 3.0.4",
|
||||
"parking_lot 0.12.1",
|
||||
"pin-project-lite",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"snap",
|
||||
"thiserror",
|
||||
"time 0.3.13",
|
||||
|
@ -4464,6 +4627,17 @@ dependencies = [
|
|||
"serde",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "serde_qs"
|
||||
version = "0.8.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6"
|
||||
dependencies = [
|
||||
"percent-encoding",
|
||||
"serde",
|
||||
"thiserror",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "serde_urlencoded"
|
||||
version = "0.7.1"
|
||||
|
@ -4583,7 +4757,7 @@ dependencies = [
|
|||
"generated_types",
|
||||
"iox_catalog",
|
||||
"metric",
|
||||
"object_store 0.3.0",
|
||||
"object_store",
|
||||
"observability_deps",
|
||||
"parquet_file",
|
||||
"tokio",
|
||||
|
@ -4657,7 +4831,7 @@ dependencies = [
|
|||
"mutable_batch",
|
||||
"mutable_batch_lp",
|
||||
"parking_lot 0.12.1",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"siphasher",
|
||||
"snafu",
|
||||
"test_helpers",
|
||||
|
@ -4824,7 +4998,7 @@ dependencies = [
|
|||
"once_cell",
|
||||
"paste",
|
||||
"percent-encoding",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"rustls",
|
||||
"rustls-pemfile",
|
||||
"serde",
|
||||
|
@ -4850,7 +5024,7 @@ dependencies = [
|
|||
"dotenvy",
|
||||
"either",
|
||||
"futures",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"sqlx",
|
||||
"tokio",
|
||||
"workspace-hack",
|
||||
|
@ -5060,7 +5234,7 @@ dependencies = [
|
|||
"once_cell",
|
||||
"parking_lot 0.12.1",
|
||||
"prost 0.11.0",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"reqwest",
|
||||
"sqlx",
|
||||
"tempfile",
|
||||
|
@ -5176,10 +5350,19 @@ version = "0.3.13"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "db76ff9fa4b1458b3c7f077f3ff9887394058460d21e634355b273aaf11eea45"
|
||||
dependencies = [
|
||||
"itoa 1.0.3",
|
||||
"libc",
|
||||
"num_threads",
|
||||
"serde",
|
||||
"time-macros",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "time-macros"
|
||||
version = "0.2.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
|
||||
|
||||
[[package]]
|
||||
name = "tinytemplate"
|
||||
version = "1.2.1"
|
||||
|
@ -5379,7 +5562,7 @@ dependencies = [
|
|||
"indexmap",
|
||||
"pin-project",
|
||||
"pin-project-lite",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"slab",
|
||||
"tokio",
|
||||
"tokio-util",
|
||||
|
@ -5427,7 +5610,7 @@ dependencies = [
|
|||
"chrono",
|
||||
"observability_deps",
|
||||
"parking_lot 0.12.1",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"workspace-hack",
|
||||
]
|
||||
|
||||
|
@ -5679,7 +5862,7 @@ version = "1.1.2"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f"
|
||||
dependencies = [
|
||||
"getrandom",
|
||||
"getrandom 0.2.7",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -5703,6 +5886,12 @@ dependencies = [
|
|||
"libc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "waker-fn"
|
||||
version = "1.1.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
|
||||
|
||||
[[package]]
|
||||
name = "walkdir"
|
||||
version = "2.3.2"
|
||||
|
@ -5724,6 +5913,12 @@ dependencies = [
|
|||
"try-lock",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "wasi"
|
||||
version = "0.9.0+wasi-snapshot-preview1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
|
||||
|
||||
[[package]]
|
||||
name = "wasi"
|
||||
version = "0.10.0+wasi-snapshot-preview1"
|
||||
|
@ -5959,7 +6154,7 @@ dependencies = [
|
|||
"futures-sink",
|
||||
"futures-task",
|
||||
"futures-util",
|
||||
"getrandom",
|
||||
"getrandom 0.2.7",
|
||||
"hashbrown",
|
||||
"heck",
|
||||
"hex",
|
||||
|
@ -5972,14 +6167,14 @@ dependencies = [
|
|||
"nom",
|
||||
"num-integer",
|
||||
"num-traits",
|
||||
"object_store 0.3.0",
|
||||
"object_store",
|
||||
"once_cell",
|
||||
"parking_lot 0.12.1",
|
||||
"parquet",
|
||||
"predicates",
|
||||
"prost 0.11.0",
|
||||
"prost-types 0.11.1",
|
||||
"rand",
|
||||
"rand 0.8.4",
|
||||
"regex",
|
||||
"regex-automata",
|
||||
"regex-syntax",
|
||||
|
@ -5995,6 +6190,7 @@ dependencies = [
|
|||
"sqlx-core",
|
||||
"sqlx-macros",
|
||||
"syn",
|
||||
"time 0.3.13",
|
||||
"tokio",
|
||||
"tokio-stream",
|
||||
"tokio-util",
|
||||
|
@ -6006,6 +6202,7 @@ dependencies = [
|
|||
"tracing-core",
|
||||
"tracing-log",
|
||||
"tracing-subscriber",
|
||||
"url",
|
||||
"uuid 1.1.2",
|
||||
"winapi",
|
||||
"windows-sys",
|
||||
|
|
|
@ -119,4 +119,4 @@ incremental = true
|
|||
|
||||
[patch.crates-io]
|
||||
# remove and bump object_store dep version once this revision is released.
|
||||
object_store = { git = 'https://github.com/tustvold/arrow-rs.git', rev = "0f9d902aae0c0ce07e3f81d06d621b5189ad9240", package = "object_store" }
|
||||
object_store = { git = 'https://github.com/apache/arrow-rs.git', rev = "3f0e12d8d362752181c75836d25d424862acc424", package = "object_store" }
|
||||
|
|
|
@ -11,7 +11,7 @@ humantime = "2.1.0"
|
|||
iox_catalog = { path = "../iox_catalog" }
|
||||
iox_time = { path = "../iox_time" }
|
||||
metric = { path = "../metric" }
|
||||
object_store = "0.3.0"
|
||||
object_store = "0.4.0"
|
||||
observability_deps = { path = "../observability_deps" }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0.83"
|
||||
|
|
|
@ -14,7 +14,7 @@ datafusion = { path = "../datafusion" }
|
|||
futures = "0.3"
|
||||
iox_catalog = { path = "../iox_catalog" }
|
||||
metric = { path = "../metric" }
|
||||
object_store = "0.3.0"
|
||||
object_store = "0.4.0"
|
||||
observability_deps = { path = "../observability_deps" }
|
||||
parquet_file = { path = "../parquet_file" }
|
||||
predicate = { path = "../predicate" }
|
||||
|
|
|
@ -9,7 +9,7 @@ chrono-english = "0.1.4"
|
|||
clap = { version = "3", features = ["derive", "env"] }
|
||||
futures = "0.3"
|
||||
iox_catalog = { path = "../iox_catalog" }
|
||||
object_store = { version = "0.3.0" }
|
||||
object_store = { version = "0.4.0" }
|
||||
observability_deps = { path = "../observability_deps" }
|
||||
snafu = "0.7"
|
||||
tokio = { version = "1", features = ["macros", "rt", "sync"] }
|
||||
|
|
|
@ -10,7 +10,7 @@ clap_blocks = { path = "../clap_blocks" }
|
|||
data_types = { path = "../data_types" }
|
||||
futures = "0.3"
|
||||
iox_catalog = { path = "../iox_catalog" }
|
||||
object_store = { version = "0.3.0", features = ["aws"] }
|
||||
object_store = { version = "0.4.0", features = ["aws"] }
|
||||
observability_deps = { path = "../observability_deps" }
|
||||
schema = { path = "../schema" }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
|
|
|
@ -25,7 +25,7 @@ ioxd_querier = { path = "../ioxd_querier"}
|
|||
ioxd_router = { path = "../ioxd_router"}
|
||||
ioxd_test = { path = "../ioxd_test"}
|
||||
metric = { path = "../metric" }
|
||||
object_store = "0.3.0"
|
||||
object_store = "0.4.0"
|
||||
object_store_metrics = { path = "../object_store_metrics" }
|
||||
observability_deps = { path = "../observability_deps" }
|
||||
panic_logging = { path = "../panic_logging" }
|
||||
|
|
|
@ -24,7 +24,7 @@ iox_catalog = { path = "../iox_catalog" }
|
|||
metric = { path = "../metric" }
|
||||
mutable_batch = { path = "../mutable_batch"}
|
||||
mutable_batch_lp = { path = "../mutable_batch_lp" }
|
||||
object_store = "0.3.0"
|
||||
object_store = "0.4.0"
|
||||
observability_deps = { path = "../observability_deps" }
|
||||
parking_lot = "0.12"
|
||||
parquet_file = { path = "../parquet_file" }
|
||||
|
|
|
@ -14,7 +14,7 @@ iox_catalog = { path = "../iox_catalog" }
|
|||
iox_time = { path = "../iox_time" }
|
||||
metric = { path = "../metric" }
|
||||
mutable_batch_lp = { path = "../mutable_batch_lp" }
|
||||
object_store = "0.3.0"
|
||||
object_store = "0.4.0"
|
||||
observability_deps = { path = "../observability_deps" }
|
||||
once_cell = { version = "1.13.1", features = ["parking_lot"] }
|
||||
parquet_file = { path = "../parquet_file" }
|
||||
|
|
|
@ -15,7 +15,7 @@ iox_catalog = { path = "../iox_catalog" }
|
|||
ioxd_common = { path = "../ioxd_common" }
|
||||
metric = { path = "../metric" }
|
||||
iox_query = { path = "../iox_query" }
|
||||
object_store = "0.3.0"
|
||||
object_store = "0.4.0"
|
||||
iox_time = { path = "../iox_time" }
|
||||
trace = { path = "../trace" }
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ ingester = { path = "../ingester" }
|
|||
iox_catalog = { path = "../iox_catalog" }
|
||||
ioxd_common = { path = "../ioxd_common" }
|
||||
metric = { path = "../metric" }
|
||||
object_store = "0.3.0"
|
||||
object_store = "0.4.0"
|
||||
iox_query = { path = "../iox_query" }
|
||||
trace = { path = "../trace" }
|
||||
write_buffer = { path = "../write_buffer" }
|
||||
|
|
|
@ -11,7 +11,7 @@ generated_types = { path = "../generated_types" }
|
|||
iox_catalog = { path = "../iox_catalog" }
|
||||
ioxd_common = { path = "../ioxd_common" }
|
||||
metric = { path = "../metric" }
|
||||
object_store = "0.3.0"
|
||||
object_store = "0.4.0"
|
||||
querier = { path = "../querier" }
|
||||
iox_query = { path = "../iox_query" }
|
||||
router = { path = "../router" }
|
||||
|
|
|
@ -11,7 +11,7 @@ iox_catalog = { path = "../iox_catalog" }
|
|||
ioxd_common = { path = "../ioxd_common" }
|
||||
metric = { path = "../metric" }
|
||||
mutable_batch = { path = "../mutable_batch" }
|
||||
object_store = "0.3.0"
|
||||
object_store = "0.4.0"
|
||||
observability_deps = { path = "../observability_deps" }
|
||||
router = { path = "../router" }
|
||||
sharder = { path = "../sharder" }
|
||||
|
|
|
@ -10,7 +10,7 @@ bytes = "1.2"
|
|||
futures = "0.3"
|
||||
iox_time = { version = "0.1.0", path = "../iox_time" }
|
||||
metric = { version = "0.1.0", path = "../metric" }
|
||||
object_store = "0.3.0"
|
||||
object_store = "0.4.0"
|
||||
pin-project = "1.0.12"
|
||||
tokio = { version = "1.20", features = ["io-util"] }
|
||||
workspace-hack = { path = "../workspace-hack" }
|
||||
|
|
|
@ -14,7 +14,7 @@ datafusion_util = { path = "../datafusion_util" }
|
|||
futures = "0.3"
|
||||
generated_types = { path = "../generated_types" }
|
||||
iox_time = { path = "../iox_time" }
|
||||
object_store = "0.3.0"
|
||||
object_store = "0.4.0"
|
||||
observability_deps = { path = "../observability_deps" }
|
||||
parking_lot = "0.12"
|
||||
parquet = {version = "20.0.0", features = ["experimental"]}
|
||||
|
|
|
@ -17,7 +17,7 @@ generated_types = { path = "../generated_types" }
|
|||
influxdb_iox_client = { path = "../influxdb_iox_client" }
|
||||
iox_catalog = { path = "../iox_catalog" }
|
||||
metric = { path = "../metric" }
|
||||
object_store = "0.3.0"
|
||||
object_store = "0.4.0"
|
||||
observability_deps = { path = "../observability_deps" }
|
||||
parking_lot = "0.12"
|
||||
parquet_file = { path = "../parquet_file" }
|
||||
|
|
|
@ -20,7 +20,7 @@ metric = { path = "../metric" }
|
|||
mutable_batch = { path = "../mutable_batch" }
|
||||
mutable_batch_lp = { path = "../mutable_batch_lp" }
|
||||
mutable_batch_pb = { version = "0.1.0", path = "../mutable_batch_pb" }
|
||||
object_store = "0.3.0"
|
||||
object_store = "0.4.0"
|
||||
observability_deps = { path = "../observability_deps" }
|
||||
parking_lot = "0.12"
|
||||
predicate = { path = "../predicate" }
|
||||
|
|
|
@ -8,7 +8,7 @@ data_types = { path = "../data_types" }
|
|||
futures = "0.3"
|
||||
generated_types = { path = "../generated_types" }
|
||||
iox_catalog = { path = "../iox_catalog" }
|
||||
object_store = "0.3.0"
|
||||
object_store = "0.4.0"
|
||||
observability_deps = { path = "../observability_deps" }
|
||||
parquet_file = { path = "../parquet_file" }
|
||||
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
|
||||
|
|
|
@ -43,7 +43,7 @@ memchr = { version = "2", features = ["std"] }
|
|||
nom = { version = "7", features = ["alloc", "std"] }
|
||||
num-integer = { version = "0.1", default-features = false, features = ["i128", "std"] }
|
||||
num-traits = { version = "0.2", features = ["i128", "libm", "std"] }
|
||||
object_store = { git = "https://github.com/tustvold/arrow-rs.git", rev = "0f9d902aae0c0ce07e3f81d06d621b5189ad9240", default-features = false, features = ["aws", "azure", "azure_core", "azure_storage", "azure_storage_blobs", "base64", "gcp", "quick-xml", "rand", "reqwest", "ring", "rustls-pemfile", "serde", "serde_json"] }
|
||||
object_store = { git = "https://github.com/apache/arrow-rs.git", rev = "3f0e12d8d362752181c75836d25d424862acc424", default-features = false, features = ["aws", "azure", "azure_core", "azure_identity", "azure_storage", "azure_storage_blobs", "base64", "gcp", "quick-xml", "rand", "reqwest", "ring", "rustls-pemfile", "serde", "serde_json"] }
|
||||
once_cell = { version = "1", features = ["alloc", "parking_lot", "parking_lot_core", "race", "std"] }
|
||||
parking_lot = { version = "0.12", features = ["arc_lock"] }
|
||||
parquet = { version = "20", features = ["arrow", "async", "base64", "brotli", "experimental", "flate2", "futures", "lz4", "snap", "tokio", "zstd"] }
|
||||
|
@ -54,7 +54,7 @@ rand = { version = "0.8", features = ["alloc", "getrandom", "libc", "rand_chacha
|
|||
regex = { version = "1", features = ["aho-corasick", "memchr", "perf", "perf-cache", "perf-dfa", "perf-inline", "perf-literal", "std", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment"] }
|
||||
regex-automata = { version = "0.1", features = ["regex-syntax", "std"] }
|
||||
regex-syntax = { version = "0.6", features = ["unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment"] }
|
||||
reqwest = { version = "0.11", default-features = false, features = ["__rustls", "__tls", "hyper-rustls", "json", "rustls", "rustls-pemfile", "rustls-tls", "rustls-tls-webpki-roots", "serde_json", "stream", "tokio-rustls", "tokio-util", "webpki-roots"] }
|
||||
reqwest = { version = "0.11", default-features = false, features = ["__rustls", "__tls", "blocking", "hyper-rustls", "json", "rustls", "rustls-pemfile", "rustls-tls", "rustls-tls-webpki-roots", "serde_json", "stream", "tokio-rustls", "tokio-util", "webpki-roots"] }
|
||||
ring = { version = "0.16", features = ["alloc", "dev_urandom_fallback", "once_cell", "std"] }
|
||||
serde = { version = "1", features = ["derive", "rc", "serde_derive", "std"] }
|
||||
serde_json = { version = "1", features = ["raw_value", "std"] }
|
||||
|
@ -62,6 +62,7 @@ sha2 = { version = "0.10", features = ["std"] }
|
|||
smallvec = { version = "1", default-features = false, features = ["union"] }
|
||||
sqlx = { version = "0.6", features = ["_rt-tokio", "json", "macros", "migrate", "postgres", "runtime-tokio-rustls", "sqlx-macros", "tls", "uuid"] }
|
||||
sqlx-core = { version = "0.6", default-features = false, features = ["_rt-tokio", "_tls-rustls", "any", "base64", "crc", "dirs", "hkdf", "hmac", "json", "md-5", "migrate", "postgres", "rand", "runtime-tokio-rustls", "rustls", "rustls-pemfile", "serde", "serde_json", "sha-1", "sha2", "tokio-stream", "uuid", "webpki-roots", "whoami"] }
|
||||
time = { version = "0.3", features = ["alloc", "local-offset", "macros", "serde", "std", "time-macros"] }
|
||||
tokio = { version = "1", features = ["bytes", "fs", "io-std", "io-util", "libc", "macros", "memchr", "mio", "net", "num_cpus", "once_cell", "parking_lot", "rt", "rt-multi-thread", "signal", "signal-hook-registry", "socket2", "sync", "time", "tokio-macros", "tracing"] }
|
||||
tokio-stream = { version = "0.1", features = ["fs", "net", "time"] }
|
||||
tokio-util = { version = "0.7", features = ["codec", "tracing"] }
|
||||
|
@ -72,6 +73,7 @@ tracing = { version = "0.1", features = ["attributes", "log", "max_level_trace",
|
|||
tracing-core = { version = "0.1", features = ["lazy_static", "std"] }
|
||||
tracing-log = { version = "0.1", features = ["log-tracer", "std", "trace-logger"] }
|
||||
tracing-subscriber = { version = "0.3", features = ["alloc", "ansi", "ansi_term", "env-filter", "fmt", "json", "lazy_static", "matchers", "parking_lot", "regex", "registry", "serde", "serde_json", "sharded-slab", "smallvec", "std", "thread_local", "tracing", "tracing-log", "tracing-serde"] }
|
||||
url = { version = "2", default-features = false, features = ["serde"] }
|
||||
uuid = { version = "1", features = ["private_getrandom", "rng", "std", "v4"] }
|
||||
zstd = { version = "0.11", features = ["arrays", "legacy", "zdict_builder"] }
|
||||
zstd-safe = { version = "5", default-features = false, features = ["arrays", "legacy", "std", "zdict_builder"] }
|
||||
|
@ -124,6 +126,7 @@ syn = { version = "1", features = ["clone-impls", "derive", "extra-traits", "ful
|
|||
tokio = { version = "1", features = ["bytes", "fs", "io-std", "io-util", "libc", "macros", "memchr", "mio", "net", "num_cpus", "once_cell", "parking_lot", "rt", "rt-multi-thread", "signal", "signal-hook-registry", "socket2", "sync", "time", "tokio-macros", "tracing"] }
|
||||
tokio-stream = { version = "0.1", features = ["fs", "net", "time"] }
|
||||
tonic-build = { version = "0.8", features = ["prost", "prost-build", "transport"] }
|
||||
url = { version = "2", default-features = false, features = ["serde"] }
|
||||
uuid = { version = "1", features = ["private_getrandom", "rng", "std", "v4"] }
|
||||
|
||||
[target.x86_64-unknown-linux-gnu.dependencies]
|
||||
|
@ -159,7 +162,7 @@ once_cell = { version = "1", default-features = false, features = ["unstable"] }
|
|||
scopeguard = { version = "1", features = ["use_std"] }
|
||||
tokio = { version = "1", default-features = false, features = ["winapi"] }
|
||||
tokio-util = { version = "0.7", default-features = false, features = ["io"] }
|
||||
winapi = { version = "0.3", default-features = false, features = ["activation", "basetsd", "combaseapi", "consoleapi", "errhandlingapi", "fileapi", "handleapi", "impl-debug", "impl-default", "knownfolders", "libloaderapi", "minwinbase", "minwindef", "namedpipeapi", "ntsecapi", "ntstatus", "objbase", "processenv", "roapi", "shellapi", "shlobj", "std", "stringapiset", "synchapi", "timezoneapi", "winbase", "wincon", "winerror", "winnt", "winreg", "winstring", "winuser", "ws2ipdef", "ws2tcpip", "wtypesbase"] }
|
||||
winapi = { version = "0.3", default-features = false, features = ["activation", "basetsd", "combaseapi", "consoleapi", "errhandlingapi", "fileapi", "handleapi", "impl-debug", "impl-default", "knownfolders", "libloaderapi", "minwinbase", "minwindef", "namedpipeapi", "ntsecapi", "ntstatus", "objbase", "processenv", "roapi", "shellapi", "shlobj", "std", "stringapiset", "synchapi", "threadpoolapiset", "timezoneapi", "winbase", "wincon", "winerror", "winnt", "winreg", "winstring", "winuser", "ws2ipdef", "ws2tcpip", "wtypesbase"] }
|
||||
windows-sys = { version = "0.36", features = ["Win32", "Win32_Foundation", "Win32_Networking", "Win32_Networking_WinSock", "Win32_Security", "Win32_Storage", "Win32_Storage_FileSystem", "Win32_System", "Win32_System_IO", "Win32_System_LibraryLoader", "Win32_System_Pipes", "Win32_System_SystemServices", "Win32_System_WindowsProgramming"] }
|
||||
|
||||
[target.x86_64-pc-windows-msvc.build-dependencies]
|
||||
|
@ -167,7 +170,7 @@ getrandom = { version = "0.2", default-features = false, features = ["std"] }
|
|||
once_cell = { version = "1", default-features = false, features = ["unstable"] }
|
||||
scopeguard = { version = "1", features = ["use_std"] }
|
||||
tokio = { version = "1", default-features = false, features = ["winapi"] }
|
||||
winapi = { version = "0.3", default-features = false, features = ["activation", "basetsd", "combaseapi", "consoleapi", "errhandlingapi", "fileapi", "handleapi", "impl-debug", "impl-default", "knownfolders", "libloaderapi", "minwinbase", "minwindef", "namedpipeapi", "ntsecapi", "ntstatus", "objbase", "processenv", "roapi", "shellapi", "shlobj", "std", "stringapiset", "synchapi", "timezoneapi", "winbase", "wincon", "winerror", "winnt", "winreg", "winstring", "winuser", "ws2ipdef", "ws2tcpip", "wtypesbase"] }
|
||||
winapi = { version = "0.3", default-features = false, features = ["activation", "basetsd", "combaseapi", "consoleapi", "errhandlingapi", "fileapi", "handleapi", "impl-debug", "impl-default", "knownfolders", "libloaderapi", "minwinbase", "minwindef", "namedpipeapi", "ntsecapi", "ntstatus", "objbase", "processenv", "roapi", "shellapi", "shlobj", "std", "stringapiset", "synchapi", "threadpoolapiset", "timezoneapi", "winbase", "wincon", "winerror", "winnt", "winreg", "winstring", "winuser", "ws2ipdef", "ws2tcpip", "wtypesbase"] }
|
||||
windows-sys = { version = "0.36", features = ["Win32", "Win32_Foundation", "Win32_Networking", "Win32_Networking_WinSock", "Win32_Security", "Win32_Storage", "Win32_Storage_FileSystem", "Win32_System", "Win32_System_IO", "Win32_System_LibraryLoader", "Win32_System_Pipes", "Win32_System_SystemServices", "Win32_System_WindowsProgramming"] }
|
||||
|
||||
### END HAKARI SECTION
|
||||
|
|
Loading…
Reference in New Issue