[package]
edition = "2021"
name = "ts2mp4"
version = "0.3.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library and CLI tool for converting MPEG-TS files to MP4 format"
homepage = "https://github.com/aciddust/ts2mp4"
documentation = "https://docs.rs/ts2mp4"
readme = "README.md"
keywords = [
"ts",
"mp4",
"mpeg",
"video",
"converter",
]
categories = [
"multimedia::video",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/aciddust/ts2mp4"
[lib]
name = "ts2mp4"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[bin]]
name = "ts2mp4"
path = "src/main.rs"
[[example]]
name = "extract_thumbnail"
path = "examples/extract_thumbnail.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[target.'cfg(target_arch = "wasm32")'.dependencies.console_error_panic_hook]
version = "0.1"
[target.'cfg(target_arch = "wasm32")'.dependencies.js-sys]
version = "0.3"
[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
version = "0.2"
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3"
features = ["console"]