-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (50 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
54 lines (50 loc) · 1.13 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "github-backup"
version = "3.0.0"
edition = "2021"
[dependencies]
async-stream = "0.3.6"
async-trait = "0.1.88"
chrono = { version = "0.4.40", features = ["serde"] }
clap = { version = "4.5.37", features = ["derive", "string"] }
croner = "2.1.0"
ctrlc = "3.4.6"
futures = "0.3.31"
gix = { version = "0.71.0", features = [
"blocking-http-transport-reqwest-rust-tls",
] }
human-errors = "0.1.5"
log = "0.4.27"
parse_link_header = "0.4.0"
pin-project = "1.1.10"
reqwest = { version = "0.12.9", default-features = false, features = [
"brotli",
"charset",
"http2",
"json",
"rustls-tls",
] }
rstest = "0.25.0"
serde = { version = "1.0.219", features = ["derive", "alloc"] }
serde_json = "1.0.140"
serde_yaml = "0.9.34"
sha2 = "0.10.8"
tokio = { version = "1.44.2", 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]
http = "1.3.1"
tempfile = "3.19.1"
rstest = "0.25.0"
[features]
default = []
pure_tests = []
[profile.release]
debug = false
strip = "debuginfo"