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]
|
2024-02-08 19:25:53 +01:00
|
|
|
clap = { version = "4.5.0", features = ["env", "unicode", "string"] }
|
2024-01-09 17:57:55 +01:00
|
|
|
console = "0.15.8"
|
2024-01-31 17:55:09 +01:00
|
|
|
eyre = "0.6.12"
|
2023-10-19 03:41:10 +02:00
|
|
|
tracing = { version = "0.1.40", features = ["log"] }
|
2023-11-13 18:42:55 +01:00
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["local-time", "env-filter"] }
|