-
Notifications
You must be signed in to change notification settings - Fork 248
/
Copy pathCargo.toml
40 lines (34 loc) · 920 Bytes
/
Cargo.toml
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
[package]
name = "smithy-http"
version = "0.0.1"
authors = ["rcoh@amazon.com"]
edition = "2018"
license = "Apache-2.0"
[features]
bytestream-util = ["tokio/fs", "tokio-util/io"]
default = ["bytestream-util"]
[dependencies]
smithy-types = { path = "../smithy-types" }
bytes = "1"
http-body = "0.4.0"
http = "0.2.3"
thiserror = "1"
pin-project = "1"
percent-encoding = "2.1.0"
tracing = "0.1.24"
# We are using hyper for our streaming body implementation, but this is an internal detail.
hyper = "0.14.5"
# ByteStream internals
bytes-utils = "0.1.1"
futures-core = "0.3.14"
tokio = { version = "1.6", optional = true }
tokio-util = { version = "0.6", optional = true}
[dev-dependencies]
proptest = "1"
base64 = "0.13.0"
tokio = {version = "1.6", features = ["macros", "rt", "fs", "io-util"]}
tokio-stream = "0.1.5"
tempfile = "3.2.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]