-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (44 loc) · 1.24 KB
/
Copy pathCargo.toml
File metadata and controls
49 lines (44 loc) · 1.24 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "cmdy"
version = "0.2.3"
edition = "2024"
authors = ["Mark Jaquith <mark@jaquith.me>"]
license = "MIT"
repository = "https://github.com/markjaquith/cmdy"
description = "Lists and runs predefined command snippets"
readme = "README.md"
keywords = ["cli", "commands", "runner"]
categories = ["command-line-utilities"]
[package.metadata.alias]
fix = "clippy --fix && fmt"
[package.metadata.release]
push = true
publish = true
consolidate-commits = false
tag-name = "v{{version}}"
pre-release-commit-message = "chore: release {{version}}"
[[bin]]
name = "cmdy"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.102"
clap = { version = "4.6.1", features = ["derive"] }
regex = "1.12.3"
serde = { version = "1.0.228", features = ["derive"] }
shell-escape = "0.1.5"
tempfile = "3.27.0"
toml = "1.1.2"
arboard = "3"
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
# Allow some pedantic lints that are too strict
module_name_repetitions = "allow"
must_use_candidate = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
multiple_crate_versions = "allow"
ref_option = "allow"
unnecessary_wraps = "allow"