forked from EmbarkStudios/gsutil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (45 loc) · 1.28 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
[package]
name = "gsutil"
description = "Incomplete replacement for the official gsutil"
version = "0.1.3"
authors = [
"Embark <[email protected]>",
"Jake Shadle <[email protected]>",
]
edition = "2021"
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/gsutil"
homepage = "https://github.com/EmbarkStudios/gsutil"
repository = "https://github.com/EmbarkStudios/gsutil"
categories = ["command-line-utilities"]
keywords = ["gcs", "ci"]
[dependencies]
# Colors!
ansi_term = "0.12"
# Friendly error handling
anyhow = "1.0"
# Buffer helpers
bytes = "1.0"
# Argument parsing
clap = { version = "3.0", features = ["derive", "env"] }
# For futures helpers
futures-util = { version = "0.3", default-features = false }
# Human friendly byte sizes
number_prefix = "0.4"
# For HTTP requests
reqwest = { version = "0.11", default-features = false, features = [
"rustls-tls",
"stream",
] }
# JSON serialization
serde_json = "1.0"
# GCS requests
tame-gcs = { version = "0.11", features = ["signing"] }
# Authentication
tame-oauth = { version = "0.7", features = ["gcp"] }
# Timestamp formatting
time = { version = "0.3", features = ["formatting", "macros"] }
# Async runtime
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
# Url parsing
url = "2.2"