diff --git a/azure-kusto-data/Cargo.toml b/azure-kusto-data/Cargo.toml index 0f89f4c..d496cf3 100644 --- a/azure-kusto-data/Cargo.toml +++ b/azure-kusto-data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "azure-kusto-data" -version = "0.1.0" +version = "0.1.1" description = "Rust wrappers around Microsoft Azure REST APIs - Azure Data Explorer" readme = "README.md" license = "MIT" @@ -13,13 +13,13 @@ keywords = ["sdk", "azure", "kusto", "azure-data-explorer"] categories = ["api-bindings"] [dependencies] -arrow-array = { version = "50.0.0", optional = true } -arrow-schema = { version = "50.0.0", optional = true } -azure_core = { version = "0.19.0", features = [ +arrow-array = { version = "52.2.0", optional = true } +arrow-schema = { version = "52.2.0", optional = true } +azure_core = { version = "0.20.0", features = [ "enable_reqwest", "enable_reqwest_gzip", ] } -azure_identity = "0.19.0" +azure_identity = "0.20.0" async-trait = "0.1.64" async-convert = "1.0.0" bytes = "1.4" @@ -37,13 +37,13 @@ time = { version = "0.3", features = [ "macros", "serde-well-known", ] } -derive_builder = "0.12" +derive_builder = "0.20.0" once_cell = "1" [dev-dependencies] -arrow = { version = "50.0.0", features = ["prettyprint"] } +arrow = { version = "52.2.0", features = ["prettyprint"] } dotenv = "0.15.0" -env_logger = "0.10.0" +env_logger = "0.11.5" tokio = { version = "1.25.0", features = ["macros", "rt-multi-thread"] } oauth2 = "4.3.0" criterion = "0.5" diff --git a/azure-kusto-ingest/Cargo.toml b/azure-kusto-ingest/Cargo.toml index e322d71..f813aa2 100644 --- a/azure-kusto-ingest/Cargo.toml +++ b/azure-kusto-ingest/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "azure-kusto-ingest" -version = "0.1.0" +version = "0.1.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -8,10 +8,10 @@ edition = "2021" [dependencies] azure-kusto-data = { path = "../azure-kusto-data", default-features = false } # Azure SDK for Rust crates versions must be kept in sync -azure_core = "0.19" -azure_storage = "0.19" -azure_storage_blobs = "0.19" -azure_storage_queues = "0.19" +azure_core = "0.20.0" +azure_storage = "0.20.0" +azure_storage_blobs = "0.20.0" +azure_storage_queues = "0.20.0" async-lock = "3" rand = "0.8"