[package]
edition = "2021"
rust-version = "1.75"
name = "limni"
version = "0.2.60"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "LimniFS CLI — one format, one CLI"
readme = "README.md"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/limnifs/limnifs"
[features]
default = []
fuse = ["dep:fuser"]
[[bin]]
name = "limni"
path = "src/main.rs"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"string",
]
[dependencies.fuser]
version = "0.18"
optional = true
default-features = false
[dependencies.getrandom]
version = "0.2"
[dependencies.limnifs-core]
version = "0.2.60"
features = ["signing"]
[dependencies.limnifs-write]
version = "0.2.60"
[dependencies.rayon]
version = "1.10"
[target.'cfg(target_os = "macos")'.dependencies.fuser]
version = "0.18"
features = ["macos-no-mount"]
optional = true
default-features = false
[lints.clippy]
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
return_self_not_must_use = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"