-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 843 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 843 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
[package]
name = "bevymud"
version = "0.1.0"
edition = "2024"
[dependencies]
async-channel = "2.3.1"
async-io = "2.6.0"
async-net = "2.0.0"
bcrypt = "0.17.0"
bevy_asset_loader = "0.23.0"
bevy_yarnspinner = { path = "vendor/YarnSpinner-Rust/crates/bevy_plugin" }
libmudtelnet = "2.0.1"
mlua = { version = "0.11.4", features = ["lua54", "async", "send", "macros", "vendored"] }
phf = { version = "0.12.1", features = ["macros"] }
# sqlx = { version = "0.8.6", features = ["runtime-async-std", "mysql", "tls-native-tls", "migrate"] }
sqlx = { path = "vendor/sqlx", features = ["runtime-async-std", "mysql", "tls-native-tls", "migrate"] }
thiserror = "2.0.17"
[dependencies.bevy]
version = "0.16.1"
default-features = false
features = [
"bevy_asset",
"bevy_state",
]
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3