-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (26 loc) · 863 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
[package]
name = "rsmedia"
description = "High-level video toolkit based on ffmpeg."
keywords = ["video", "ffmpeg", "encoding", "decoding", "muxing"]
categories = ["multimedia", "multimedia::video"]
version = "0.1.0"
authors = ["phial3 Developers"]
license = "MIT OR Apache-2.0"
edition = "2021"
repository = "https://github.com/phial3/rsmedia"
readme = "README.md"
[features]
default = ["ffmpeg7", "ndarray"]
ffmpeg5 = ["ffmpeg/ffmpeg5", "ffmpeg/link_system_ffmpeg"]
ffmpeg6 = ["ffmpeg/ffmpeg6", "ffmpeg/link_system_ffmpeg"]
ffmpeg7 = ["ffmpeg/ffmpeg7", "ffmpeg/link_system_ffmpeg"]
[dependencies]
ffmpeg = { path = "./ffmpeg", default-features = false }
ndarray = { version = "0.16", optional = true }
tracing = "0.1"
url = "2"
[dev-dependencies]
image = "0.25"
tokio = { version = "1", features = ["full"] }
[package.metadata.docs.rs]
all-features = true