-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (36 loc) · 1 KB
/
Cargo.toml
File metadata and controls
44 lines (36 loc) · 1 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
[workspace]
resolver = "2"
members = [
"crates/code-status-macros",
"crates/code-status-scanner",
"examples/demo-project",
]
rust-version = "1.60.0"
[workspace.package]
license = "MIT OR Apache-2.0"
rust-version = "1.60.0"
repository = "https://github.com/polarityorg/code-status-macros"
# Workspace-wide clippy lints configuration
[workspace.lints.clippy]
all = "warn"
pedantic = "warn"
nursery = "warn"
restriction = "warn"
# You can also add rustc lints if desired
[workspace.lints.rust]
unsafe_code = "allow"
missing_docs = "warn"
[workspace.metadata.clippy]
warn-on-all-levels = true
deny-warnings = true
[workspace.dependencies]
code-status-macros = { version = "0.1.0", path = "crates/code-status-macros" }
code-status-scanner = { version = "0.1.1", path = "crates/code-status-scanner" }
syn = { version = "2.0", features = ["full", "visit"] }
quote = "1.0"
proc-macro2 = "1.0"
# Binary tool dependencies
clap = { version = "4.4", features = ["derive"] }
walkdir = "2.4"
colored = "2.0"
regex = "1.9"