-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 1.01 KB
/
Copy pathCargo.toml
File metadata and controls
37 lines (34 loc) · 1.01 KB
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
[package]
name = "nts"
version = "0.1.0"
edition = "2024"
[dependencies]
age = { version = "0.11", features = ["armor"] }
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
chrono = { version = "0.4", features = ["serde"] }
rand = "0.9"
directories = "6"
colored = "3"
anyhow = "1"
secrecy = "0.10"
shellexpand = "3"
rust-s3 = { version = "0.37", default-features = false, features = ["tokio-rustls-tls"] }
tokio = { version = "1", features = ["rt", "macros"] }
http = "1"
rpassword = "7"
ureq = "2"
sha2 = "0.10"
hex = "0.4"
[dev-dependencies]
tempfile = "3"
assert_cmd = "2"
predicates = "3"
proptest = "1.6"
[patch.crates-io]
# Temporary until rust-s3 releases quick-xml 0.41 support:
# https://github.com/durch/rust-s3/pull/468
rust-s3 = { git = "https://github.com/aznashwan/rust-s3", rev = "01b6ccb9babf858475163a4b9bcd7dea3d56fd00" }
aws-creds = { git = "https://github.com/aznashwan/rust-s3", rev = "01b6ccb9babf858475163a4b9bcd7dea3d56fd00" }