Skip to content

Commit d1aef23

Browse files
authored
move some dependencies to root Cargo.toml so update-cratenames.rs finds them
1 parent ee126aa commit d1aef23

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,10 @@ async-trait = "0.1"
9393
base64 = "0.22"
9494
bytes = "1.0"
9595
cargo_metadata = "0.18.1"
96+
cbindgen = "0.29.0"
9697
clap = { version = "4.5.45", features = ["derive"] }
9798
criterion = { version = "0.5", features = ["async_tokio"] }
99+
dotenvy = "0.15.7"
98100
dyn-clone = "1.0"
99101
fe2o3-amqp = { version = "0.14", features = ["uuid"] }
100102
fe2o3-amqp-ext = { version = "0.14" }
@@ -146,6 +148,10 @@ tracing = "0.1.40"
146148
tracing-subscriber = "0.3"
147149
url = "2.2"
148150
uuid = { version = "1.18", features = ["v4"] }
151+
ureq = { version = "3", default-features = false, features = [
152+
"gzip",
153+
"native-tls",
154+
] }
149155
wasm-bindgen-futures = "0.4"
150156
wasm-bindgen-test = "0.3"
151157
zerofrom = "0.1.5"

sdk/core/azure_core/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,7 @@ reqwest.workspace = true
4949
thiserror.workspace = true
5050
tokio.workspace = true
5151
tracing-subscriber.workspace = true
52-
ureq = { version = "3", default-features = false, features = [
53-
"gzip",
54-
"native-tls",
55-
] }
52+
ureq.workspace = true
5653

5754
[features]
5855
default = [

sdk/core/azure_core_test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ async-trait.workspace = true
2323
azure_core = { workspace = true, features = ["test"] }
2424
azure_core_test_macros.workspace = true
2525
azure_identity.workspace = true
26-
dotenvy = "0.15.7"
26+
dotenvy.workspace = true
2727
futures.workspace = true
2828
rand.workspace = true
2929
rand_chacha.workspace = true

sdk/cosmos/azure_data_cosmos_native/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ crate-type = ["cdylib", "staticlib"]
1717
azure_data_cosmos = { path = "../azure_data_cosmos", features = ["c"] }
1818

1919
[build-dependencies]
20-
cbindgen = "0.29.0"
20+
cbindgen.workspace = true
2121

2222
[lints]
2323
workspace = true

0 commit comments

Comments
 (0)