Skip to content
Open
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
175 changes: 169 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ members = [
"sdk/storage/azure_storage_common",
"sdk/storage/azure_storage_queue",
"sdk/storage/azure_storage_sas",
"sdk/storage/azure_storage_stress", "sdk/storage/azure_storage_stress_blob",
Comment thread
jaschrep-msft marked this conversation as resolved.
Outdated
]
exclude = [
"eng/scripts/",
Expand Down
26 changes: 26 additions & 0 deletions sdk/storage/azure_storage_stress/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[package]
name = "azure_storage_stress"
version = "0.1.0"
Comment thread
jaschrep-msft marked this conversation as resolved.
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true

[dependencies]
async-trait.workspace = true
azure_core = { path = "../../core/azure_core", version = "1.2.0-beta.1", features = ["xml"] }
azure_core_test = { path = "../../core/azure_core_test", features = ["tracing"] }
bytes.workspace = true
clap = { workspace = true, features = ["derive"] }
crc-fast = "1.9.0"
futures.workspace = true
log = "0.4.33"
pin-project.workspace = true
rand.workspace = true
serde.workspace = true
serde_json.workspace = true
tokio = { workspace = true, features = ["rt"] }

[lints]
workspace = true
Loading
Loading