-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (57 loc) · 1.69 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
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]
resolver = "2"
members = [
"client-interface",
"clip-sync",
"clip-sync-cli",
"clip-sync-config",
"clip-sync-server",
"mqtt-client",
"websocket-client",
"websocket-server",
]
[workspace.package]
authors = ["Chen Xu <[email protected]>"]
version = "0.8.2"
edition = "2021"
description = "A clipboard sync tool"
rust-version = "1.75.0"
[workspace.dependencies]
anyhow = "1"
log = "0.4"
env_logger = "0.11"
clap = { version = "4" }
clap-verbosity-flag = "2"
futures = { version = "0.3" }
tokio = { version = "1" }
serde = { version = "1" }
serde_json = "1"
bincode = "1"
toml = "0.8"
platform-dirs = "0.3"
futures-util = "0.3"
poem = { version = "3" }
#tantivy = { version = "0.21" }
# Tantivy 0.21 relies on an older version of zstd, which cannot compile at the moment due to recent incident.
tantivy = { git = "https://github.com/quickwit-oss/tantivy", commit = "4e79e11007b6c9fc3d3965beefe33e1ffcf641d3" }
chrono = "0.4"
png = { version = "0.17" }
sha2 = { version = "0.10" }
hex = { version = "0.4" }
moka = { version = "0.12", features = ["future"] }
reqwest = { version = "0.12" }
rumqttc = { version = "0.24" }
arboard = { version = "3" }
clipboard-master = { version = "3" }
gethostname = { version = "0.4" }
random-string = { version = "1" }
tokio-tungstenite = { version = "0.21.0", features = ["rustls-tls-native-roots"] }
url = { version = "2" }
webbrowser = { version = "0.8" }
image = { version = "0.25" }
tray-item = { version = "0.10" }
clip-sync-config = { path = "clip-sync-config" }
client-interface = { path = "client-interface" }
mqtt-client = { path = "mqtt-client" }
websocket-client = { path = "websocket-client" }
websocket-server = { path = "websocket-server" }