mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-30 20:39:39 +02:00
Phase 1 (#33)
* chore: Exclude CLAUDE.md from Cargo.toml * feat: add callgraph module and integrate into main analysis flow * feat: enhance CLI with new severity filtering and analysis modes * feat: update CHANGELOG with recent enhancements and fixes to severity filtering and output handling * feat: implement state-model dataflow analysis for resource lifecycle and auth state * feat: enhance diagnostic output formatting and add evidence structure * feat: implement attack surface ranking for diagnostics with scoring and sorting * feat: add comprehensive documentation for installation, usage, and rules reference * feat: add multiple language support for command execution and evaluation endpoints * feat: implement inline suppression for findings using `nyx:ignore` comments * feat: add confidence levels to AST patterns and update output structure * feat: implement low-noise prioritization system with category filtering, rollup grouping, and configurable budgets * feat: bump version to 0.4.0 and update changelog with new features and improvements * feat: add dead code allowances to various functions in mod.rs and real_world_tests.rs
This commit is contained in:
parent
19b578c5c4
commit
1bbe4b1cfb
456 changed files with 25628 additions and 1228 deletions
|
|
@ -1,13 +1,13 @@
|
|||
[package]
|
||||
name = "nyx-scanner"
|
||||
version = "0.3.0"
|
||||
version = "0.4.0"
|
||||
edition = "2024"
|
||||
description = "A CLI security scanner for automating vulnerability checks"
|
||||
license = "GPL-3.0"
|
||||
authors = ["Eli Peter <elicpeter@exmaple.com>"]
|
||||
homepage = "https://github.com/elicpeter/nyx"
|
||||
repository = "https://github.com/elicpeter/nyx"
|
||||
documentation = "https://github.com/elicpeter/nyx#readme"
|
||||
documentation = "https://github.com/elicpeter/nyx/tree/master/docs"
|
||||
keywords = ["security", "vulnerability", "scanner", "static-analysis", "cli"]
|
||||
categories = ["security", "command-line-utilities", "development-tools", "parser-implementations", "text-processing"]
|
||||
readme = "README.md"
|
||||
|
|
@ -56,7 +56,7 @@ num_cpus = "1.17.0"
|
|||
rusqlite = { version = "0.38.0", features = ["bundled"] }
|
||||
r2d2_sqlite = { version = "0.32.0", features = ["bundled"] }
|
||||
ignore = "0.4.25"
|
||||
tree-sitter = "0.26.5"
|
||||
tree-sitter = "0.26.6"
|
||||
tree-sitter-rust = "0.24.0"
|
||||
tree-sitter-c = "0.24.1"
|
||||
tree-sitter-cpp = "0.23.4"
|
||||
|
|
@ -71,6 +71,7 @@ crossbeam-channel = "0.5.15"
|
|||
blake3 = "1.8.3"
|
||||
once_cell = "1.21.3"
|
||||
console = "0.16.2"
|
||||
terminal_size = "0.4"
|
||||
rayon = "1.11.0"
|
||||
r2d2 = "0.8.10"
|
||||
bytesize = "2.3.1"
|
||||
|
|
@ -81,3 +82,4 @@ petgraph = "0.8.3"
|
|||
bitflags = "2.11.0"
|
||||
phf = { version = "0.13.1", features = ["macros"] }
|
||||
indicatif = "0.18.4"
|
||||
smallvec = "1.15"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue