-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
53 lines (49 loc) · 1.11 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
[package]
name = "github-backup"
version = "3.0.0"
edition = "2021"
[dependencies]
async-stream = "0.3.6"
async-trait = "0.1.85"
chrono = { version = "0.4.39", features = ["serde"] }
clap = { version = "4.5.27", features = ["derive", "string"] }
croner = "2.1.0"
ctrlc = "3.4.5"
futures = "0.3.31"
gix = { version = "0.70.0", features = [
"blocking-http-transport-reqwest-rust-tls",
] }
human-errors = "0.1.5"
log = "0.4.25"
parse_link_header = "0.4.0"
pin-project = "1.1.8"
reqwest = { version = "0.12.9", default-features = false, features = [
"brotli",
"charset",
"http2",
"json",
"rustls-tls",
] }
rstest = "0.24.0"
serde = { version = "1.0.217", features = ["derive", "alloc"] }
serde_json = "1.0.137"
serde_yaml = "0.9.34"
sha2 = "0.10.8"
tokio = { version = "1.43.0", features = [
"macros",
"rt",
"rt-multi-thread",
"fs",
] }
tokio-stream = "0.1.17"
tracing-batteries = { git = "https://github.com/sierrasoftworks/tracing-batteries-rs.git" }
unicase = "2.8.1"
[dev-dependencies]
tempfile = "3.15.0"
rstest = "0.24.0"
[features]
default = []
pure_tests = []
[profile.release]
debug = false
strip = "debuginfo"