-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
69 lines (56 loc) · 1.74 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[workspace.package]
version = "0.4.0"
edition = "2021"
license = "MIT"
description = "impl screencopy for wayland"
authors = ["Decodertalkers <[email protected]>"]
homepage = "https://github.com/Decodetalkers/haruhishot"
documentation = "https://docs.rs/libharuhishot/"
keywords = ["wayland"]
[package]
name = "haruhishot"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "haruhishot"
authors.workspace = true
homepage.workspace = true
keywords.workspace = true
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [".", "libharuhishot"]
[workspace.dependencies]
image = { version = "0.25", default-features = false, features = [
"jpeg",
"png",
"pnm",
] }
wayland-client = "0.31"
tracing-subscriber = "0.3.19"
tracing = "0.1.41"
[dependencies]
libharuhishot = { path = "libharuhishot", version = "0.4.0" }
#wayland-client = "=0.30.0-beta.13"
image.workspace = true
sctk = { version = "0.18.1", package = "smithay-client-toolkit", optional = true }
# in the feature
slint = { version = "1.8.0", optional = true }
tracing-subscriber.workspace = true
tracing.workspace = true
clap = "4.5.22"
once_cell = "1.20.2"
dialoguer = { version = "0.11.0", features = ["fuzzy-select"] }
wayland-client = { workspace = true, optional = true }
notify-rust = { version = "4.11.3", optional = true, features = ["images"] }
xkbcommon = "0.8.0"
swayipc = { version = "3.0.3", optional = true }
anstyle = "1.0.10"
# impl it in the feature
[build-dependencies]
slint-build = { version = "1.8.0", optional = true }
[features]
notify = ["notify-rust"]
gui = ["slint", "slint-build"]
sway = ["sctk", "swayipc", "wayland-client"]
all = ["notify", "gui", "sway"]