[package]
edition = "2024"
name = "libmpegts"
version = "0.3.1"
authors = ["Cesbo Developers Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MPEG-TS Library"
documentation = "https://docs.rs/libmpegts"
readme = "README.md"
keywords = [
"mpegts",
"dvb",
]
license = "MIT"
repository = "https://github.com/cesbo/libmpegts"
[lib]
name = "libmpegts"
path = "src/lib.rs"
[[example]]
name = "ts_check"
path = "examples/ts_check.rs"
[[example]]
name = "ts_remux"
path = "examples/ts_remux.rs"
[[test]]
name = "bcd"
path = "tests/bcd.rs"
[[test]]
name = "bits"
path = "tests/bits.rs"
[[test]]
name = "crc32"
path = "tests/crc32.rs"
[[test]]
name = "eit"
path = "tests/eit.rs"
[[test]]
name = "mjd"
path = "tests/mjd.rs"
[[test]]
name = "mux"
path = "tests/mux.rs"
[[test]]
name = "nit"
path = "tests/nit.rs"
[[test]]
name = "pat"
path = "tests/pat.rs"
[[test]]
name = "pcr"
path = "tests/pcr.rs"
[[test]]
name = "pes"
path = "tests/pes.rs"
[[test]]
name = "pmt"
path = "tests/pmt.rs"
[[test]]
name = "psi"
path = "tests/psi.rs"
[[test]]
name = "sdt"
path = "tests/sdt.rs"
[[test]]
name = "slicer"
path = "tests/slicer.rs"
[[test]]
name = "tdt"
path = "tests/tdt.rs"
[[test]]
name = "textcode"
path = "tests/textcode.rs"
[[test]]
name = "tot"
path = "tests/tot.rs"
[[test]]
name = "ts"
path = "tests/ts.rs"
[dependencies.textcode]
version = "0.3"