-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (44 loc) · 1.22 KB
/
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
41
42
43
44
45
46
47
48
49
[package]
name = "ffmpeg-next"
version = "6.0.0"
build = "build.rs"
license = "WTFPL"
description = "Safe FFmpeg wrapper for Wasm application using WasmEdge Runtime"
documentation = "https://docs.rs/wasmedge-ffmpeg-sdk"
homepage = "https://github.com/hrushi20/rust-ffmpeg#readme"
repository = "https://github.com/Hrushi20/rust-ffmpeg"
readme = "README.md"
keywords = ["ffmpeg","Webassembly","wasmedge", "video", "audio"]
categories = ["Webassembly"]
publish = true
[package.metadata.docs.rs]
all-features = true
default-target = "wasm32-wasi"
targets = ["wasm32-wasi"]
include = [
"LICENSE",
"README.md",
"Cargo.toml",
"/src",
"/witc"
]
[features]
default = ["codec", "device", "filter", "format", "software-resampling", "software-scaling","ffmpeg_6_0"]
codec = []
device = ["format"]
filter = []
format = ["codec"]
resampling = []
postprocessing = []
software-resampling = []
software-scaling = ["codec"]
ffmpeg_6_0 = []
[build-dependencies]
os_info = { version = "3.7.0", default-features = false }
powershell_script = "1.1.0"
[dependencies]
bitflags = "1.2"
[dependencies.image]
version = "0.23"
optional = true