From ef8f4e2dac50d2cec8b2afade04b1ba0a2cb3cf2 Mon Sep 17 00:00:00 2001 From: travis-update-bot Date: Fri, 13 Nov 2015 17:07:48 +0000 Subject: [PATCH] Update blog to 86d1ff145d3a2e93f9fdcc59de44f7589ff5c5ee --- _posts/2015-09-02-setup-rust.md | 2 +- _posts/2015-10-23-printing-to-screen.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_posts/2015-09-02-setup-rust.md b/_posts/2015-09-02-setup-rust.md index 318fb993..366c64f7 100644 --- a/_posts/2015-09-02-setup-rust.md +++ b/_posts/2015-09-02-setup-rust.md @@ -131,7 +131,7 @@ Fortunately there already is a crate for that: [rlibc]. When we look at its [sou ```toml ... [dependencies] -rlibc = "*" +rlibc = "0.1.4" ``` and an `extern crate` definition in our `src/lib.rs`: diff --git a/_posts/2015-10-23-printing-to-screen.md b/_posts/2015-10-23-printing-to-screen.md index 90c7d8af..0989ebe2 100644 --- a/_posts/2015-10-23-printing-to-screen.md +++ b/_posts/2015-10-23-printing-to-screen.md @@ -315,8 +315,8 @@ To use a spinning mutex, we can add the [spin crate] as a dependency in Cargo.to ```toml ... [dependencies] -rlibc = "*" -spin = "*" +rlibc = "0.1.4" +spin = "0.3.4" ``` and a `extern crate spin;` definition in `src/lib.rs`. Then we can use the spinning Mutex to provide interior mutability to our static writer: