-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (42 loc) · 1.28 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
[package]
name = "server"
version = "0.1.0"
edition = "2021"
author = "Hiroki Moto"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
active-win-pos-rs = "0.8.2"
arboard = "3.2.1"
async-trait = "0.1.73"
bytes = "1.5.0"
chrono = "0.4.31"
cmd_lib = "1.3.0"
color-eyre = "0.6.2"
env_logger = "0.10.0"
futures = "0.3.28"
image = { version = "0.24.7", features = ["jpeg", "png"] }
libp2p = { version = "0.52.3", features = ["async-std", "cbor", "dns", "gossipsub", "kad", "macros", "mdns", "noise", "quic", "request-response", "tcp", "tokio", "websocket", "yamux"] }
libp2p-core = "0.40.1"
native-windows-gui = "1.0.12"
native-windows-derive = "1.0.3"
once_cell = "1.18.0"
preferences = "1.1.0"
qp2p = "0.36.4"
rdev = "0.5.3"
regex = "1.9.5"
renet = "0.0.13"
rusty-tesseract = "1.1.7"
screenshots = "0.8.3"
serde = "1.0.188"
time = { version = "0.3.30", features = ["local-offset"] }
tokio = { version = "1.32.0", features = ["full"] }
trayicon = "0.1.3"
winapi = "0.3"
winsafe = { version = "0.0.18", features = ["gui"] }
zip = "0.6.6"
async-std = "1.12.0"
either = "1.9.0"
void = "1.0.2"
[target.'cfg(target_os = "windows")'.dependencies]
winit = "0.28"
winapi = { version = "0.3", features = ["winuser", "errhandlingapi", "processthreadsapi"] }