generated from EmbarkStudios/opensource-template
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
64 lines (59 loc) · 1.78 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "tame-gcs"
version = "0.13.0"
authors = [
"Embark <opensource@embark-studios.com>",
"Jake Shadle <jake.shadle@embark-studios.com>",
]
edition = "2021"
description = "A small library with a limited set of Google Cloud Storage operations"
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/tame-gcs"
homepage = "https://github.com/EmbarkStudios/tame-gcs"
repository = "https://github.com/EmbarkStudios/tame-gcs"
keywords = ["gcs", "tame", "sans-io", "storage", "gcp"]
categories = ["database"]
readme = "README.md"
exclude = [
# End users don't want the JSON schemas
"src/v1/schema.json",
]
[badges]
maintenance = { status = "actively-developed" }
[features]
default = ["v1"]
# GCS JSON API v1 - Currently the only version of the API
v1 = []
# Enable this feature if you want to create signed URL's without
# needing to implement the signing and digest yourself
signing = ["ring"]
# Enable AsyncRead trait for multipart upload.
async-multipart = ["futures-util", "pin-utils"]
[lib]
doctest = false
[dependencies]
data-encoding = "2.4"
# Follows version used by http
bytes = "1.0"
futures-util = { version = "0.3", optional = true, features = ["io"] }
http = "1.1"
percent-encoding = "2.1"
pin-utils = { version = "0.1.0", optional = true }
# Keep aligned with rustls
ring = { version = "0.17", optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_urlencoded = "0.7"
thiserror = "1.0"
time = { version = "0.3", features = ["parsing"] }
url = "2.2"
[dev-dependencies]
# Diff view of test failures
difference = "2.0"
futures = "0.3"
futures-test = "0.3"
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls",
] }
time = { version = "0.3", features = ["macros"] }
tokio = { version = "1.0", features = ["macros"] }