-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
51 lines (46 loc) · 1.17 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
50
51
[package]
name = "grav1synth"
version = "0.1.0-beta.6"
edition = "2021"
rust-version = "1.59.0"
license = "MIT"
repository = "https://github.com/rust-av/grav1synth"
description = "Grain Synth analyzer and editor for AV1 files"
keywords = ["video", "multimedia", "av1"]
categories = ["multimedia", "multimedia::video", "multimedia::encoding"]
exclude = ["/dav1d-test-data", "/tests"]
[dependencies]
anyhow = "1.0.55"
arrayvec = "0.7.2"
av1-grain = "0.2.3"
bit = "0.1.1"
bitvec = "1.0.1"
clap = { version = "4.0.2", features = ["derive"] }
crossterm = "0.26.0"
dialoguer = "0.10.1"
ffmpeg = { version = "2.0.1", default-features = false, features = [
"format",
], package = "ffmpeg-the-third" }
indicatif = "0.17.1"
log = "0.4.17"
nom = "7.1.0"
num-rational = "0.4.1"
num-traits = "0.2.15"
num_enum = "0.5.7"
pretty_env_logger = "0.4.0"
scoped_threadpool = "0.1.9"
video-resize = "0.1.0"
[dev-dependencies]
interpolate_name = "0.2.3"
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
tempfile = "3.3.0"
[features]
default = []
ffmpeg_static = ["ffmpeg/static", "ffmpeg/build"]
unstable = ["av1-grain/unstable"]
[profile.dev]
opt-level = 1
[profile.release]
codegen-units = 1
lto = "thin"