-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
51 lines (41 loc) · 1.61 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 = "stitch-animation"
version = "0.1.2"
authors = ["The8472 <[email protected]>"]
[profile.release]
lto = true
debug = true
panic = 'abort'
opt-level = 3
[profile.dev]
opt-level = 1
codegen-units = 4
[dependencies]
#ffmpeg = {version = "0.2.0-alpha.2", git = "https://github.com/retrry/rust-ffmpeg.git", rev = "db95408164d278809b12e2e77ed90025ed6431ec" }
ffmpeg = {version = "0.2.0-alpha.2", git = "https://github.com/meh/rust-ffmpeg.git", rev = "8cf47c7ec6356a1d0a9cd53ffa67c424d2e800c7" }
#ffmpeg = {version = "0.2.0-alpha.2", git = "https://github.com/meh/rust-ffmpeg.git" }
#stdsimd = {version = "0.0.1", git = "https://github.com/BurntSushi/stdsimd.git", rev = "ff6021b72e8cc1e7db942847d99278fe0056c245"}
libc = "0.2.0"
clap = "2.25.0"
rand = "0.3"
simd = "0.2.0"
euclid = "0.15.1"
rayon = "0.8.2"
itertools = "0.6.1"
float-ord = "0.1.2"
atomic = {version = "0.3.4", features = ["nightly"]}
oxipng = "0.16.3"
std-semaphore = "0.1.0"
#[replace]
#"ffmpeg-sys:3.3.2" = {git = "https://github.com/meh/rust-ffmpeg-sys.git" }
#"ffmpeg-sys:3.3.2" = {git = "https://github.com/rrty/rust-ffmpeg-sys.git" }
#"ffmpeg-sys:3.2.1" = {path = "./ffmpeg-sys"}
#"simd:0.2.0" = {git = "https://github.com/the8472/simd.git", branch = "avx_sad_shuffle"}
[patch.crates-io]
#ffmpeg-sys = {git = "https://github.com/meh/rust-ffmpeg-sys.git" }
#ffmpeg-sys = { path = "../rust-ffmpeg-sys" }
"ffmpeg-sys" = {path = "./ffmpeg-sys"}
#ffmpeg-sys = {git = "https://github.com/retrry/rust-ffmpeg-sys.git", branch = "motion_vector" }
simd = {git = "https://github.com/the8472/simd.git", branch = "avx_sad_shuffle"}
[features]
doc = ["simd/doc"]