From dd4e872f822796917d1e4d00c73ea0838af20443 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sat, 25 Mar 2023 15:49:28 +0100 Subject: [PATCH] Remove outdated paragraph with dead link in first edition --- blog/content/edition-1/posts/03-set-up-rust/index.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/blog/content/edition-1/posts/03-set-up-rust/index.md b/blog/content/edition-1/posts/03-set-up-rust/index.md index c0dcf287..cce7fc9d 100644 --- a/blog/content/edition-1/posts/03-set-up-rust/index.md +++ b/blog/content/edition-1/posts/03-set-up-rust/index.md @@ -31,8 +31,6 @@ nightly [rustup]: https://www.rustup.rs/ -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's 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`: