-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
93 lines (90 loc) · 3.62 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
82
83
84
85
86
87
88
89
90
91
92
93
[workspace]
resolver = "2"
members = [
"crates/bunyan_log_monitor",
"crates/chat-app-client",
"crates/chat-app-server",
"crates/db-types",
"crates/egui-helpers",
"crates/plugin-chat",
"crates/switch-db",
"crates/tracked-cancellations",
"crates/ws-auth",
"crates/ws-helpers",
"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.6"
actix-session = "0.10.1"
actix-web = { version = "4.9.0", features = ["rustls-0_23"] }
actix-ws = "0.3.0"
anyhow = "1.0.95"
argon2 = "0.5.3"
bytestring = "1.4.0"
chrono = { version = "0.4.39", default-features = false, features = ["clock", "serde"] }
clap = "4.5.29"
config = { version = "0.15.8", default-features = false, features = ["toml"] }
db-types = { version = "*", path = "crates/db-types", default-features = false }
eframe = { version = "0.31.0", default-features = false }
egui = { version = "0.31.0", default-features = false }
egui-helpers = { version = "*", path = "crates/egui-helpers" }
egui_extras = "0.31.0"
ewebsock = { version = "0.8.0", features = ["tls"] }
futures-util = "0.3.31"
getrandom = "0.3.1"
getrandom_old = { version = "0.2.15", package = "getrandom" }
insta = "1.42.1"
log = "0.4.25"
plugin-chat = { version = "*", path = "crates/plugin-chat" }
pretty_assertions = "1.4.1"
rand = "0.8"
reqwest-cross = { version = "0.7.1", default-features = false, features = ["native-tokio", "json", "cookies", "http2", "rustls-tls-native-roots"] }
ringbuffer = "0.15.0"
ron = "0.8.1"
rstest = "0.24.0"
rustls = "0.23.23"
rustls-pemfile = "2.2.0"
secrecy = { version = "0.10.3", features = ["serde"] }
serde = { version = "1.0.217", features = ["derive"] }
serde-aux = "4.6.0"
serde_json = "1.0.138"
shuttle-runtime = { version = "0.52.0", default-features = false }
shuttle-shared-db = { version = "0.52.0", default-features = false }
sqlx = { version = "0.8.3", default-features = false }
static_assertions = "1.1.0"
strum = { version = "0.27.0", features = ["derive"] }
thiserror = "2.0.11"
tokio = { version = "1.43.0", default-features = false }
tokio-tungstenite = { version = "*", default-features = false, features = ["rustls-tls-native-roots"] }
tokio-util = "0.7.13"
tracing = "0.1.41"
tracing-actix-web = "0.7.15"
tracing-appender = "0.2.3"
tracing-bunyan-formatter = "0.3.10"
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.19", features = ["fmt", "json"] }
tracked-cancellations = { version = "*", path = "crates/tracked-cancellations" }
uuid = { version = "1.13.1", features = ["v4", "serde", "rng-getrandom"] }
version-control-clean-check = "0.1.4"
wasm-bindgen-test = "0.3.50"
web-sys = "0.3.77"
web-time = "1.1.0"
ws-auth = { version = "*", path = "crates/ws-auth" }
ws-helpers = { version = "*", path = "crates/ws-helpers" }
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" }