41 lines
894 B
TOML
41 lines
894 B
TOML
[package]
|
|
name = "minecraft-log-viewer"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
axum = { version = "0.8", features = ["ws"] }
|
|
base64 = "0.22"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
flate2 = "1"
|
|
futures-util = "0.3"
|
|
http = "1"
|
|
ipnet = "2"
|
|
mime_guess = "2"
|
|
notify = "8"
|
|
once_cell = "1"
|
|
regex = "1"
|
|
rust-embed = "8"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
sha2 = "0.10"
|
|
tar = "0.4"
|
|
thiserror = "2"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tower-http = { version = "0.6", features = ["catch-panic", "limit", "request-id", "set-header", "trace"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
tower = { version = "0.5", features = ["util"] }
|
|
tokio-tungstenite = "0.27"
|
|
|
|
[profile.release]
|
|
lto = "thin"
|
|
strip = true
|
|
codegen-units = 1
|
|
|