-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
44 lines (37 loc) · 987 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "mpeg2ts-reader"
version = "0.18.2"
authors = ["David Holroyd <[email protected]>"]
description = "Parser for MPEG Transport Stream data"
repository = "https://github.com/dholroyd/mpeg2ts-reader"
license = "MIT/Apache-2.0"
categories = [ "multimedia::video", "parser-implementations" ]
keywords = [ "mpegts", "ISO-13818-1", "H-222-0" ]
readme = "README.md"
edition = "2021"
exclude = [ "testsrc.ts" ]
[dependencies]
fixedbitset = "0.5.0"
encoding_rs = "0.8"
log = "0.4"
smptera-format-identifiers-rust = "0.4.0"
[dev-dependencies]
assert_matches = "1.5.0"
bitstream-io = "2.2"
criterion = "0.5.1"
hex-literal = "0.2.1"
hex-slice = "0.1.4"
env_logger = "0.11.2"
iai-callgrind = "0.14.0"
[[bench]]
name = "bench"
harness = false
[[bench]]
name = "ci_bench"
harness = false
[profile.bench]
# for profiling,
debug = true
[lints.rust]
# per https://github.com/rust-fuzz/cargo-fuzz/issues/372
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }