18 lines
480 B
TOML
18 lines
480 B
TOML
[package]
|
|
name = "echo-website"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "The echoIRCd project website — Rust + Axum."
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
axum = "0.7"
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread", "net", "signal"] }
|
|
askama = "0.12"
|
|
tower-http = { version = "0.6", features = ["trace", "compression-gzip"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
[profile.release]
|
|
opt-level = 2
|
|
strip = true
|