gitignore/crates/gitignore_inner/Cargo.toml

24 lines
782 B
TOML
Raw Normal View History

2022-10-20 21:48:47 +02:00
[package]
2022-10-21 00:45:57 +02:00
name = "gitignore_inner"
2022-10-20 21:48:47 +02:00
version = "0.1.0"
edition = "2021"
2022-10-21 00:55:29 +02:00
authors = ["Kasper J. Hermansen <contact@kjuulh.io>"]
license = "MIT"
2022-10-21 00:56:13 +02:00
readme = "../../README.md"
2022-10-21 00:55:29 +02:00
keywords = ["git", "ignore", "clap", "interactive"]
repository = "https://github.com/kjuulh/gitignore"
documentation = "https://docs.rs/gitignore"
description = """
gitignore_inner is the internal module for cargo
"""
2022-10-21 01:00:09 +02:00
categories = ["command-line-interface"]
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]
2023-02-28 15:27:39 +01:00
clap = { version = "4.1.8", features = ["env", "unicode", "string"] }
2023-02-15 18:03:22 +01:00
console = "0.15.5"
eyre = "0.6.8"
2022-10-20 23:43:33 +02:00
tracing = { version = "0.1.37", features = ["log"] }
tracing-subscriber = { version = "0.3.16", features = ["local-time", "env-filter"] }