Axum/Actix alternative - Build a routing framework
Axum/Actix alternatifi - Routing framework olustur
HTTP uygulamasi
hyper = { version = "1", features = ["full"] }Servis soyutlamasi
tower = "0.4"URL yonlendirme
matchit = "0.8"Serializasyon
serde = { version = "1", features = ["derive"] }Copy this Cargo.toml to get started:
[package]
name = "my-web-framework"
version = "0.1.0"
edition = "2021"
[dependencies]
hyper = { version = "1", features = ["full"] }
tower = "0.4"
matchit = "0.8"
serde = { version = "1", features = ["derive"] }
thiserror = "1"
tracing = "0.1"Learn these patterns to build this project effectively: