-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
52 lines (47 loc) · 1.29 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
52
[package]
name = "wl-screenrec"
description = "High performance screen/audio recorder for wlroots"
license-file = "LICENSE"
homepage = "https://github.com/russelltg/wl-screenrec"
repository = "https://github.com/russelltg/wl-screenrec"
version = "0.1.5"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4", default-features = false, features = [
"std",
"derive",
"help",
"color",
"usage",
"error-context",
"suggestions",
] }
wayland-client = { version = "0.31", features = ["log"] }
wayland-backend = { version = "0.3.3", features = ["log"] }
wayland-protocols = { version = "0.32", features = [
"client",
"unstable",
"staging",
] }
wayland-protocols-wlr = { version = "0.3", features = ["client"] }
ffmpeg-next = "7.0.1"
ffmpeg-sys-next = "7.0.0" # need direct dep on -sys to get metadata to consume in build.rs
thiserror = "1.0.38"
human-size = "0.4.2"
signal-hook = "0.3.15"
anyhow = "1.0.71"
libc = "0.2.147"
simplelog = "0.12.1"
log = "0.4.21"
clap_complete = "4.5.8"
log-once = "0.4.1"
drm = "0.14.0"
[dev-dependencies]
nix = { version = "0.29.0", default-features = false, features = [
"signal",
"process",
] }
serde_json = "1.0.103"
[profile.release]
lto = "thin"