[package]
edition = "2024"
name = "cerium"
version = "0.1.18"
authors = ["Ritchie Mwewa <hi@rly0nheart.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Yet, another ls-like util that is not trying to replace ls"
readme = "README.md"
license = "MIT"
repository = "https://codeberg.org/rly0nheart/cerium"
[features]
checksum = [
"dep:md5",
"dep:sha2",
"dep:crc32fast",
]
magic = ["dep:filemagic"]
[lib]
name = "cerium"
path = "src/lib.rs"
[[bin]]
name = "ce"
path = "src/main.rs"
[[test]]
name = "display_permission_format"
path = "tests/display_permission_format.rs"
[[test]]
name = "display_term_grid"
path = "tests/display_term_grid.rs"
[[test]]
name = "display_theme"
path = "tests/display_theme.rs"
[[test]]
name = "display_theme_colour"
path = "tests/display_theme_colour.rs"
[[test]]
name = "display_theme_config"
path = "tests/display_theme_config.rs"
[[test]]
name = "display_unicode_width"
path = "tests/display_unicode_width.rs"
[[test]]
name = "display_width"
path = "tests/display_width.rs"
[[test]]
name = "fs_dir"
path = "tests/fs_dir.rs"
[[test]]
name = "fs_entry"
path = "tests/fs_entry.rs"
[[test]]
name = "fs_glob"
path = "tests/fs_glob.rs"
[[test]]
name = "fs_hyperlink"
path = "tests/fs_hyperlink.rs"
[[test]]
name = "fs_permissions"
path = "tests/fs_permissions.rs"
[[test]]
name = "fs_search"
path = "tests/fs_search.rs"
[[test]]
name = "fs_symlink"
path = "tests/fs_symlink.rs"
[[test]]
name = "fs_tree"
path = "tests/fs_tree.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.crc32fast]
version = "1.5"
optional = true
[dependencies.filemagic]
version = "0.13"
optional = true
[dependencies.humanly]
version = "0.1"
[dependencies.libc]
version = "0.2"
[dependencies.md5]
version = "0.8"
optional = true
[dependencies.nu-ansi-term]
version = "0.50"
[dependencies.phf]
version = "0.13"
features = ["macros"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.sha2]
version = "0.10"
optional = true
[dependencies.toml]
version = "0.9.11"
[dev-dependencies.tempfile]
version = "3.24"
[profile.release]
lto = true
codegen-units = 1
strip = true