gitignore/Cargo.toml

24 lines
594 B
TOML
Raw Normal View History

2022-10-21 00:45:57 +02:00
[package]
name = "gitignore"
version = "0.1.0"
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 = """
gitignore is a tool for easily adding patterns to gitignore and cleaning up afterwards
"""
categories = ["git-tools"]
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"}