-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (41 loc) · 1.73 KB
/
Copy pathCargo.toml
File metadata and controls
46 lines (41 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "freemkv-engine"
version = "1.7.0"
edition = "2024"
rust-version = "1.88"
license = "MIT"
description = "freemkv rip engine — disc→MKV orchestration over libfreemkv, shared by every front-end (CLI, autorip, desktop UI)"
repository = "https://github.com/freemkv/freemkv-engine"
keywords = ["bluray", "uhd", "dvd", "ripper", "backup"]
categories = ["multimedia"]
exclude = ["CLAUDE.md"]
# OFF crates.io: transitively git-deps libfreemkv (which git-deps the firmware
# crate). Consumed only by git tag / local path, exactly like libfreemkv and
# freemkv-keysources.
publish = false
[dependencies]
anyhow = "1"
libfreemkv = "1.6"
freemkv-keysources = "1.6"
serde = { version = "1", features = ["derive"] }
tracing = "0.1"
# Language-tag normalization for stream selection (name / 639-1 / 639-2/3 →
# language identity). `lowercase_names` enables case-insensitive name matching
# (`from_name_lowercase`) so `-a english` works, not just `-a English`.
isolang = { version = "2", features = ["lowercase_names"] }
[dev-dependencies]
# Temp dirs / files for the relocated recovery regression suites (mirrors
# libfreemkv's dev-dependency).
tempfile = "3"
[profile.release]
lto = "thin"
codegen-units = 1
# Resolve libfreemkv + freemkv-keysources from their GIT TAGS (both OFF
# crates.io — see libfreemkv/Cargo.toml). This committed [patch.crates-io] is
# the CI resolution path; the release script rewrites the tags on bump. Local
# dev overrides it with a path patch via the gitignored .cargo/config.toml.
[patch.crates-io]
libfreemkv = { git = "https://github.com/freemkv/libfreemkv", tag = "v1.6.14" }
freemkv-keysources = { git = "https://github.com/freemkv/freemkv-keysources", tag = "v1.6.14" }
[lints.clippy]
uninlined_format_args = "allow"