-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (44 loc) · 1.45 KB
/
Copy pathCargo.toml
File metadata and controls
48 lines (44 loc) · 1.45 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
[package]
name = "sss_lib"
version = "0.2.1"
publish = false
dist = false
repository.workspace = true
homepage.workspace = true
edition.workspace = true
license.workspace = true
# Library crate — bumps version + commit via cargo-release, but never tags.
# Only sss_cli + sss_code emit tags (those drive the Release workflow).
[package.metadata.release]
tag = false
[dependencies]
sss_core = { path = "../sss_core" }
clap.workspace = true
serde.workspace = true
merge2.workspace = true
tracing.workspace = true
thiserror.workspace = true
font-kit = "0.14"
pathfinder_geometry = "0.5"
imageproc = "0.26"
arboard = { version = "3.6", features = ["wayland-data-control"] }
image = { version = "0.25", default-features = false, features = [
"png",
"jpeg",
"rayon",
"webp",
] }
notify-rust = { version = "4.17", features = ["images"] }
# Native Wayland clipboard path so we don't leave arboard's fork-daemon
# behind whenever the user passes `--copy`. The wlroots
# `zwlr_data_control_manager_v1` protocol lets a clipboard manager
# (DankMaterialShell / cliphist / clipman / …) grab the offered data
# instantly; we then watch for our source being cancelled and exit
# cleanly. When no manager is present we fall back to arboard.
[target.'cfg(target_os = "linux")'.dependencies]
wayland-client = "0.31"
wayland-protocols-wlr = { version = "0.3", features = ["client"] }
rustix = { version = "1", features = ["event"] }
[dev-dependencies]
tempfile = "3"
toml = "0.8"