[package]
edition = "2024"
name = "libpgs"
version = "0.6.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast PGS subtitle extraction, encoding, and round-trip transformation for MKV and M2TS containers"
homepage = "https://github.com/matthane/libpgs"
documentation = "https://docs.rs/libpgs"
readme = "README.md"
keywords = [
"pgs",
"subtitles",
"mkv",
"m2ts",
"bluray",
]
categories = [
"multimedia::video",
"multimedia::encoding",
"parser-implementations",
"command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/matthane/libpgs"
[lib]
name = "libpgs"
path = "src/lib.rs"
[[bin]]
name = "libpgs"
path = "src/cli/main.rs"
[[test]]
name = "ndjson_encode"
path = "tests/ndjson_encode.rs"
[[test]]
name = "ndjson_stream"
path = "tests/ndjson_stream.rs"
[[test]]
name = "round_trip_transform"
path = "tests/round_trip_transform.rs"
[[test]]
name = "streaming_api"
path = "tests/streaming_api.rs"
[dependencies.flate2]
version = "1"