gitignore/Cargo.toml
kjuulh 819bcc68c6
All checks were successful
continuous-integration/drone/push Build is passing
feat: add force
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-12-22 11:33:14 +01:00

22 lines
603 B
TOML

[package]
name = "kignore"
version = "0.1.2"
authors = ["Kasper J. Hermansen <contact@kjuulh.io>"]
license = "MIT"
readme = "README.md"
keywords = ["git", "ignore", "clap", "interactive"]
repository = "https://github.com/kjuulh/gitignore"
documentation = "https://docs.rs/gitignore"
description = """
kignore is a tool for easily adding patterns to .gitignore and cleaning up afterwards
"""
categories = ["command-line-interface"]
edition = "2021"
[workspace]
members = ["crates/gitignore_inner"]
[dependencies]
eyre = "0.6.12"
gitignore_inner = { path = "crates/gitignore_inner", version = "0.1.0" }