gitignore/Cargo.toml

25 lines
654 B
TOML
Raw Normal View History

[workspace]
members = ["crates/gitignore_inner", "."]
[workspace.package]
version = "0.1.3"
2022-10-21 00:45:57 +02:00
[package]
2022-10-21 01:03:53 +02:00
name = "kignore"
version.workspace = true
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"
[dependencies]
2024-01-31 17:55:09 +01:00
eyre = "0.6.12"
gitignore_inner = { path = "crates/gitignore_inner", version = "0.1.0" }