[package] name = "dvb-gse" version = "0.6.2" edition = "2021" authors = ["Daniel Estevez "] description = "DVB-GSE (Digital Video Brodcast Generic Stream Encapsulation)" license = "MIT OR Apache-2.0" homepage = "https://github.com/daniestevez/dvb-gse/" repository = "https://github.com/daniestevez/dvb-gse/" keywords = ["dvb", "dvb-s2", "gse", "satellite", "network"] categories = ["aerospace::space-protocols", "command-line-utilities", "multimedia", "network-programming", ] exclude = ["/.github"] [features] default = ["cli"] # Enables the CLI application. cli = ["anyhow", "clap", "env_logger", "libc", "tun-tap"] [dependencies] anyhow = { version = "1", features = ["std"], optional = true } bitvec = "1" bytes = "1.2" clap = { version = "4", features = ["derive"], optional = true } crc = "3" env_logger = { version = "0.11", optional = true } faster-hex = "0.9" lazy_static = "1.4" libc = { version = "0.2", optional = true } log = "0.4" num_enum = "0.7" thiserror = "1" tun-tap = { version = "0.1", default-features = false, optional = true } [dev-dependencies] hex-literal = "0.4" proptest = "1"