diff --git a/sdk/core/Cargo.toml b/sdk/core/Cargo.toml index b8f82aa3393..44d1de66152 100644 --- a/sdk/core/Cargo.toml +++ b/sdk/core/Cargo.toml @@ -16,7 +16,7 @@ edition = "2021" async-trait = "0.1" base64 = "0.13" bytes = "1.0" -time = { version = "0.3", features = ["serde-well-known", "macros", "local-offset"] } +time = { version = "0.3.10", features = ["serde-well-known", "macros", "local-offset"] } dyn-clone = "1.0" futures = "0.3" http-types = { version = "2.12", default-features = false } diff --git a/sdk/data_cosmos/Cargo.toml b/sdk/data_cosmos/Cargo.toml index 64aae654bba..bfda7d59b02 100644 --- a/sdk/data_cosmos/Cargo.toml +++ b/sdk/data_cosmos/Cargo.toml @@ -18,7 +18,7 @@ edition = "2021" async-trait = "0.1" azure_core = { path = "../core", version = "0.3" } base64 = "0.13" -time = "0.3" +time = "0.3.10" futures = "0.3" log = "0.4" serde = { version = "1.0", features = ["derive"] } diff --git a/sdk/data_tables/Cargo.toml b/sdk/data_tables/Cargo.toml index 42c182325d5..d8d3b49d2bd 100644 --- a/sdk/data_tables/Cargo.toml +++ b/sdk/data_tables/Cargo.toml @@ -16,7 +16,7 @@ edition = "2021" azure_core = { path = "../core", version = "0.3" } azure_storage = { path = "../storage", version = "0.4", default-features = false } bytes = "1.0" -time = { version = "0.3", features = ["serde"] } +time = { version = "0.3.10", features = ["serde"] } futures = "0.3" log = "0.4" serde = { version = "1.0" } diff --git a/sdk/device_update/Cargo.toml b/sdk/device_update/Cargo.toml index 44e2579c394..c3b3accd025 100644 --- a/sdk/device_update/Cargo.toml +++ b/sdk/device_update/Cargo.toml @@ -15,7 +15,7 @@ edition = "2018" [dependencies] base64 = "0.13" reqwest = { version = "0.11", features = ["json"], default_features = false } -time = { version = "0.3", features = ["serde"] } +time = { version = "0.3.10", features = ["serde"] } const_format = "0.2" serde_json = "1.0" url = "2.2" diff --git a/sdk/identity/Cargo.toml b/sdk/identity/Cargo.toml index 13ac8ba2f3f..047fd0feed4 100644 --- a/sdk/identity/Cargo.toml +++ b/sdk/identity/Cargo.toml @@ -19,7 +19,7 @@ oauth2 = { version = "4.0.0", default-features = false } url = "2.2" futures = "0.3" serde = { version = "1.0", features = ["derive"] } -time = { version = "0.3", features = ["serde", "macros", "local-offset"] } +time = { version = "0.3.10", features = ["serde", "macros", "local-offset"] } serde_json = "1.0" log = "0.4" async-timer = "1.0.0-beta.7" diff --git a/sdk/iot_hub/Cargo.toml b/sdk/iot_hub/Cargo.toml index 3d3fa7ea277..718a0be91f9 100644 --- a/sdk/iot_hub/Cargo.toml +++ b/sdk/iot_hub/Cargo.toml @@ -11,7 +11,7 @@ async-trait = "0.1" azure_core = { path = "../core", version = "0.3", default_features = false } base64 = "0.13" bytes = "1.0" -time = "0.3" +time = "0.3.10" hmac = "0.12" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/sdk/messaging_eventgrid/Cargo.toml b/sdk/messaging_eventgrid/Cargo.toml index e03050b9a5d..e2185bd4148 100644 --- a/sdk/messaging_eventgrid/Cargo.toml +++ b/sdk/messaging_eventgrid/Cargo.toml @@ -14,7 +14,7 @@ edition = "2021" [dependencies] azure_core = { path = "../core", version = "0.3", default_features = false } -time = { version = "0.3", features = ["serde", "macros"] } +time = { version = "0.3.10", features = ["serde", "macros"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" uuid = { version = "1.0", features = ["v4"] } diff --git a/sdk/messaging_servicebus/Cargo.toml b/sdk/messaging_servicebus/Cargo.toml index bf7f9acd510..6a14dd229dc 100644 --- a/sdk/messaging_servicebus/Cargo.toml +++ b/sdk/messaging_servicebus/Cargo.toml @@ -17,7 +17,7 @@ edition = "2021" [dependencies] azure_core = { path = "../core", version = "0.3" } base64 = "0.13" -time = "0.3" +time = "0.3.10" log = "0.4" url = "2.2" hmac = "0.12" diff --git a/sdk/security_keyvault/Cargo.toml b/sdk/security_keyvault/Cargo.toml index b2a1ebc6023..313b372dc85 100644 --- a/sdk/security_keyvault/Cargo.toml +++ b/sdk/security_keyvault/Cargo.toml @@ -16,7 +16,7 @@ edition = "2021" futures = "0.3" base64 = "0.13" reqwest = { version = "0.11", features = ["json"] } -time = { version = "0.3", features = ["serde"] } +time = { version = "0.3.10", features = ["serde"] } const_format = "0.2.13" serde_json = "1.0" url = "2.2" diff --git a/sdk/storage/Cargo.toml b/sdk/storage/Cargo.toml index 5bfa143f6cf..7246d995d6c 100644 --- a/sdk/storage/Cargo.toml +++ b/sdk/storage/Cargo.toml @@ -16,7 +16,7 @@ edition = "2021" async-trait = "0.1" azure_core = { path = "../core", version = "0.3" } base64 = "0.13" -time = { version = "0.3", features = ["serde-well-known"] } +time = { version = "0.3.10", features = ["serde-well-known"] } futures = "0.3" log = "0.4" serde = "1.0" diff --git a/sdk/storage_blobs/Cargo.toml b/sdk/storage_blobs/Cargo.toml index 9db49269161..36f54bf5a1e 100644 --- a/sdk/storage_blobs/Cargo.toml +++ b/sdk/storage_blobs/Cargo.toml @@ -17,7 +17,7 @@ azure_core = { path = "../core", version = "0.3" } azure_storage = { path = "../storage", version = "0.4", default-features = false } base64 = "0.13" bytes = "1.0" -time = { version = "0.3", features = ["serde"] } +time = { version = "0.3.10", features = ["serde"] } futures = "0.3" log = "0.4" md5 = "0.7" diff --git a/sdk/storage_datalake/Cargo.toml b/sdk/storage_datalake/Cargo.toml index bd7977e3ad4..d9d29fe3426 100644 --- a/sdk/storage_datalake/Cargo.toml +++ b/sdk/storage_datalake/Cargo.toml @@ -19,7 +19,7 @@ azure_identity = { path = "../identity", default_features = false } azure_storage = { path = "../storage", version = "0.4", default_features = false } base64 = "0.13" bytes = "1.0" -time = { version = "0.3", features = ["serde"] } +time = { version = "0.3.10", features = ["serde"] } futures = "0.3" log = "0.4" serde = { version = "1.0" } diff --git a/sdk/storage_queues/Cargo.toml b/sdk/storage_queues/Cargo.toml index 1a5672e1fe6..03c6dfd9092 100644 --- a/sdk/storage_queues/Cargo.toml +++ b/sdk/storage_queues/Cargo.toml @@ -15,7 +15,7 @@ edition = "2021" [dependencies] azure_core = { path = "../core", version = "0.3", default-features=false } azure_storage = { path = "../storage", version = "0.4", default-features=false } -time = { version = "0.3", features = ["serde"] } +time = { version = "0.3.10", features = ["serde"] } futures = "0.3" log = "0.4" serde = { version = "1.0" }