-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 1 KB
/
Cargo.toml
File metadata and controls
42 lines (38 loc) · 1 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
[package]
name = "oxipaste"
version = "0.2.0"
edition = "2024"
description = "clipboard manager written in Rust/Iced"
license = "GPL-3.0-or-later"
[[bin]]
name = "oxipaste_daemon"
path = "src/daemon/main.rs"
[[bin]]
name = "oxipaste_command_runner"
path = "src/command_runner/main.rs"
[[bin]]
name = "oxipaste"
path = "src/ui/main.rs"
[dependencies]
arboard = "3.5.0"
oxiced = { git = "https://github.com/Xetibo/oxiced", branch = "iced14" }
iced = { version = "0.14.0-dev", features = [
"advanced",
"canvas",
"image",
"svg",
"tokio",
], git = "https://github.com/iced-rs/iced" }
iced_layershell = { version = "0.14.0-dev", git = "https://github.com/waycrate/exwlshelleventloop" }
indexmap = "2.10.0"
once_cell = "1.21.3"
oxilib = "0.1.2"
serde = { version = "1.0.219", features = ["derive"] }
tokio = { version = "1.45.1", features = ["rt-multi-thread", "macros"] }
tokio-macros = "2.5.0"
toml = "0.9.5"
wayland-client = "0.31.11"
wayland-protocols-wlr = "0.3.9"
wl-clipboard-rs = "0.9.2"
xdg = "3.0.0"
zbus = "5.9.0"