Centralize Event Hubs dependencies (#1784)
* Centralize Event Hubs dependencies Also fixes a few spelling issues while testing. * Always ignore cspell.json
This commit is contained in:
Родитель
2fba9d599f
Коммит
2b1c1f113b
|
@ -3,10 +3,15 @@
|
|||
"language": "en",
|
||||
"useGitignore": true,
|
||||
"ignorePaths": [
|
||||
"**/test-resources.bicep",
|
||||
"**/test-resources.json",
|
||||
".vscode/cspell.json",
|
||||
"NOTICE.txt",
|
||||
"eng/",
|
||||
"NOTICE.txt"
|
||||
"rust-toolchain.toml"
|
||||
],
|
||||
"words": [
|
||||
"amqp",
|
||||
"asyncoperation",
|
||||
"azsdk",
|
||||
"azurecli",
|
||||
|
@ -87,4 +92,4 @@
|
|||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -45,6 +45,7 @@ path = "sdk/storage"
|
|||
async-lock = "3.0"
|
||||
async-process = "2.0"
|
||||
async-std = { version = "1.12", features = ["attributes"] }
|
||||
async-stream = { version = "0.3.5" }
|
||||
async-trait = "0.1"
|
||||
base64 = "0.22"
|
||||
bytes = "1.0"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
bindgen
|
||||
newtype
|
||||
repr
|
||||
rustc
|
||||
rustls
|
||||
|
|
|
@ -25,10 +25,10 @@ url = { workspace = true }
|
|||
uuid = { workspace = true }
|
||||
futures = { workspace = true }
|
||||
async-std = { workspace = true }
|
||||
async-stream = { version = "0.3.5" }
|
||||
async-stream = { workspace = true }
|
||||
|
||||
[build-dependencies]
|
||||
rustc_version = "0.4"
|
||||
rustc_version = { workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] }
|
||||
|
|
|
@ -28,8 +28,8 @@ macro_rules! declare {
|
|||
|
||||
/// A pageable stream that yields items of type `T`
|
||||
///
|
||||
/// Internally uses the Azure specific continuation header to
|
||||
/// make repeated requests to Azure yielding a new page each time.
|
||||
/// Internally uses a specific continuation header to
|
||||
/// make repeated requests to the service yielding a new page each time.
|
||||
#[pin_project::pin_project]
|
||||
// This is to suppress the unused `project_ref` warning
|
||||
pub struct Pageable<T, E> {
|
||||
|
|
Загрузка…
Ссылка в новой задаче