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:
Heath Stewart 2024-08-29 15:36:25 -07:00 коммит произвёл GitHub
Родитель 2fba9d599f
Коммит 2b1c1f113b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
5 изменённых файлов: 13 добавлений и 6 удалений

9
.vscode/cspell.json поставляемый
Просмотреть файл

@ -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> {