fif/Cargo.toml

79 lines
2.2 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."
2024-01-21 06:55:11 +00:00
version = "0.7.1"
2021-02-04 11:22:19 +00:00
authors = ["Lynnesbian <lynne@bune.city>"]
2023-03-14 20:12:38 +00:00
edition = "2021"
license = "GPL-3.0-or-later"
2023-03-14 20:23:59 +00:00
rust-version = "1.64.0" # clap 4.1 requires >=1.64.0
2021-04-21 07:29:13 +00:00
repository = "https://gitlab.com/Lynnesbian/fif"
readme = "README.md"
keywords = ["mime", "mimetype", "utilities", "tools"]
categories = ["command-line-utilities"]
2021-04-27 08:34:01 +00:00
exclude = [".idea/", "*.toml", "!Cargo.toml", "*.sh", "*.py", "*.yml", "*.md", ".mailmap", "pkg/"]
2021-02-04 11:22:19 +00:00
2021-03-01 10:20:46 +00:00
[badges]
maintenance = { status = "experimental" }
[features]
2021-05-05 22:57:42 +00:00
default = ["multi-threaded", "json"]
multi-threaded = ["rayon", "num_cpus"]
infer-backend = ["infer"]
xdg-mime-backend = ["xdg-mime"]
2021-05-05 22:57:42 +00:00
json = ["serde", "serde_json"]
2021-02-04 11:22:19 +00:00
[dependencies]
2024-01-21 06:55:11 +00:00
walkdir = "2.4.0"
2021-02-04 11:22:19 +00:00
log = "0.4.14"
mime = "0.3.16"
2023-03-14 20:12:38 +00:00
mime_guess = { package = "new_mime_guess", version = "4.0.0" }
snailquote = "0.3.0"
2021-06-14 06:53:41 +00:00
once_cell = "1.8.0"
rayon = { version = "1.5.0", optional = true }
2021-02-21 14:07:50 +00:00
exitcode = "1.1.2"
cfg-if = "1.0.0"
2024-01-21 06:55:11 +00:00
itertools = "0.12.0"
2021-05-05 22:57:42 +00:00
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
num_cpus = { version = "1.13.0", optional = true }
2022-02-03 05:51:20 +00:00
parking_lot = "0.12.0"
smartstring = "1"
2023-01-01 21:36:11 +00:00
maplit = "1.0.2"
[target.'cfg(not(unix))'.dependencies]
xdg-mime = { version = "0.3.3", optional = true }
2024-01-21 06:55:11 +00:00
infer = "=0.13.0" # 0.14.0 uses `let else`, which requires rust 1.65
[target.'cfg(unix)'.dependencies]
xdg-mime = "0.3.3"
2024-01-21 06:55:11 +00:00
infer = { version = "=0.13.0", optional = true }
[dependencies.clap]
2023-03-14 20:23:59 +00:00
version = "~4.1"
default-features = false
2022-01-01 03:28:45 +00:00
features = ["wrap_help", "color", "derive", "std", "unicode"]
2021-08-18 13:42:44 +00:00
2021-02-05 13:34:02 +00:00
[dependencies.env_logger]
2023-01-01 21:36:11 +00:00
version = "0.10.0"
2021-02-05 13:34:02 +00:00
default-features = false
2023-01-01 21:36:11 +00:00
features = ["color"]
2021-02-05 13:34:02 +00:00
[dev-dependencies]
tempfile = "3.2.0"
rand = "0.8.3"
2024-01-21 06:55:11 +00:00
assert_cmd = "=2.0.5" # higher versions than this have dependencies that require later rust versions
regex = { version = "=1.9.5", default-features = false, features = ["std"] } # 1.9.6 requires rust 1.65
2021-02-05 13:34:02 +00:00
[profile.release]
lto = "thin"
# optimise dependencies, even when producing debug and test builds
[profile.dev.package."*"]
opt-level = 3
[profile.test.package."*"]
opt-level = 3
2021-09-17 08:51:41 +00:00
[package.metadata]
2024-01-21 06:55:11 +00:00
msrv = "1.64.0"