From f722a0afb9f9d2ed9438e4b3b8ee97d217301981 Mon Sep 17 00:00:00 2001 From: ATM Date: Sun, 7 Feb 2021 16:42:48 +0530 Subject: [PATCH] ATM | linked warp web server example that works with this buildpack --- .gitignore | 1 + README.md | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 90468a8..b417153 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /cache/ /heroku-rust-cargo-hello/ /export +.idea diff --git a/README.md b/README.md index 76820fd..8e3716f 100644 --- a/README.md +++ b/README.md @@ -20,11 +20,14 @@ Here are several example projects: - [rust-buildpack-example-actix][] uses the popular [Actix][] framework, and runs on stable Rust. - [rust-buildpack-example-rocket][] uses the innovative [Rocket][] framework, which currently requires nightly Rust. +- [rust-buildpack-example-warp][] uses the super-easy [Warp][] framework, and runs on stable Rust. [rust-buildpack-example-actix]: https://github.com/emk/rust-buildpack-example-actix [Actix]: https://actix.rs/ [rust-buildpack-example-rocket]: https://github.com/emk/rust-buildpack-example-rocket [Rocket]: https://rocket.rs/ +[rust-buildpack-example-warp]: https://github.com/qalens/rust-buildpack-example-warp +[Warp]: https://docs.rs/warp ## Using this buildpack