forked from s3s-project/s3s
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 897 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 897 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
[package]
name = "s3s-aws"
version = "0.14.0-dev"
description = "S3 service adapter integrated with aws-sdk-s3"
readme = "../../README.md"
keywords = ["s3"]
categories = ["web-programming", "web-programming::http-server"]
edition.workspace = true
repository.workspace = true
license.workspace = true
rust-version.workspace = true
[lints]
workspace = true
[features]
minio = ["s3s/minio"]
[dependencies]
async-trait.workspace = true
aws-sdk-s3.workspace = true
aws-smithy-runtime-api = { workspace = true, features = ["client", "http-1x"] }
aws-smithy-types = { workspace = true, features = ["http-body-1-x"] }
aws-smithy-types-convert = { workspace = true, features = ["convert-time"] }
hyper.workspace = true
s3s = { version = "0.14.0-dev", path = "../s3s", default-features = false }
std-next.workspace = true
sync_wrapper = "1.0.2"
tracing.workspace = true
transform-stream.workspace = true