-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (33 loc) · 728 Bytes
/
Cargo.toml
File metadata and controls
39 lines (33 loc) · 728 Bytes
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
[package]
name = "h264-reader"
version = "0.8.0"
authors = ["David Holroyd <dave@badgers-in-foil.co.uk>"]
license = "MIT/Apache-2.0"
description = "Reader for H264 bitstream syntax"
categories = [ "multimedia::video" ]
keywords = [ "H-264" ]
readme = "README.md"
repository = "https://github.com/dholroyd/h264-reader"
edition = "2018"
exclude = ["/*.h264"]
rust-version = "1.83"
[dependencies]
bitstream-io = "4.10"
hex-slice = "0.1.4"
memchr = "2.8.0"
rfc6381-codec = "0.3"
log = "0.4"
[dev-dependencies]
hex-literal = "1.1.0"
criterion = "0.7"
test-case = "3.0.0"
iai-callgrind = "0.16.1"
[[bench]]
name = "bench"
harness = false
[[bench]]
name = "ci_bench"
harness = false
[profile.bench]
# for profiling,
debug = true