-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
86 lines (78 loc) · 3.15 KB
/
Cargo.toml
File metadata and controls
86 lines (78 loc) · 3.15 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[package]
name = "precious"
authors.workspace = true
description = "One code quality tool to rule them all"
documentation = "https://github.com/houseabsolute/precious"
edition.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
version.workspace = true
categories = ["development-tools"]
keywords = ["beautifier", "linter", "pretty-printer", "tidier"]
[[bin]]
name = "precious"
path = "precious/src/main.rs"
doc = false
[dependencies]
log.workspace = true
precious-core.workspace = true
[package.metadata.release]
tag-name = "v{{version}}"
[lints]
workspace = true
[workspace]
members = ["precious-helpers", "precious-core", "precious-integration", "precious-testhelper"]
[workspace.package]
authors = ["Dave Rolsky <autarch@urth.org>"]
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/houseabsolute/precious"
version = "0.10.2"
[workspace.dependencies]
anyhow = { version = "1.0.100", default-features = false }
bon = { version = "3.8.1", default-features = false }
clap = { version = "4.5.50", default-features = false, features = [
"cargo",
"derive",
"std",
"wrap_help",
] }
clean-path = { version = "0.2.1", default-features = false }
comfy-table = { version = "7.2.1", default-features = false }
env_logger = { version = "0.11.8", default-features = false }
fern = { version = ">= 0.5.0, < 0.7.0", default-features = false, features = ["colored"] }
filetime = { version = "0.2.26", default-features = false }
ignore = { version = "0.4.24", default-features = false }
indexmap = { version = "2.12.0", default-features = false, features = ["serde", "std"] }
itertools = { version = "0.14.0", default-features = true }
libc = { version = "0.2.177", default-features = false }
log = { version = "0.4.28", default-features = false }
md5 = { version = "0.8.0", default-features = false }
mitsein = { version = "0.8.0", default-features = false, features = ["itertools", "std"] }
pathdiff = { version = "0.2.3", default-features = false }
precious-core = { version = "0.10.2", path = "./precious-core" }
precious-helpers = { version = "0.10.2", path = "./precious-helpers" }
precious-testhelper = { version = "0.10.2", path = "./precious-testhelper" }
pretty_assertions = { version = "1.4.1", default-features = true }
prettytable = { version = "0.10.0", default-features = false }
pushd = { version = "0.0.2", default-features = false }
rayon = { version = "1.11.0", default-features = false }
regex = { version = "1.12.2", default-features = true }
serde = { version = "1.0.228", default-features = true, features = ["derive"] }
serial_test = { version = "3.2.0", default-features = false }
tempfile = { version = "3.23.0", default-features = false }
test-case = { version = "3.3.1", default-features = false }
thiserror = { version = "2.0.17", default-features = true }
toml = { version = "0.9.8", default-features = false, features = [
"parse",
"preserve_order",
"serde",
] }
which = { version = ">= 3.0.0, < 5.0.0", default-features = false }
[workspace.lints.clippy]
fallible_impl_from = "deny"
wildcard_enum_match_arm = "deny"
unneeded_field_pattern = "deny"
fn_params_excessive_bools = "deny"