gitignore/crates/kignore/Cargo.toml

28 lines
847 B
TOML
Raw Normal View History

2022-10-20 21:48:47 +02:00
[package]
name = "kignore"
version.workspace = true
2022-10-21 00:55:29 +02:00
authors = ["Kasper J. Hermansen <contact@kjuulh.io>"]
license = "MIT"
readme = "../../README.md"
2022-10-21 00:55:29 +02:00
keywords = ["git", "ignore", "clap", "interactive"]
repository = "https://git.front.kjuulh.io/kjuulh/gitignore"
documentation = "https://docs.rs/kignore"
2022-10-21 00:55:29 +02:00
description = """
kignore is a tool for easily adding patterns to .gitignore and cleaning up afterwards
2022-10-21 00:55:29 +02:00
"""
2022-10-21 01:00:09 +02:00
categories = ["command-line-interface"]
edition = "2021"
2022-10-20 21:48:47 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-03-25 22:52:10 +01:00
clap = { version = "4.5.4", features = ["env", "unicode", "string"] }
2024-01-09 17:57:55 +01:00
console = "0.15.8"
dirs = "5.0.1"
2024-01-31 17:55:09 +01:00
eyre = "0.6.12"
2023-10-19 03:41:10 +02:00
tracing = { version = "0.1.40", features = ["log"] }
tracing-subscriber = { version = "0.3.18", features = [
"local-time",
"env-filter",
] }