From e431e59d78523c052e254cb65568f1ea4e5ff126 Mon Sep 17 00:00:00 2001 From: travis-update-bot Date: Wed, 27 Jan 2016 16:45:19 +0000 Subject: [PATCH] Update blog to 7b16d80d98f3399d74f30c8286f7cf776fdd9f51 --- _posts/2015-09-02-set-up-rust.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/_posts/2015-09-02-set-up-rust.md b/_posts/2015-09-02-set-up-rust.md index 9d479726..f103f8aa 100644 --- a/_posts/2015-09-02-set-up-rust.md +++ b/_posts/2015-09-02-set-up-rust.md @@ -19,6 +19,8 @@ We need a nightly compiler, as we will use many unstable features. To manage Rus [multirust]: https://github.com/brson/multirust +The code from this post (and all following) is [automatically tested](https://travis-ci.org/phil-opp/blog_os) every day and should always work for the newest nightly. If it doesn't, please [file an issue](https://github.com/phil-opp/blog_os/issues). + ## Creating a Cargo project [Cargo] is Rust excellent package manager. Normally you would call `cargo new` when you want to create a new project folder. We can't use it because our folder already exists, so we need to do it manually. Fortunately we only need to add a cargo configuration file named `Cargo.toml`: