You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1017 B
42 lines
1017 B
[package]
|
|
name = "gitig"
|
|
version = "0.2.2"
|
|
authors = ["Marcel Schneider <gitig@webschneider.org>"]
|
|
description = "A cli utility to manage gitignore files easily"
|
|
edition = "2018"
|
|
license = "MIT"
|
|
keywords = ["git", "gitignore", "cli"]
|
|
categories = ["command-line-utilities", "development-tools", "filesystem"]
|
|
repository = "https://git.schneider-hosting.de/schneider/gitig"
|
|
exclude = [
|
|
".drone.yml",
|
|
".editorconfig",
|
|
"clippy.toml",
|
|
"justfile",
|
|
"release.py",
|
|
"rustfmt.toml"
|
|
]
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
stderrlog = "0.4"
|
|
structopt = "0.3"
|
|
reqwest = { version = "0.10", features = ["blocking", "json"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
directories = "2.0"
|
|
|
|
[dependencies.error-chain]
|
|
version = "0.12"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|
|
#default-features = false # disable pulling in backtrace
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = "z"
|
|
|
|
# Uncomment to sacrifice Drop-on-panic cleanup for 20K space saving
|
|
#panic = 'abort'
|