-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (23 loc) · 708 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (23 loc) · 708 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
[package]
name = "simple_video_encoder"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "A simple video encoding library built on top of ffmpeg"
repository = "https://github.com/Ununoctium117/simple_video_encoder"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cairo-rs = { version = "0.16.3", optional = true }
image = { version ="0.24.5", optional = true }
ffmpeg-sys-next = "5.1.1"
[features]
default = ["image-input"]
cairo-input = ["cairo-rs"]
image-input = ["image"]
[[example]]
name = "cairo"
required-features = ["cairo-input"]
[[example]]
name = "image"
required-features = ["image-input"]