-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (51 loc) · 1.47 KB
/
Cargo.toml
File metadata and controls
60 lines (51 loc) · 1.47 KB
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
[workspace.package]
version = "0.7.1"
edition = "2024"
license = "MIT"
description = "impl screencopy for wayland"
authors = ["Decodertalkers <aakari@tutanota.com>"]
homepage = "https://github.com/Decodetalkers/haruhishot"
repository = "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
repository.workspace = true
keywords.workspace = true
[workspace]
members = [".", "libharuhishot"]
[workspace.dependencies]
image = { version = "0.25", default-features = false, features = [
"jpeg",
"png",
"pnm",
] }
wayland-client = "0.31"
tracing-subscriber = "0.3.23"
tracing = "0.1.44"
wayland-protocols = { version = "0.32.12", default-features = false, features = [
"unstable",
"client",
"staging",
] }
thiserror = "2.0.18"
nix = { version = "0.31.2", features = ["fs", "mman"] }
memmap2 = "0.9.10"
[dependencies]
libharuhishot = { path = "libharuhishot", version = "0.7.1" }
image.workspace = true
memmap2.workspace = true
tracing-subscriber.workspace = true
tracing.workspace = true
clap = { version = "4.6.1", features = ["derive", "color"] }
dialoguer = { version = "0.12.0", features = ["fuzzy-select"] }
wayland-client.workspace = true
thiserror.workspace = true
notify-rust = { version = "4.16.0", features = ["images"] }
libwaysip = "0.6.1"