generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 237
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (35 loc) · 997 Bytes
/
Cargo.toml
File metadata and controls
41 lines (35 loc) · 997 Bytes
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
[package]
name = "aws-smithy-cbor"
version = "0.61.2"
authors = [
"AWS Rust SDK Team <aws-sdk-rust@amazon.com>",
"David Pérez <d@vidp.dev>",
]
description = "CBOR utilities for smithy-rs."
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/awslabs/smithy-rs"
[dependencies.minicbor]
version = "0.24.2"
features = [
# To write to a `Vec<u8>`: https://docs.rs/minicbor/latest/minicbor/encode/write/trait.Write.html#impl-Write-for-Vec%3Cu8%3E
"alloc",
# To support reading `f16` to accomodate fewer bytes transmitted that fit the value.
"half",
]
[dependencies]
aws-smithy-types = { path = "../aws-smithy-types" }
[dev-dependencies]
criterion = "0.5.1"
[[bench]]
name = "string"
harness = false
[[bench]]
name = "blob"
harness = false
[package.metadata.docs.rs]
all-features = true
targets = ["x86_64-unknown-linux-gnu"]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
rustdoc-args = ["--cfg", "docsrs"]
# End of docs.rs metadata