mirror of
https://github.com/zizmorcore/zizmor.git
synced 2025-12-23 08:47:33 +00:00
Some checks are pending
CodSpeed Benchmarks / Run benchmarks (push) Waiting to run
CI / Lint (push) Waiting to run
CI / Test (push) Waiting to run
CI / Test site build (push) Waiting to run
CI / All tests pass (push) Blocked by required conditions
zizmor wheel builds for PyPI 🐍 / Build Linux wheels (manylinux) (push) Waiting to run
zizmor wheel builds for PyPI 🐍 / Build Linux wheels (musllinux) (push) Waiting to run
zizmor wheel builds for PyPI 🐍 / Build Windows wheels (push) Waiting to run
zizmor wheel builds for PyPI 🐍 / Build macOS wheels (push) Waiting to run
zizmor wheel builds for PyPI 🐍 / Build source distribution (push) Waiting to run
zizmor wheel builds for PyPI 🐍 / Release (push) Blocked by required conditions
Deploy zizmor documentation site 🌐 / Deploy zizmor documentation to GitHub Pages 🌐 (push) Waiting to run
GitHub Actions Security Analysis with zizmor 🌈 / Run zizmor 🌈 (push) Waiting to run
97 lines
2.6 KiB
TOML
97 lines
2.6 KiB
TOML
[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"
|
|
|
|
[workspace.dependencies]
|
|
anyhow = "1.0.100"
|
|
github-actions-expressions = { path = "crates/github-actions-expressions", version = "0.0.11" }
|
|
github-actions-models = { path = "crates/github-actions-models", version = "0.42.0" }
|
|
itertools = "0.14.0"
|
|
pest = "2.8.4"
|
|
pest_derive = "2.8.4"
|
|
pretty_assertions = "1.4.1"
|
|
annotate-snippets = "0.12.10"
|
|
anstream = "0.6.21"
|
|
assert_cmd = "2.1.1"
|
|
async-trait = "0.1.89"
|
|
camino = "1.2.2"
|
|
clap = "4.5.53"
|
|
clap-verbosity-flag = { version = "3.0.4", default-features = false }
|
|
clap_complete = "4.5.61"
|
|
clap_complete_nushell = "4.5.10"
|
|
csv = "1.3.1"
|
|
etcetera = "0.11.0"
|
|
flate2 = "1.1.5"
|
|
fst = "0.4.7"
|
|
futures = "0.3"
|
|
http = "1.4.0"
|
|
http-cache-reqwest = { version = "1.0.0-alpha.2", features = ["manager-moka"] }
|
|
human-panic = "2.0.4"
|
|
ignore = "0.4.25"
|
|
indexmap = { version = "2.12.1", features = ["serde"] }
|
|
indicatif = "0.18"
|
|
insta = "1.44.3"
|
|
jsonschema = "0.37.4"
|
|
line-index = "0.1.2"
|
|
memchr = "2.7.6"
|
|
owo-colors = "4.2.3"
|
|
regex = "1.12.1"
|
|
reqwest = { version = "0.12.25", default-features = false }
|
|
reqwest-middleware = "0.4.2"
|
|
self_cell = "1"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde-sarif = "0.8.0"
|
|
serde_json = "1.0.145"
|
|
serde_json_path = "0.7.2"
|
|
serde_yaml = "0.9.34"
|
|
subfeature = { path = "crates/subfeature", version = "0.0.4" }
|
|
tar = "0.4.44"
|
|
terminal-link = "0.1.0"
|
|
thiserror = "2.0.17"
|
|
tokio = { version = "1.47.1", features = ["rt-multi-thread", "io-std"] }
|
|
tower-lsp-server = "0.23"
|
|
tracing = "0.1.43"
|
|
tracing-indicatif = "0.3.14"
|
|
tracing-subscriber = "0.3.20"
|
|
tree-sitter = "0.26.3"
|
|
tree-sitter-bash = "0.25.1"
|
|
tree-sitter-iter = { path = "crates/tree-sitter-iter", version = "0.0.3" }
|
|
# Exact version since the upstream performed a breaking change outside of semver.
|
|
# See: https://github.com/zizmorcore/zizmor/pull/1427
|
|
tree-sitter-powershell = "=0.25.10"
|
|
yamlpath = { path = "crates/yamlpath", version = "0.31.0" }
|
|
yamlpatch = { path = "crates/yamlpatch", version = "0.8.0" }
|
|
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
|