-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (38 loc) · 934 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "turbo-fiesta"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
device_query = "1.1.3"
serde = { version = "1.0.192", features = ["derive", "rc"] }
serde_json = "1.0.108"
tungstenite = "0.20.1"
url = "2.4.1"
tokio = { version = "1", features = ["full"] }
warp = "0.3"
tokio-stream = { version = "0.1.1", features = ["net"] }
futures-util = { version = "0.3", default-features = false, features = [
"sink",
] }
[dependencies.windows-sys]
version = "0.52.0"
features = ["Win32_Foundation", "Win32_UI_WindowsAndMessaging"]
[[bin]]
name = "client"
path = "src/client.rs"
[[bin]]
name = "server"
path = "src/server.rs"
[[bin]]
name = "comp"
path = "src/comp.rs"
[[bin]]
name = "enum"
path = "src/enum.rs"
# [[bin]]
# name = "serve"
# path = "src/serve.rs"
# [[bin]]
# name = "rearend"
# path = "src/rearend.rs"