From cbd35de94cc71deaa428dd52df7eb8a1651dac24 Mon Sep 17 00:00:00 2001 From: Phaiax Date: Sat, 15 Oct 2016 19:18:12 +0200 Subject: [PATCH] Fix url in readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f2b97ed..54e8b61 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ this crate ends up, as long as it's there): ``` toml [dependencies] -compiler-builtins = { git = "https://github.com/rustc-lang-nursery/compiler-builtins" } +compiler_builtins = { git = "https://github.com/rust-lang-nursery/compiler-builtins" } ``` If you still get an "undefined reference to $INTRINSIC" error after that change, @@ -34,8 +34,8 @@ this intrinsic you can temporarily enable a fallback to the actual compiler-rt implementation as well for unimplemented intrinsics: ```toml -[dependencies.compiler-builtins] -git = "https://github.com/rustc-lang-nursery/compiler-builtins" +[dependencies.compiler_builtins] +git = "https://github.com/rust-lang-nursery/compiler-builtins" features = ["c"] ```