-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
86 lines (78 loc) · 2.22 KB
/
Copy pathCargo.toml
File metadata and controls
86 lines (78 loc) · 2.22 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
# SPDX-FileCopyrightText: 2026 RAprogramm <andrey.rozanov.vl@gmail.com>
# SPDX-License-Identifier: MIT
[workspace]
resolver = "3"
members = [
"crates/rustmanifest-schema",
"crates/rustmanifest-rules-core",
"crates/rustmanifest-engine",
"crates/rustmanifest-config",
"crates/rustmanifest-report",
"crates/rustmanifest-mcp",
"crates/rustmanifest-lsp",
"crates/rustmanifest-cli",
]
[workspace.package]
version = "0.0.0"
edition = "2024"
rust-version = "1.95"
license = "MIT"
repository = "https://github.com/RAprogramm/RustManifest"
homepage = "https://github.com/RAprogramm/RustManifest"
authors = ["RAprogramm <andrey.rozanov.vl@gmail.com>"]
readme = "README.md"
[workspace.dependencies]
rustmanifest-schema = { path = "crates/rustmanifest-schema", version = "0.0.0" }
rustmanifest-rules-core = { path = "crates/rustmanifest-rules-core", version = "0.0.0" }
rustmanifest-engine = { path = "crates/rustmanifest-engine", version = "0.0.0" }
rustmanifest-config = { path = "crates/rustmanifest-config", version = "0.0.0" }
rustmanifest-report = { path = "crates/rustmanifest-report", version = "0.0.0" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
schemars = "1"
clap = { version = "4", features = ["derive"] }
regex = "1"
toml = "1"
rayon = "1"
ignore = "0.4"
globset = "0.4"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
thiserror = "2"
anyhow = "1"
anstyle = "1"
anstream = "1"
insta = "1"
assert_cmd = "2"
predicates = "3"
tempfile = "3"
criterion = "0.8"
[workspace.lints.rust]
unsafe_code = "forbid"
missing_docs = "deny"
unreachable_pub = "deny"
unused_must_use = "deny"
let_underscore_drop = "deny"
non_ascii_idents = "deny"
rust_2018_idioms = { level = "deny", priority = -1 }
[workspace.lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
cargo = { level = "deny", priority = -1 }
unwrap_used = "deny"
expect_used = "deny"
panic = "deny"
todo = "deny"
dbg_macro = "deny"
print_stdout = "deny"
print_stderr = "deny"
[profile.release]
codegen-units = 1
lto = "fat"
strip = "symbols"
panic = "abort"
opt-level = 3
[profile.dist]
inherits = "release"
debug = "line-tables-only"