-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
35 lines (31 loc) · 850 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
32
33
34
35
# SPDX-FileCopyrightText: 2023 Christina Sørensen
# SPDX-FileContributor: Christina Sørensen
#
# SPDX-License-Identifier: AGPL-3.0-only
[package]
name = "fortune-kind"
description = "Fortune, but kind-a better"
authors = ["Christina Sørensen <christina@cafkafk.com>"]
categories = ["command-line-utilities"]
edition = "2021"
# Files to be excluded on `cargo publish`
exclude = [ "/oldtunes" ]
rust-version = "1.74.0"
readme = "README.md"
license = "GPL-3.0-only"
version = "0.1.13"
build = "build.rs"
[dependencies]
clap = { version = "4.5.1", features = ["cargo"] }
grep = "0.3.1"
grep-matcher = "0.1.7"
grep-regex = "0.1.12"
grep-searcher = "0.1.13"
rand = "0.8.5"
[dev-dependencies]
assert_cmd = "2.0.14"
tempfile = "3.10.1"
[build-dependencies]
clap = { version = "4.5.1", features = ["cargo"] }
clap_complete = "4"
clap_mangen = "0.2.20"