* Add actix-web v3 support * Add actix-web example * Resolve changelog PR number * Make sure that examples are built on CI * Format Cargo.toml consistently Co-authored-by: Chris Wong <lambda.fairy@gmail.com>
25 lines
521 B
Rust
25 lines
521 B
Rust
// do not use this line in your application
|
|
use actix_web_dep as actix_web;
|
|
|
|
use actix_web::{get, App, HttpServer, Result as AwResult};
|
|
use maud::{html, Markup};
|
|
use std::io;
|
|
|
|
#[get("/")]
|
|
async fn index() -> AwResult<Markup> {
|
|
Ok(html! {
|
|
html {
|
|
body {
|
|
h1 { "Hello World!" }
|
|
}
|
|
}
|
|
})
|
|
}
|
|
|
|
#[actix_web::main]
|
|
async fn main() -> io::Result<()> {
|
|
HttpServer::new(|| App::new().service(index))
|
|
.bind(("127.0.0.1", 8080))?
|
|
.run()
|
|
.await
|
|
}
|