-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
40 lines (34 loc) · 849 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
[package]
name = "mpeg2ts-reader"
version = "0.16.0"
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.11.0"
[[bench]]
name = "bench"
harness = false
[[bench]]
name = "ci_bench"
harness = false
[profile.bench]
# for profiling,
debug = true