mirror of
https://gitea.tendokyu.moe/ppc/amnet.git
synced 2026-09-25 23:58:02 +03:00
31 lines
697 B
TOML
31 lines
697 B
TOML
[package]
|
|
name = "amnet"
|
|
edition = "2024"
|
|
build = "build.rs"
|
|
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
description.workspace = true
|
|
|
|
[lib]
|
|
name = "amnet"
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = true
|
|
|
|
[dependencies]
|
|
axum = "0.8.8"
|
|
hostname = "0.4"
|
|
tracing = "0.1"
|
|
rust-ini = "0.21"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tokio = { version = "1", features = ["rt-multi-thread", "net"] }
|
|
tower = "0.5.2"
|
|
tower-http = { version = "0.6.8", features = ["cors", "trace"] }
|
|
windows-sys = { version = "0.61.2", features = ["Win32_System_Console", "Win32_UI_Input_KeyboardAndMouse"] }
|
|
tracing-subscriber = "0.3.22"
|
|
|
|
[build-dependencies]
|
|
winresource = "0.1" |