-
-
Notifications
You must be signed in to change notification settings - Fork 178
Expand file tree
/
Copy pathCargo.toml
More file actions
100 lines (94 loc) · 2.67 KB
/
Cargo.toml
File metadata and controls
100 lines (94 loc) · 2.67 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[workspace]
resolver = "2"
members = [
"crates/github-actions-expressions",
"crates/github-actions-models",
"crates/subfeature",
"crates/tree-sitter-iter",
"crates/yamlpatch",
"crates/yamlpath",
"crates/zizmor",
]
[workspace.package]
authors = ["William Woodruff <william@yossarian.net>"]
readme = "README.md"
homepage = "https://docs.zizmor.sh"
edition = "2024"
license = "MIT"
rust-version = "1.88.0"
version = "1.24.1"
[workspace.dependencies]
github-actions-expressions = { path = "crates/github-actions-expressions", version = "1.24.1" }
github-actions-models = { path = "crates/github-actions-models", version = "1.24.1" }
subfeature = { path = "crates/subfeature", version = "1.24.1" }
tree-sitter-iter = { path = "crates/tree-sitter-iter", version = "1.24.1" }
yamlpath = { path = "crates/yamlpath", version = "1.24.1" }
yamlpatch = { path = "crates/yamlpatch", version = "1.24.1" }
anyhow = "1.0.102"
itertools = "0.14.0"
pest = "2.8.6"
pest_derive = "2.8.6"
pretty_assertions = "1.4.1"
annotate-snippets = "0.12.14"
anstream = "1.0.0"
assert_cmd = "2.2.1"
async-trait = "0.1.89"
camino = "1.2.2"
clap = "4.6.1"
clap-verbosity-flag = { version = "3.0.4", default-features = false }
clap_complete = "4.6.2"
clap_complete_nushell = "4.6.0"
csv = "1.3.1"
etcetera = "0.11.0"
flate2 = "1.1.9"
fst = "0.4.7"
futures = "0.3"
http = "1.4.0"
http-cache-reqwest = { version = "1.0.0-alpha.6", features = ["manager-moka"] }
human-panic = "2.0.8"
ignore = "0.4.25"
indexmap = { version = "2.13.1", features = ["serde"] }
indicatif = "0.18"
insta = "1.47.1"
jsonschema = { version = "0.46.2", default-features = false }
line-index = "0.1.2"
memchr = "2.8.0"
owo-colors = "4.3.0"
regex = "1.12.3"
reqwest = "0.13"
reqwest-middleware = "0.5.1"
self_cell = "1"
schemars = "1.2"
serde = { version = "1.0.228", features = ["derive"] }
serde-sarif = "0.8.0"
serde_json = "1.0.149"
serde_json_path = "0.7.2"
serde_yaml = "0.9.34"
tar = "0.4.45"
terminal-link = "0.1.0"
thiserror = "2.0.18"
tokio = { version = "1.52.1", features = ["rt-multi-thread", "io-std"] }
tower-lsp-server = "0.23"
tracing = "0.1.44"
tracing-indicatif = "0.3.14"
tracing-subscriber = "0.3.23"
tree-sitter = "0.26.8"
tree-sitter-bash = "0.25.1"
# Exact version since the upstream performed a breaking change outside of semver.
# See: https://github.com/zizmorcore/zizmor/pull/1427
tree-sitter-powershell = "=0.26.3"
tree-sitter-yaml = "0.7.2"
tikv-jemallocator = "0.6"
[workspace.lints.clippy]
dbg_macro = "warn"
todo = "warn"
unimplemented = "warn"
use_debug = "warn"
needless_lifetimes = "warn"
print_stderr = "warn"
print_stdout = "warn"
unwrap_used = "warn"
[profile.dev.package]
insta.opt-level = 3
[profile.release]
lto = true