scte35/Cargo.toml

22 lines
481 B
TOML
Raw Normal View History

2022-04-23 22:05:28 +00:00
[package]
name = "scte35"
authors = ["Rafael Caricio <rafael@caricio.com>"]
2022-04-23 22:10:14 +00:00
description = "SCTE-35 2022 parser and library"
2022-04-23 22:05:28 +00:00
version = "0.1.0"
edition = "2021"
license = "MIT"
[dependencies]
2022-05-01 12:55:05 +00:00
base64 = "0.13"
bitstream-io = "1.3"
crc = "3.0"
thiserror = "1"
serde = { version = "1", features = ["derive"], optional = true }
2022-05-01 14:01:39 +00:00
hex = { version = "0.4", default-features = false, features = ["alloc"] }
anyhow = "1"
ascii = "1"
2022-05-01 12:55:05 +00:00
[dev-dependencies]
serde_json = "1"
assert-json-diff = "2"