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 (37 loc) · 1.2 KB
/
Cargo.toml
File metadata and controls
41 lines (37 loc) · 1.2 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
[package]
name = "aws-smithy-checksums"
version = "0.63.10"
authors = [
"AWS Rust SDK Team <aws-sdk-rust@amazon.com>",
"Zelda Hessler <zhessler@amazon.com>",
]
description = "Checksum calculation and verification callbacks"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/smithy-lang/smithy-rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aws-smithy-http = { path = "../aws-smithy-http" }
aws-smithy-types = { path = "../aws-smithy-types" }
bytes = "1.10.0"
# FIXME(https://github.com/smithy-lang/smithy-rs/pull/4257): pin to <1.4.0 until https://github.com/awesomized/crc-fast-rust/issues/14 is resolved
crc-fast = "~1.3.0"
hex = "0.4.3"
http = "0.2.9"
http-body = "0.4.5"
md-5 = "0.10"
pin-project-lite = "0.2.14"
sha1 = "0.10"
sha2 = "0.10"
tracing = "0.1.40"
[dev-dependencies]
bytes-utils = "0.1.2"
pretty_assertions = "1.3"
tokio = { version = "1.23.1", features = ["macros", "rt"] }
tracing-test = "0.2.1"
[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