1
Fork 0
ci-images/images/gitea/Cargo.toml

27 lines
847 B
TOML

[package]
name = "gitea"
version = "0.1.2"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.2.0", features = ["cargo", "color", "unicode", "std", "derive"] }
color-eyre = "0.6.2"
reqwest = { version = "0.11.16", default-features = false, features = ["blocking", "json", "rustls-tls-native-roots"] }
serde_json = "1.0.95"
serde = { version = "1.0.159", features = ["derive"] }
time = { version = "0.3.20", features = ["formatting", "parsing", "serde"] }
url = { version = "2.3.1", features = ["serde"] }
cli-table = "0.4.7"
globwalk = "0.9.0"
[profile.release]
strip = "debuginfo"
lto = true
[profile.dev.package.backtrace]
opt-level = 3
[patch.crates-io]
color-eyre = { git = "https://github.com/sclu1034/color-eyre.git", branch = "fork" }