-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
66 lines (60 loc) · 1.8 KB
/
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
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
[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"]
[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.7.3"
[[bin]]
name = "precious"
path = "precious/src/main.rs"
doc = false
[dependencies]
log.workspace = true
precious-core.workspace = true
[workspace.dependencies]
anyhow = "1.0.92"
clap = { version = "4.5.20", features = ["cargo", "derive", "wrap_help"] }
clean-path = "0.2.1"
comfy-table = "7.1.1"
env_logger = "0.11.5"
fern = { version = ">= 0.5.0, < 0.7.0", features = ["colored"] }
filetime = "0.2.25"
ignore = "0.4.23"
indexmap = { version = "2.6.0", features = ["serde"] }
itertools = ">= 0.9.0, < 0.11.0"
log = "0.4.22"
md5 = "0.7.0"
once_cell = "1.20.2"
pathdiff = "0.2.2"
precious-core = { version = "0.7.3", path = "./precious-core" }
precious-helpers = { version = "0.7.3", path = "./precious-helpers" }
precious-testhelper = { version = "0.7.3", path = "./precious-testhelper" }
pretty_assertions = "1.4.1"
prettytable = "0.10.0"
pushd = "0.0.1"
rayon = "1.10.0"
regex = "1.11.1"
serde = { version = "1.0.214", features = ["derive"] }
serial_test = "3.1.1"
tempfile = "3.13.0"
test-case = "3.3.1"
thiserror = "1.0.68"
toml = "0.8.19"
which = ">= 3.0.0, < 5.0.0"
[workspace]
members = ["precious-helpers", "precious-core", "precious-integration", "precious-testhelper"]
[package.metadata.release]
tag-name = "v{{version}}"