-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (48 loc) · 1.09 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
[package]
name = "github-backup"
version = "3.0.0"
edition = "2021"
[dependencies]
async-stream = "0.3.6"
async-trait = "0.1.83"
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.5.21", features = ["derive", "string"] }
croner = "2.0.8"
ctrlc = "3.4.5"
gix = { version = "0.67.0", features = [
"blocking-http-transport-reqwest-rust-tls",
] }
human-errors = "0.1.3"
log = "0.4.22"
parse_link_header = "0.4.0"
pin-project = "1.1.7"
reqwest = { version = "0.12.9", default-features = false, features = [
"brotli",
"charset",
"http2",
"json",
"rustls-tls",
] }
rstest = "0.23.0"
serde = { version = "1.0.215", features = ["derive", "alloc"] }
serde_json = "1.0.133"
serde_yaml = "0.9.34"
sha2 = "0.10.8"
tokio = { version = "1.41.1", features = [
"macros",
"rt",
"rt-multi-thread",
"fs",
] }
tokio-stream = "0.1.16"
tracing-batteries = { git = "https://github.com/sierrasoftworks/tracing-batteries-rs.git" }
unicase = "2.8.0"
[dev-dependencies]
tempfile = "3.14.0"
rstest = "0.23.0"
[features]
default = []
pure_tests = []
[profile.release]
debug = false
strip = "debuginfo"