-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
31 lines (29 loc) · 909 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "grits"
authors = ["[email protected]"]
description = """
A line-text processor that applies regular expressions with named captures to input lines
and transforms them using a template string. See the long help '--help' for further details and examples.
"""
version = "0.3.0"
edition = "2021"
readme = "README.md"
license = "MIT"
keywords = ["commandline", "cli", "grep", "ripgrep", "regex"]
categories = ["command-line-utilities", "development-tools", "development-tools::debugging"]
rust-version = "1.83"
exclude=["/images"]
repository="https://github.com/solidiquis/grits"
[dependencies]
anyhow = "1.0.94"
clap = { version = "4.5.23", features = ["cargo", "derive"] }
clap_complete = "4.5.38"
crossterm = "0.28.1"
env_logger = "0.11.5"
indoc = "2.0.5"
log = "0.4.22"
regex = "1.11.1"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"