1
0
mirror of https://github.com/actix/examples synced 2025-06-28 09:50:36 +02:00
Roman Frołow
2020-01-12 14:04:02 +01:00
parent 9c34ded6fd
commit e89687e712
28 changed files with 32 additions and 42 deletions

View File

@ -8,5 +8,4 @@ workspace = ".."
[dependencies]
actix-web = "2.0.0"
actix-rt = "1.0.0"
serde = "1.0"
serde_derive = "1.0"
serde = { version = "1.0", features = ["derive"] }

View File

@ -1,5 +1,4 @@
#[macro_use]
extern crate serde_derive;
use serde::{Deserialize, Serialize};
use actix_web::{
middleware, web, App, HttpRequest, HttpResponse, HttpServer, Responder, Result,