1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-04-25 08:27:44 +00:00
kawari/Cargo.toml

90 lines
2.4 KiB
TOML
Raw Normal View History

2023-10-04 19:06:59 -04:00
[package]
name = "kawari"
description = "A server replacement for a certain MMO."
2025-03-22 21:49:05 -04:00
authors = ["Joshua Goins <josh@redstrate.com>"]
2023-10-04 19:06:59 -04:00
version = "0.1.0"
2025-03-08 13:20:22 -05:00
edition = "2024"
2025-03-22 21:49:05 -04:00
license = "GPL-3.0"
homepage = "https://xiv.zone/kawari"
repository = "https://github.com/redstrate/Kawari"
readme = "README.md"
2023-10-04 19:06:59 -04:00
[[bin]]
name = "kawari-frontier"
2023-10-05 12:09:05 -04:00
[[bin]]
name = "kawari-admin"
2023-10-05 13:09:21 -04:00
[[bin]]
name = "kawari-login"
2023-10-06 17:46:58 -04:00
[[bin]]
name = "kawari-patch"
[[bin]]
name = "kawari-web"
[[bin]]
name = "kawari-lobby"
[[bin]]
name = "kawari-world"
required-features = ["oodle"]
2023-10-04 19:06:59 -04:00
[profile.release]
lto = true
strip = true
opt-level = "z"
codegen-units = 1
panic = "abort"
[features]
default = []
oodle = []
[build-dependencies]
# Serialization of IPC opcodes
serde = { version = "1.0", features = ["derive"], default-features = false }
serde_json = { version = "1.0", features = ["std"], default-features = false }
2023-10-04 19:06:59 -04:00
[dependencies]
# Used for the web servers
axum = { version = "0.8", features = ["json", "tokio", "http1", "form", "query"], default-features = false }
# Serialization used in almost every server
serde = { version = "1.0", features = ["derive"], default-features = false }
2024-05-11 12:17:33 -04:00
serde_json = { version = "1.0", default-features = false }
serde_yaml_ng = { version = "0.10", default-features = false }
# Async runtime
tokio = { version = "1.44", features = ["macros", "rt", "rt-multi-thread", "io-util"], default-features = false }
# Logging
2024-05-11 12:17:33 -04:00
tracing = { version = "0.1", default-features = false }
2024-05-11 12:30:53 -04:00
tracing-subscriber = { version = "0.3", features = ["fmt"], default-features = false }
# Used currently for SID generation
rand = { version = "0.9", features = ["std", "thread_rng"], default-features = false }
# HTML templates used in the web servers
minijinja = { version = "2.8", features = ["serde"], default-features = false }
# Serialization of packets
2025-03-12 16:58:18 -04:00
binrw = { version = "0.14", features = ["std"], default-features = false }
# Used in encryption of packets
md5 = { version = "0.7", default-features = false }
# Used to access game data
physis = { git = "https://github.com/redstrate/physis" }
# Used for data persistence
rusqlite = { version = "0.34", features = ["bundled"], default-features = false }
# needed for c-style bitflags
# cannot upgrade to 2.0.0, breaking changes that aren't recoverable: https://github.com/bitflags/bitflags/issues/314
bitflags = { version = "1.3", default-features = false }
# For server-side scripting
mlua = { version = "0.10", features = ["lua51", "vendored", "send"] }