File: Cargo.toml

package info (click to toggle)
precious 0.8.0%2B~0.2.1%2B20220602%2B~0.0.2-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 920 kB
  • sloc: sh: 44; makefile: 39; perl: 18
file content (65 lines) | stat: -rw-r--r-- 1,889 bytes parent folder | download
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
[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.8.0"

[[bin]]
name = "precious"
path = "precious/src/main.rs"
doc = false

[dependencies]
log.workspace = true
precious-core.workspace = true

[workspace.dependencies]
anyhow = "1.0.97"
clap = { version = "4.5.32", features = ["cargo", "derive", "wrap_help"] }
clean-path = { version = "0.2.1", path = "Xclean-path" }
comfy-table = "7.1.4"
env_logger = "0.11.7"
fern = { version = ">= 0.5.0, <= 0.7", features = ["colored"] }
filetime = "0.2.25"
ignore = "0.4.23"
indexmap = { version = "2.8.0", features = ["serde"] }
itertools = ">= 0.9.0, <= 0.13"
log = "0.4.26"
md5 = "0.7.0"
pathdiff = "0.2.3"
precious-core = { version = "0.8.0", path = "./precious-core" }
precious-helpers = { version = "0.8.0", path = "./precious-helpers" }
precious-testhelper = { version = "0.8.0", path = "./precious-testhelper" }
pretty_assertions = "1.4.1"
prettytable = "0.10.0"
pushd = { version = "0.0.2", path = "Xpushd" }
rayon = "1.10.0"
regex = "1.11.1"
serde = { version = "1.0.219", features = ["derive"] }
serial_test = ">= 2.0.0, <= 3"
tempfile = "3.18.0"
test-case = "3.3.1"
thiserror = "2.0.12"
toml = "0.8.19"
which = ">= 3.0.0, <= 8"

[workspace]
members = ["precious-helpers", "precious-core", "precious-integration", "precious-testhelper"]

[package.metadata.release]
tag-name = "v{{version}}"