generated from EmbarkStudios/opensource-template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
47 lines (46 loc) · 1.31 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
[package]
name = "gsutil"
description = "Incomplete replacement for the official gsutil"
version = "0.2.2"
authors = [
"Embark <opensource@embark-studios.com>",
"Jake Shadle <jake.shadle@embark-studios.com>",
]
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"]
rust-version = "1.70.0"
[dependencies]
# Colors!
nu-ansi-term = "0.50"
# Friendly error handling
anyhow = "1.0"
# Buffer helpers
bytes = "1.0"
# Argument parsing
clap = { version = "4.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.12", default-features = false, features = [
"rustls-tls",
"stream",
] }
# JSON serialization
serde_json = "1.0"
# GCS requests
tame-gcs = { version = "0.13", features = ["signing"] }
# Authentication
tame-oauth = { version = "0.10", 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"