-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (20 loc) · 777 Bytes
/
Cargo.toml
File metadata and controls
22 lines (20 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "streams-info"
description = "Print information on the streams contained in a matroska file"
version = "0.1.0"
authors = ["Luni-4 <luni-4@hotmail.it>"]
license = "MIT"
repository = "https://github.com/rust-av/examples"
edition = "2021"
[[bin]]
name="streams_info"
path = "src/streams_info.rs"
[dependencies]
av-codec = "^0.2"
av-data = "^0.3"
av-format = "^0.7"
clap = { version = "^3.2", features = ["derive"] }
matroska = { version = "0.1.0", git = "https://github.com/rust-av/matroska" }
av-vorbis = { git = "https://github.com/rust-av/av-vorbis" }
libopus = { version = "0.1.0", git = "https://github.com/rust-av/opus-rs", features = ["codec-trait"] }
libvpx = { version = "0.1.0", git = "https://github.com/rust-av/vpx-rs", features = ["codec-trait"] }