-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (39 loc) · 878 Bytes
/
Cargo.toml
File metadata and controls
49 lines (39 loc) · 878 Bytes
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
[package]
name = "openr-type"
version = "0.2.1"
edition = "2021"
authors = ["houndslight"]
description = "A MonkeyType-inspired typing game with P2P multiplayer"
[dependencies]
# Graphics and UI
macroquad = "0.4"
# Networking
tokio = { version = "1.35", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bincode = "1.3"
# P2P networking
libp2p = { version = "0.53", features = ["tcp", "mdns", "noise", "yamux", "gossipsub", "identify"] }
futures = "0.3"
# Utilities
rand = "0.8"
chrono = "0.4"
once_cell = "1.19"
dirs = "5.0"
# Audio
rodio = "0.17"
reqwest = { version = "0.11", features = ["blocking"] }
# File dialogs
rfd = "0.14"
[[bin]]
name = "openr-type"
path = "src/main.rs"
[[bin]]
name = "server"
path = "src/server.rs"
[build-dependencies]
winres = "0.1"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1