2025-06-16 16:46:22 +02:00
|
|
|
[package]
|
2025-06-25 03:37:39 +02:00
|
|
|
name = "nyx-scanner"
|
2026-02-25 21:16:36 -05:00
|
|
|
version = "0.4.0"
|
2025-06-16 16:46:22 +02:00
|
|
|
edition = "2024"
|
2025-06-25 03:37:39 +02:00
|
|
|
description = "A CLI security scanner for automating vulnerability checks"
|
2025-06-25 17:23:31 +02:00
|
|
|
license = "GPL-3.0"
|
2026-02-24 23:44:07 -05:00
|
|
|
authors = ["Eli Peter <elicpeter@exmaple.com>"]
|
2026-02-25 04:02:11 -05:00
|
|
|
homepage = "https://github.com/elicpeter/nyx"
|
|
|
|
|
repository = "https://github.com/elicpeter/nyx"
|
2026-02-25 21:16:36 -05:00
|
|
|
documentation = "https://github.com/elicpeter/nyx/tree/master/docs"
|
2026-02-24 23:44:07 -05:00
|
|
|
keywords = ["security", "vulnerability", "scanner", "static-analysis", "cli"]
|
2026-02-25 04:02:11 -05:00
|
|
|
categories = ["security", "command-line-utilities", "development-tools", "parser-implementations", "text-processing"]
|
2025-06-25 03:37:39 +02:00
|
|
|
readme = "README.md"
|
2025-06-25 03:46:21 +02:00
|
|
|
default-run = "nyx"
|
2025-06-25 03:37:39 +02:00
|
|
|
exclude = [
|
|
|
|
|
"assets/",
|
|
|
|
|
".github/",
|
2026-02-25 04:02:11 -05:00
|
|
|
"CLAUDE.md",
|
2026-02-24 23:44:07 -05:00
|
|
|
".claude/",
|
|
|
|
|
".idea/",
|
|
|
|
|
"tests/",
|
|
|
|
|
"benches/",
|
|
|
|
|
"examples/",
|
2025-06-25 03:37:39 +02:00
|
|
|
]
|
2025-06-16 16:46:22 +02:00
|
|
|
|
2026-02-24 23:44:07 -05:00
|
|
|
autoexamples = false
|
|
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
name = "nyx_scanner"
|
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
2025-06-25 03:46:21 +02:00
|
|
|
[[bin]]
|
|
|
|
|
name = "nyx"
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
2026-02-24 23:44:07 -05:00
|
|
|
[[bench]]
|
|
|
|
|
name = "scan_bench"
|
|
|
|
|
harness = false
|
|
|
|
|
|
2025-06-24 23:18:01 +02:00
|
|
|
[dev-dependencies]
|
2026-02-24 23:44:07 -05:00
|
|
|
tempfile = "3.26.0"
|
|
|
|
|
criterion = { version = "0.8", features = ["html_reports"] }
|
|
|
|
|
assert_cmd = "2"
|
|
|
|
|
predicates = "3"
|
|
|
|
|
glob = "0.3"
|
2025-06-24 23:18:01 +02:00
|
|
|
|
2025-06-16 16:46:22 +02:00
|
|
|
[dependencies]
|
|
|
|
|
directories = "6.0.0"
|
2026-02-24 23:44:07 -05:00
|
|
|
clap = { version = "4.5.60", features = ["derive"] }
|
|
|
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0"
|
|
|
|
|
toml = "1.0.3"
|
|
|
|
|
tracing-subscriber = { version = "0.3.22", features = ["env-filter", "json", "ansi","time"] }
|
|
|
|
|
tracing = "0.1.44"
|
2025-06-16 23:47:50 +02:00
|
|
|
num_cpus = "1.17.0"
|
2026-02-24 23:44:07 -05:00
|
|
|
rusqlite = { version = "0.38.0", features = ["bundled"] }
|
|
|
|
|
r2d2_sqlite = { version = "0.32.0", features = ["bundled"] }
|
|
|
|
|
ignore = "0.4.25"
|
2026-02-25 21:16:36 -05:00
|
|
|
tree-sitter = "0.26.6"
|
2025-06-16 23:47:50 +02:00
|
|
|
tree-sitter-rust = "0.24.0"
|
2025-06-17 01:17:48 +02:00
|
|
|
tree-sitter-c = "0.24.1"
|
|
|
|
|
tree-sitter-cpp = "0.23.4"
|
|
|
|
|
tree-sitter-java = "0.23.5"
|
|
|
|
|
tree-sitter-typescript = "0.23.2"
|
2026-02-24 23:44:07 -05:00
|
|
|
tree-sitter-javascript = "0.25.0"
|
|
|
|
|
tree-sitter-go = "0.25.0"
|
|
|
|
|
tree-sitter-php = "0.24.2"
|
|
|
|
|
tree-sitter-python = "0.25.0"
|
2025-06-24 18:53:31 +02:00
|
|
|
tree-sitter-ruby = "0.23.1"
|
2025-06-16 23:47:50 +02:00
|
|
|
crossbeam-channel = "0.5.15"
|
2026-02-24 23:44:07 -05:00
|
|
|
blake3 = "1.8.3"
|
2025-06-17 01:17:48 +02:00
|
|
|
once_cell = "1.21.3"
|
2026-02-24 23:44:07 -05:00
|
|
|
console = "0.16.2"
|
2026-02-25 21:16:36 -05:00
|
|
|
terminal_size = "0.4"
|
2026-02-24 23:44:07 -05:00
|
|
|
rayon = "1.11.0"
|
2025-06-17 20:45:33 +02:00
|
|
|
r2d2 = "0.8.10"
|
2026-02-24 23:44:07 -05:00
|
|
|
bytesize = "2.3.1"
|
|
|
|
|
chrono = { version = "0.4.44", default-features = false, features = ["std", "clock"] }
|
|
|
|
|
thiserror = "2.0.18"
|
2025-06-23 20:27:16 +02:00
|
|
|
dashmap = "7.0.0-rc2"
|
2026-02-24 23:44:07 -05:00
|
|
|
petgraph = "0.8.3"
|
|
|
|
|
bitflags = "2.11.0"
|
|
|
|
|
phf = { version = "0.13.1", features = ["macros"] }
|
2026-02-25 04:02:11 -05:00
|
|
|
indicatif = "0.18.4"
|
2026-02-25 21:16:36 -05:00
|
|
|
smallvec = "1.15"
|