-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
81 lines (78 loc) · 2.86 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[workspace]
resolver = "2"
members = [
"crates/chat-app-client",
"crates/chat-app-server",
"crates/db-types",
"crates/plugin-chat",
"crates/switch-db",
"crates/tracked-cancellations",
"crates/ws-auth",
"crates/wykies-client-core",
"crates/wykies-server",
"crates/wykies-server-test-helper",
"crates/wykies-shared",
"crates/wykies-time",
]
[workspace.dependencies]
# TODO 4: Write a program to check a workspace to see if all dependencies are needed by comparing to Cargo files in member crates
actix-cors = "0.7.0"
actix-files = "0.6.2"
actix-session = "0.10.1"
actix-web = "4.6.0"
actix-ws = "0.3.0"
anyhow = "1.0.94"
argon2 = "0.5.3"
chrono = { version = "0.4.34", default-features = false, features = ["clock", "serde"] }
clap = "4.5.24"
config = { version = "0.15.4", default-features = false, features = ["toml"] }
db-types = { version = "*", path = "crates/db-types", default-features = false }
eframe = "0.30.0"
egui = { version = "0.30.0", default-features = false }
egui_extras = "0.30.0"
ewebsock = "0.8.0"
futures-util = "0.3.30"
getrandom = "0.2.15"
insta = "1.40.0"
log = "0.4.22"
plugin-chat = { version = "*", path = "crates/plugin-chat" }
rand = "0.8"
reqwest-cross = { version = "0.5.0", default-features = false, features = ["native-tokio", "json", "rustls-tls", "cookies"] }
ringbuffer = "0.15.0"
ron = "0.8.1"
rstest = "0.24.0"
secrecy = { version = "0.10.3", features = ["serde"] }
serde = { version = "1.0.217", features = ["derive"] }
serde-aux = "4.5.0"
serde_json = "1.0.135"
shuttle-runtime = { version = "0.50.0", default-features = false }
shuttle-shared-db = "0.50.0"
sqlx = { version = "0.8.2", default-features = false }
static_assertions = "1.1.0"
strum = "0.26.3"
thiserror = "2.0.9"
tokio = { version = "1.42.0", default-features = false }
tokio-util = "0.7.13"
tracing = "0.1.41"
tracing-actix-web = "0.7.11"
tracing-bunyan-formatter = "0.3.10"
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3", features = ["fmt", "json"] }
tracked-cancellations = { version = "*", path = "crates/tracked-cancellations" }
uuid = "1"
version-control-clean-check = "0.1.4"
wasm-bindgen-test = "0.3.42"
web-sys = "0.3.72"
web-time = "1.1.0"
ws-auth = { version = "*", path = "crates/ws-auth" }
wykies-client-core = { version = "*", path = "crates/wykies-client-core" }
wykies-server = { version = "*", path = "crates/wykies-server", default-features = false }
wykies-server-test-helper = { version = "*", path = "crates/wykies-server-test-helper" }
wykies-shared = { version = "*", path = "crates/wykies-shared" }
wykies-time = { version = "*", path = "crates/wykies-time" }
[profile.release]
opt-level = 2 # fast and small wasm
# https://doc.rust-lang.org/cargo/reference/overriding-dependencies.html#testing-a-bugfix
[patch.crates-io]
# shuttle-runtime = { git = "https://github.com/shuttle-hq/shuttle" }
# shuttle-shared-db = { git = "https://github.com/shuttle-hq/shuttle" }