[package]
edition = "2024"
name = "fs_rs"
version = "0.3.2"
authors = ["Akshay Raj Gollahalli <akshay@gollahalli.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple file system information tool written in Rust."
homepage = "https://github.com/akshaybabloo/fs_rs"
readme = "README.md"
keywords = [
"file",
"system",
"information",
"tool",
"cli",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/akshaybabloo/fs_rs"
[lib]
name = "fs_rs"
path = "src/lib.rs"
[[bin]]
name = "fs_rs"
path = "src/main.rs"
[[test]]
name = "tree_test"
path = "tests/tree_test.rs"
[[test]]
name = "utils_test"
path = "tests/utils_test.rs"
[dependencies.clap]
version = "4.5.60"
features = ["derive"]
[dependencies.colored]
version = "3.1.1"
[dependencies.comfy-table]
version = "7.2.2"
[dependencies.humansize]
version = "2.1.3"
[dependencies.rayon]
version = "1.11.0"
[dependencies.serde_json]
version = "1.0.149"
[dependencies.spinoff]
version = "0.8.0"
features = ["dots"]
[dependencies.sysinfo]
version = "0.38.3"
[dependencies.tempfile]
version = "3.26.0"