-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (27 loc) · 854 Bytes
/
Cargo.toml
File metadata and controls
33 lines (27 loc) · 854 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
[package]
name = "mp4-atom"
description = "A MP4/ISOBMFF atom decoder and encoder"
authors = ["Luke Curley <kixelated@gmail.com>", "Brad Hards <bradh@frogmouth.net>"]
repository = "https://github.com/kixelated/mp4-atom"
license = "MIT OR Apache-2.0"
version = "0.10.1"
edition = "2021"
keywords = ["mp4", "isobmff", "mp4box", "audio", "video"]
categories = ["multimedia::encoding"]
[dependencies]
pastey = "0.2"
thiserror = "1"
num = "0.4"
tracing = "0.1"
derive_more = { version = "2", features = ["from"] }
bytes = { version = "1", optional = true }
tokio = { version = "1", features = ["io-util"], optional = true }
serde = { version = "1", features = ["derive"], optional = true }
[features]
tokio = ["dep:tokio"]
bytes = ["dep:bytes"]
serde = ["dep:serde", "bytes/serde"]
strict = []
[dev-dependencies]
anyhow = "1"
tracing-subscriber = "0.3"