fif/Cargo.toml

59 lines
1.5 KiB
TOML
Raw Normal View History

2021-02-04 11:22:19 +00:00
[package]
name = "fif"
description = "A command-line tool for detecting and optionally correcting files with incorrect extensions."
version = "0.2.5"
2021-02-04 11:22:19 +00:00
authors = ["Lynnesbian <lynne@bune.city>"]
edition = "2018"
license = "GPL-3.0-or-later"
rust-version = "1.43.0" # cached requires 1.42.0
repository = "https://git.bune.city/lynnesbian/fif"
readme = "README.md"
keywords = ["mime", "mimetype", "utilities", "tools"]
categories = ["command-line-utilities"]
exclude = [".idea/", "Cross.toml", "*.sh"]
#resolver = "2"
2021-02-05 06:05:33 +00:00
#license-file = "LICENSE"
2021-02-04 11:22:19 +00:00
[features]
default = ["multi-threaded"]
multi-threaded = ["rayon"]
infer-backend = []
xdg-mime-backend = []
2021-02-04 11:22:19 +00:00
[dependencies]
walkdir = "2.3.1"
log = "0.4.14"
smartstring = "0.2.6"
mime_guess = "2.0.3"
snailquote = "0.3.0"
once_cell = "1.5.2"
infer = { version = "0.3.4" }
rayon = { version = "1.5.0", optional = true }
2021-02-21 14:07:50 +00:00
exitcode = "1.1.2"
cfg-if = "1.0.0"
# use git version while waiting on a release incorporating https://github.com/ebassi/xdg-mime-rs/commit/de5a6dd
[target.'cfg(not(target_os = "windows"))'.dependencies]
xdg-mime = {git = "https://github.com/ebassi/xdg-mime-rs", version = "0.3", rev = "de5a6dd" }
[dependencies.clap]
version = "3.0.0-beta.2"
default-features = false
features = ["wrap_help", "color", "derive", "std"]
2021-02-05 13:34:02 +00:00
[dependencies.env_logger]
version = "0.8.2"
default-features = false
features = ["termcolor", "atty"]
[dependencies.cached]
version = "0.23.0"
default-features = false
2021-02-05 13:34:02 +00:00
[profile.release]
lto = "thin"
# optimise dependencies, even when producing debug builds
[profile.dev.package."*"]
opt-level = 3