1
0
mirror of https://github.com/actix/examples synced 2025-06-26 17:17:42 +02:00

Update protobuf to actix-web 2.0.0 (#249)

* Update to actix-web 2.0.0

* Add README.md
This commit is contained in:
Elliot Jackson
2020-02-06 18:17:23 +01:00
committed by GitHub
parent d59129c212
commit 443b8197ed
6 changed files with 69 additions and 50 deletions

View File

@ -1,9 +1,3 @@
extern crate actix;
extern crate actix_protobuf;
extern crate actix_web;
extern crate bytes;
extern crate env_logger;
extern crate prost;
#[macro_use]
extern crate prost_derive;
@ -18,26 +12,23 @@ pub struct MyObj {
pub name: String,
}
fn index(msg: ProtoBuf<MyObj>) -> Result<HttpResponse> {
async fn index(msg: ProtoBuf<MyObj>) -> Result<HttpResponse> {
println!("model: {:?}", msg);
HttpResponse::Ok().protobuf(msg.0) // <- send response
}
fn main() {
::std::env::set_var("RUST_LOG", "actix_web=info,actix_server=info");
#[actix_rt::main]
async fn main() -> std::io::Result<()> {
std::env::set_var("RUST_LOG", "actix_web=debug,actix_server=info");
env_logger::init();
let sys = actix::System::new("protobuf-example");
HttpServer::new(|| {
App::new()
.wrap(middleware::Logger::default())
.service(web::resource("/").route(web::post().to(index)))
})
.bind("127.0.0.1:8081")
.unwrap()
.bind("127.0.0.1:8081")?
.shutdown_timeout(1)
.start();
println!("Started http server: 127.0.0.1:8081");
let _ = sys.run();
.run()
.await
}