Skip to content

Commit

Permalink
Bump dependencies and update versions in Cargo.toml files
Browse files Browse the repository at this point in the history
  • Loading branch information
AsafMah committed Aug 18, 2024
1 parent e1dca0a commit 544623f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
16 changes: 8 additions & 8 deletions azure-kusto-data/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
Expand All @@ -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"
Expand Down
10 changes: 5 additions & 5 deletions azure-kusto-ingest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[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

[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"
Expand Down

0 comments on commit 544623f

Please sign in to comment.