-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (42 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
48 lines (42 loc) · 1.18 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
[package]
name = "build-wrap"
version = "0.6.1"
authors = ["Samuel Moelius <sam@moeli.us>"]
description = "Help protect against malicious build scripts"
edition = "2024"
license = "AGPL-3.0"
repository = "https://github.com/trailofbits/build-wrap"
# smoelius: This list of dependencies should match what is in src/wrapper.rs.
[dependencies]
anyhow = "1.0"
home = "0.5"
regex = "1.12"
tempfile = "3.27"
toml = "1.1"
xdg = "3.0"
[dev-dependencies]
assert_cmd = "2.2"
cargo_metadata = "0.23"
ctor = "0.9"
serde = "1.0"
serde_json = "1.0"
similar-asserts = "2.0"
snapbox = "1.2"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
let_underscore_untyped = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
[workspace]
exclude = ["fixtures", "target"]
[workspace.metadata.dylint]
libraries = [
{ git = "https://github.com/trailofbits/dylint", pattern = "examples/restriction/inconsistent_qualification" },
{ git = "https://github.com/trailofbits/dylint", pattern = "examples/restriction/misleading_variable_name" },
]
[workspace.metadata.unmaintained]
ignore = [
# https://github.com/alacritty/vte/pull/122#issuecomment-2579278540
"utf8parse",
"wit-bindgen-rt",
]