-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (40 loc) · 1.17 KB
/
Copy pathCargo.toml
File metadata and controls
45 lines (40 loc) · 1.17 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
[package]
name = "projj"
version = "0.0.0-dev"
edition = "2024"
description = "Manage git repositories with directory conventions"
license = "MIT"
repository = "https://github.com/popomore/projj"
homepage = "https://github.com/popomore/projj"
readme = "README.md"
keywords = ["git", "repository", "cli", "project", "management"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
dialoguer = "0.11"
dirs = "6"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
regex-lite = "0.1"
toml = "0.8"
walkdir = "2"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
must_use_candidate = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
similar_names = "allow"
[dev-dependencies]
cargo-husky = { version = "1", default-features = false, features = ["precommit-hook", "run-cargo-test", "run-cargo-clippy", "run-cargo-fmt"] }
assert_cmd = "2"
predicates = "3"
tempfile = "3"
[target.'cfg(unix)'.dev-dependencies]
rexpect = "0.5"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"