-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (47 loc) · 1.46 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
[workspace]
resolver = "2"
members = [
"wizardrs-core",
"wizardrs-server",
"wizardrs-client"
]
[workspace.package]
authors = ["TgZ39"]
description = "Remake of the Wizard card game by Amigo with multiplayer"
edition = "2021"
license = "GPL-3.0-or-later"
readme = "README.md"
version = "0.1.2"
repository = "https://github.com/TgZ39/wizardrs"
homepage = "https://github.com/TgZ39"
[workspace.dependencies]
wizardrs-core = { path = "wizardrs-core" }
wizardrs-server = { path = "wizardrs-server" }
tokio = { version = "1.43", features = ["rt-multi-thread"] }
tokio-tungstenite = { version = "0.26", features = ["rustls"] }
tracing = "0.1"
tracing-subscriber = "0.3"
serde_json = "1.0"
futures = "0.3"
derive_more = { version = "2.0", features = ["full"] }
thiserror = "2.0"
uuid = { version = "1.12", features = ["v4", "serde"] }
egui = { version = "0.31", features = ["serde"] }
eframe = "0.31"
strum = { version = "0.27", features = ["derive"] }
arboard = "3.4"
egui_extras = { version = "0.31", features = ["all_loaders"] }
serde = { version = "1.0", features = ["derive"] }
directories = "6.0"
reqwest = { version = "0.12", features = ["rustls-tls"], default-features = false }
image = { version = "0.25", features = ["webp", "png", "jpeg", "gif"]}
rfd = "0.15"
chrono = "0.4"
tracing-appender = "0.2"
get_if_addrs = "0.5"
indexmap = "2.7"
ngrok = "0.13"
rand = "0.9"
url = "2.5"
self_update = { version = "0.42", features = ["rustls"], default-features = false }
semver = "1.0"