mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-06 19:35:13 +02:00
- Added `tree-sitter-ruby` dependency to `Cargo.toml` and `Cargo.lock`. - Introduced `patterns/ruby.rs` with Ruby-specific AST patterns for vulnerability detection. - Updated `patterns/mod.rs` and `ast.rs` to support Ruby AST parsing and pattern registry initialization.
37 lines
998 B
TOML
37 lines
998 B
TOML
[package]
|
|
name = "nyx"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
directories = "6.0.0"
|
|
clap = { version = "4.5.40", features = ["derive"] }
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
toml = "0.8.23"
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "json", "ansi","time"] }
|
|
tracing = "0.1.41"
|
|
num_cpus = "1.17.0"
|
|
rusqlite = "0.36.0"
|
|
ignore = "0.4.23"
|
|
tree-sitter = "0.25.6"
|
|
tree-sitter-rust = "0.24.0"
|
|
tree-sitter-c = "0.24.1"
|
|
tree-sitter-cpp = "0.23.4"
|
|
tree-sitter-java = "0.23.5"
|
|
tree-sitter-typescript = "0.23.2"
|
|
tree-sitter-javascript = "0.23.1"
|
|
tree-sitter-go = "0.23.4"
|
|
tree-sitter-php = "0.23.11"
|
|
tree-sitter-python = "0.23.6"
|
|
tree-sitter-ruby = "0.23.1"
|
|
crossbeam-channel = "0.5.15"
|
|
blake3 = "1.8.2"
|
|
once_cell = "1.21.3"
|
|
console = "0.15.11"
|
|
rayon = "1.10.0"
|
|
r2d2_sqlite = "0.30.0"
|
|
r2d2 = "0.8.10"
|
|
bytesize = "2.0.1"
|
|
chrono = { version = "0.4.41", default-features = false, features = ["std", "clock"] }
|
|
thiserror = "2.0.12"
|
|
dashmap = "7.0.0-rc2"
|