-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
30 lines (27 loc) · 1.17 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
[package]
name = "clipboard-history-x11"
version.workspace = true
authors.workspace = true
edition.workspace = true
description = "X11 Ringboard clipboard listener."
repository.workspace = true
keywords = ["ringboard", "clipboard", "tools", "x11"]
categories = ["command-line-utilities", "development-tools", "filesystem"]
license.workspace = true
[dependencies]
arrayvec = "0.7.6"
env_logger = { version = "0.11.6", default-features = false }
error-stack = { version = "0.5.0", default-features = false, features = ["std"] }
log = { version = "0.4.22", features = ["release_max_level_info"] }
ringboard-sdk = { package = "clipboard-history-client-sdk", version = "0", path = "../client-sdk", features = ["error-stack", "config"] }
ringboard-watcher-utils = { package = "clipboard-history-watcher-utils", version = "0", path = "../watcher-utils" }
rustix = { version = "0.38.42", features = ["fs", "time"] }
thiserror = "2.0.9"
toml = { version = "0.8.19", default-features = false, features = ["parse"] }
x11rb = { version = "0.13.1", features = ["xfixes", "xtest"] }
[features]
default = ["human-logs"]
human-logs = ["env_logger/default"]
[[bin]]
name = "ringboard-x11"
path = "src/main.rs"