initial echo project website (rust + axum + askama)
This commit is contained in:
commit
899040a319
11 changed files with 1480 additions and 0 deletions
18
Cargo.toml
Normal file
18
Cargo.toml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
[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
|
||||
Loading…
Add table
Add a link
Reference in a new issue