-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
28 lines (25 loc) · 884 Bytes
/
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
[package]
name = "clipboard-history-egui"
version.workspace = true
authors.workspace = true
edition.workspace = true
description = "Ringboard egui client application."
repository.workspace = true
keywords = ["ringboard", "clipboard", "tools", "egui"]
categories = ["command-line-utilities", "development-tools", "filesystem"]
license.workspace = true
[dependencies]
eframe = { version = "0.30.0", default-features = false, features = ["glow"] }
image = "0.25.5"
ringboard-sdk = { package = "clipboard-history-client-sdk", version = "0", path = "../client-sdk", features = ["ui"] }
rustc-hash = "2.1.0"
rustix = { version = "0.38.42", features = ["fs"] }
tracy-client = { version = "0.17.6", optional = true }
[features]
default = ["x11", "wayland"]
trace = ["dep:tracy-client"]
x11 = ["eframe/x11"]
wayland = ["eframe/wayland"]
[[bin]]
name = "ringboard-egui"
path = "src/main.rs"