HollowPS/Cargo.toml

56 lines
1.4 KiB
TOML
Raw Permalink Normal View History

2024-03-19 05:30:08 +00:00
[workspace]
2024-05-24 16:45:45 +00:00
members = [ "common","gameserver", "protocol", "qwer", "qwer/qwer-derive", "sdkserver"]
2024-03-19 05:30:08 +00:00
resolver = "2"
[workspace.package]
version = "0.1.0"
[workspace.dependencies]
ansi_term = "0.12.1"
anyhow = "1.0.81"
axum = "0.7.4"
axum-server = "0.6.0"
byteorder = "1.5.0"
dirs = "5.0.1"
dotenv = "0.15.0"
encoding = "0.2.33"
env_logger = "0.11.3"
heck = "0.5.0"
hex = "0.4.3"
leb128 = "0.2.5"
paste = "1.0.14"
sysinfo = "0.30.7"
2024-05-26 19:08:56 +00:00
rand = "0.8.5"
2024-03-19 05:30:08 +00:00
csv = "1.3.0"
2024-03-19 15:52:36 +00:00
serde = { version = "1.0.197", features = ["derive"] }
2024-03-19 05:30:08 +00:00
serde_json = "1.0.114"
tokio = { version = "1.36.0", features = ["full"] }
tokio-util = { version = "0.7.10", features = ["io"] }
tracing = "0.1.40"
tracing-futures = "0.2.5"
tracing-log = { version = "0.2.0", features = ["std", "log-tracer"] }
tracing-subscriber = { version = "0.3.18", features = [
"env-filter",
"registry",
"std",
"tracing",
"tracing-log",
] }
tracing-bunyan-formatter = "0.3.9"
itertools = "0.13.0"
2024-05-24 16:45:45 +00:00
common = { version = "0.1.0", path = "common" }
2024-03-19 05:30:08 +00:00
protocol = { version = "0.1.0", path = "protocol" }
qwer = { version = "0.1.0", path = "qwer", features = ["full"] }
qwer-derive = { version = "0.1.0", path = "qwer/qwer-derive" }
[profile.release]
strip = true # Automatically strip symbols from the binary.
lto = true # Link-time optimization.
opt-level = 3 # Optimize for speed.
codegen-units = 1 # Maximum size reduction optimizations.