-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (50 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
54 lines (50 loc) · 1.22 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 = "2024"
[dependencies]
async-stream = "0.3.6"
async-trait = "0.1.89"
chrono = { version = "0.4.44", features = ["serde"] }
clap = { version = "4.6.1", features = ["derive", "string"] }
croner = "3.0.1"
ctrlc = "3.5.2"
gix = { version = "0.80.0", features = [
"blocking-http-transport-reqwest-rust-tls",
] }
human-errors = { version = "0.2.3", features = ["pretty"] }
parse_link_header = "0.4.1"
pin-project = "1.1.11"
reqwest = { version = "0.12.28", default-features = false, features = [
"brotli",
"charset",
"http2",
"json",
"rustls-tls",
] }
rstest = "0.26.1"
serde = { version = "1.0.228", features = ["derive", "alloc"] }
serde_json = "1.0.149"
serde_yaml = "0.9.34"
sha2 = "0.11.0"
tokio = { version = "1.50.0", features = [
"macros",
"rt",
"rt-multi-thread",
"fs",
] }
tokio-stream = "0.1.18"
tracing = "0.1.44"
tracing-batteries = { git = "https://github.com/sierrasoftworks/tracing-batteries-rs.git", features = ["medama", "opentelemetry", "sentry"] }
unicase = "2.9.0"
[dev-dependencies]
http = "1.4.0"
tempfile = "3.25.0"
rstest = "0.26.1"
wiremock = "0.6.2"
[features]
default = []
pure_tests = []
[profile.release]
debug = false
strip = "debuginfo"