mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-06 19:35:13 +02:00
- Added `bytesize` and `chrono` dependencies in `Cargo.toml` and `Cargo.lock` for enhanced size and time formatting. - Enhanced console output in `list.rs`, `index.rs`, `clean.rs`, and `config.rs` with improved styles for readability. - Updated file size and modified time formatting across commands using `ByteSize` and `chrono`.
34 lines
927 B
TOML
34 lines
927 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"
|
|
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"] }
|