mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-06 19:35:13 +02:00
- Introduce `index.rs` for file indexing using SQLite - Expand configuration options in `config.rs`, including `excluded_files` - Update dependencies in `Cargo.toml` to include SQLite, hashing, and regex libraries
24 lines
578 B
TOML
24 lines
578 B
TOML
[package]
|
|
name = "Nano"
|
|
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"
|
|
anyhow = "1.0.98"
|
|
|
|
ignore = "0.4.23"
|
|
tree-sitter = "0.25.6"
|
|
tree-sitter-rust = "0.24.0"
|
|
crossbeam-channel = "0.5.15"
|
|
regex = "1.11.1"
|
|
blake3 = "1.8.2"
|
|
nix = { version = "0.30.1", features = ["signal"] }
|