From 2f6baf4d31edca9ba5a9aec86a3979de18033998 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Thu, 12 Apr 2018 20:23:08 -0700 Subject: [PATCH 1/4] fix web-cors example --- web-cors/backend/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-cors/backend/src/main.rs b/web-cors/backend/src/main.rs index 599be2c..fd32cb1 100644 --- a/web-cors/backend/src/main.rs +++ b/web-cors/backend/src/main.rs @@ -31,7 +31,7 @@ fn main() { http::header::ACCEPT, http::header::CONTENT_TYPE]) .max_age(3600) - .finish().expect("Can not create CORS middleware") + .finish() .register(r); r.method(http::Method::POST).a(info); })) From 3a4a0e5b81d76e782d7c7a97b5d6645e3f379ded Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Thu, 12 Apr 2018 21:13:18 -0700 Subject: [PATCH 2/4] stable relese only --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 33dc26e..d922125 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,6 @@ cache: matrix: include: - - rust: 1.21.0 - rust: stable - rust: beta - rust: nightly From 04426d2b3fb8d3fb0b6c7b8539528e8833643c99 Mon Sep 17 00:00:00 2001 From: krircc Date: Fri, 13 Apr 2018 13:04:55 +0800 Subject: [PATCH 3/4] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index db658f0..24627e4 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,9 @@ A curated list of examples related to actix. +## more commulity project +* [Rust-webapp-starter](https://github.com/OUISRC/Rust-webapp-starter) : A full-stack Single Page Webapp written in actix-web with vuejs. + ## Contribute Welcome to contribute ! From 3b34efe8ea26ff2505dff14b803af44b295f315b Mon Sep 17 00:00:00 2001 From: krircc Date: Fri, 13 Apr 2018 13:26:48 +0800 Subject: [PATCH 4/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 24627e4..0c98760 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ A curated list of examples related to actix. -## more commulity project +## from commulity * [Rust-webapp-starter](https://github.com/OUISRC/Rust-webapp-starter) : A full-stack Single Page Webapp written in actix-web with vuejs. ## Contribute