2022-10-21 00:45:57 +02:00
|
|
|
[package]
|
2022-10-21 01:03:53 +02:00
|
|
|
name = "kignore"
|
2022-10-21 01:05:14 +02:00
|
|
|
version = "0.1.1"
|
2022-10-21 00:45:57 +02:00
|
|
|
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 = """
|
2022-10-21 01:03:53 +02:00
|
|
|
kignore is a tool for easily adding patterns to .gitignore and cleaning up afterwards
|
2022-10-21 00:45:57 +02:00
|
|
|
"""
|
2022-10-21 01:00:09 +02:00
|
|
|
categories = ["command-line-interface"]
|
2022-10-21 00:45:57 +02:00
|
|
|
edition = "2021"
|
|
|
|
|
2022-10-20 21:48:47 +02:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2022-10-21 00:45:57 +02:00
|
|
|
"crates/gitignore_inner"
|
2022-10-20 21:48:47 +02:00
|
|
|
]
|
2022-10-21 00:45:57 +02:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
eyre = "0.6.8"
|
|
|
|
gitignore_inner = {path = "crates/gitignore_inner", version = "0.1.0"}
|