[package]
edition = "2021"
rust-version = "1.81"
name = "dvb-simulcrypt"
version = "0.2.0"
authors = ["Alex Fishlock <alex.fishlock@racingjag.com>"]
build = false
exclude = [
"docs/**",
"tests/fixtures/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "DVB SimulCrypt head-end CA message framing (ETSI TS 103 197): the generic TLV message structure plus the ECMG⇔SCS and EMMG/PDG⇔MUX message_type / parameter_type registries. Signalling only — CW/ECM/EMM/datagram payloads are opaque."
readme = "README.md"
keywords = [
"simulcrypt",
"dvb",
"ecmg",
"emmg",
"ca",
]
categories = [
"parser-implementations",
"network-programming",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/fishloa/rust-dvb"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["std"]
serde = ["dep:serde"]
std = [
"dvb-common/std",
"thiserror/std",
]
[lib]
name = "dvb_simulcrypt"
path = "src/lib.rs"
[[example]]
name = "build_channel_setup"
path = "examples/build_channel_setup.rs"
[[example]]
name = "parse_cw_provision"
path = "examples/parse_cw_provision.rs"
[[test]]
name = "fixture_cw_provision"
path = "tests/fixture_cw_provision.rs"
[[test]]
name = "framing"
path = "tests/framing.rs"
[[test]]
name = "label_coverage"
path = "tests/label_coverage.rs"
[dependencies.dvb-common]
version = "7.9"
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dependencies.thiserror]
version = "2"
default-features = false
[dev-dependencies.serde_json]
version = "1.0"