-
Notifications
You must be signed in to change notification settings - Fork 342
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (49 loc) · 1.46 KB
/
Cargo.toml
File metadata and controls
54 lines (49 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "azure_storage_blob"
version = "0.11.0"
description = "Microsoft Azure Blob Storage client library for Rust"
readme = "README.md"
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
homepage = "https://github.com/azure/azure-sdk-for-rust"
documentation = "https://docs.rs/azure_storage_blob"
keywords = ["sdk", "cloud", "blobs"]
categories = ["api-bindings"]
[features]
default = ["azure_core/default"]
[dependencies]
async-stream.workspace = true
async-trait.workspace = true
azure_core = { workspace = true, features = ["xml"] }
bytes.workspace = true
futures.workspace = true
percent-encoding.workspace = true
pin-project.workspace = true
serde.workspace = true
serde_json.workspace = true
time.workspace = true
tokio = { workspace = true, features = ["rt", "sync"] }
[lints]
workspace = true
[dev-dependencies]
azure_core_opentelemetry.workspace = true
azure_core_test = { workspace = true, features = [
"tracing",
] }
azure_identity.workspace = true
azure_storage_blob_test.path = "../azure_storage_blob_test"
futures.workspace = true
opentelemetry.workspace = true
opentelemetry-stdout.workspace = true
opentelemetry_sdk.workspace = true
rand.workspace = true
tokio = { workspace = true, features = ["macros"] }
tracing.workspace = true
tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] }
[[bench]]
name = "perf"
path = "perf/perf_tests.rs"
harness = false