You've already forked flix
58 lines
1.3 KiB
TOML
58 lines
1.3 KiB
TOML
[package]
|
|
name = "flix-mux"
|
|
version = "0.0.19"
|
|
license-file.workspace = true
|
|
|
|
description = "CLI for bulk media muxing"
|
|
repository = "https://github.com/QuantumShade/flix"
|
|
categories = ["command-line-utilities"]
|
|
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "flix-mux"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true, features = [
|
|
"color",
|
|
"derive",
|
|
"error-context",
|
|
"help",
|
|
"std",
|
|
"suggestions",
|
|
"usage",
|
|
] }
|
|
console = { workspace = true }
|
|
dialoguer = { workspace = true }
|
|
indicatif = { workspace = true }
|
|
serde = { workspace = true, features = ["derive", "std"] }
|
|
serde_json = { workspace = true, features = ["alloc"] }
|
|
walkdir = { workspace = true }
|
|
|
|
[lints.clippy]
|
|
arithmetic_side_effects = "deny"
|
|
as_conversions = "deny"
|
|
checked_conversions = "deny"
|
|
default_union_representation = "deny"
|
|
expect_used = "deny"
|
|
indexing_slicing = "deny"
|
|
integer_division = "deny"
|
|
integer_division_remainder_used = "deny"
|
|
transmute_undefined_repr = "deny"
|
|
unchecked_time_subtraction = "deny"
|
|
unwrap_used = "deny"
|
|
|
|
[lints.rust]
|
|
arithmetic_overflow = "forbid"
|
|
missing_docs = "forbid"
|
|
unsafe_code = "forbid"
|
|
unused_doc_comments = "forbid"
|