-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 981 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (28 loc) · 981 Bytes
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
[package]
name = "gitkeep"
version = "0.2.0"
description = "High-performance GitHub archival tool"
edition = "2024"
license = "MIT"
repository = "https://github.com/trypsynth/gitkeep"
keywords = ["github", "archive", "git", "sync"]
categories = ["command-line-utilities", "development-tools"]
rust-version = "1.91.1"
[dependencies]
anyhow = "1.0.104"
chrono = { version = "0.4.45", features = ["serde"] }
clap = { version = "4.6.6", features = ["derive"] }
crossterm = "0.29.0"
dirs = "6.0.0"
inquire = { version = "0.9.4", default-features = false, features = ["macros", "crossterm"] }
octocrab = { version = "0.54.1", default-features = false, features = ["default-client", "rustls", "rustls-ring", "retry", "timeout", "jwt-rust-crypto"] }
open = "5.4.1"
serde = { version = "1.0.229", features = ["derive"] }
tokio = { version = "1.53.1", features = ["rt", "macros"] }
toml = "1.1.4"
[profile.release]
strip = true
opt-level = "z"
lto = true
panic = "abort"
codegen-units = 1