-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
51 lines (48 loc) · 1.63 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 = "hd_fpv_video_tool"
description = "A software tool to manipulate video files and OSD files recoded with the DJI and Walksnail Avatar FPV systems"
version = "2.0.2"
edition = "2021"
license = "GPL-2.0-only"
authors = ["Michel Pastor <[email protected]>"]
rust-version = "1.70"
repository = "https://github.com/shellixyz/hd_fpv_video_tool"
homepage = "https://github.com/shellixyz/hd_fpv_video_tool"
keywords = ["dji", "fpv", "video", "osd"]
categories = ["command-line-utilities", "encoding", "multimedia"]
readme = "README.md"
exclude = ["*.webm", "*.osd", "*.mp4", "*.bin"]
publish = false
[workspace]
members = ["appimage_builder", "appimage_builder/runner"]
[dependencies]
clap = { version = "4.0.18", features = ["derive", "string"] }
image = { version = "0.24.9", features = ["rgb", "png"], default-features = false }
log = "0.4.17"
strum = { version = "0.24.1", features = ["derive"] }
derive_more = "0.99.17"
byte_struct = "0.9.0"
hd_fpv_osd_font_tool = { version = "~1", git = "https://github.com/shellixyz/hd_fpv_osd_font_tool" }
getset = "0.1.2"
rayon = "1.5.3"
indicatif = { version = "0.17.1", features = ["rayon"] }
thiserror = "1.0.37"
anyhow = "1.0.66"
regex = "1.7.0"
lazy_static = "1.4.0"
ffmpeg-next = "7.0.1"
tokio = { version = "1.22.0", features = ["rt-multi-thread", "macros"] }
itertools = "0.12.1"
path-absolutize = "3.0.14"
clap_complete = "4.0.6"
clap_mangen = "0.2.5"
env_logger = "0.10.0"
home = "0.5.4"
indoc = "2.0.5"
ringbuffer = "0.10.0"
fs-err = { git = "https://github.com/shellixyz/fs-err", branch = "custom", version = "3.0.0" }
ambassador = "0.3.5"
[profile.release]
panic = 'abort'
codegen-units = 1
opt-level = 3