Remove `-nursery` from urls
This commit is contained in:
parent
711d17fb3c
commit
ea5db23a6a
|
@ -4,8 +4,8 @@ name = "compiler_builtins"
|
||||||
version = "0.1.19"
|
version = "0.1.19"
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/rust-lang-nursery/compiler-builtins"
|
repository = "https://github.com/rust-lang/compiler-builtins"
|
||||||
homepage = "https://github.com/rust-lang-nursery/compiler-builtins"
|
homepage = "https://github.com/rust-lang/compiler-builtins"
|
||||||
documentation = "https://docs.rs/compiler_builtins"
|
documentation = "https://docs.rs/compiler_builtins"
|
||||||
description = """
|
description = """
|
||||||
Compiler intrinsics used by the Rust compiler. Also available for other targets
|
Compiler intrinsics used by the Rust compiler. Also available for other targets
|
||||||
|
|
10
README.md
10
README.md
|
@ -19,7 +19,7 @@ building:
|
||||||
``` toml
|
``` toml
|
||||||
# Cargo.toml
|
# Cargo.toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
compiler_builtins = { git = "https://github.com/rust-lang-nursery/compiler-builtins" }
|
compiler_builtins = { git = "https://github.com/rust-lang/compiler-builtins" }
|
||||||
```
|
```
|
||||||
|
|
||||||
``` rust
|
``` rust
|
||||||
|
@ -40,11 +40,11 @@ implementation as well for unimplemented intrinsics:
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies.compiler_builtins]
|
[dependencies.compiler_builtins]
|
||||||
git = "https://github.com/rust-lang-nursery/compiler-builtins"
|
git = "https://github.com/rust-lang/compiler-builtins"
|
||||||
features = ["c"]
|
features = ["c"]
|
||||||
```
|
```
|
||||||
|
|
||||||
[an issue]: https://github.com/rust-lang-nursery/compiler-builtins/issues
|
[an issue]: https://github.com/rust-lang/compiler-builtins/issues
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
|
@ -61,8 +61,8 @@ features = ["c"]
|
||||||
|
|
||||||
[1]: https://github.com/rust-lang/compiler-rt/tree/8598065bd965d9713bfafb6c1e766d63a7b17b89/test/builtins/Unit
|
[1]: https://github.com/rust-lang/compiler-rt/tree/8598065bd965d9713bfafb6c1e766d63a7b17b89/test/builtins/Unit
|
||||||
[2]: https://github.com/rust-lang/compiler-rt/tree/8598065bd965d9713bfafb6c1e766d63a7b17b89/lib/builtins
|
[2]: https://github.com/rust-lang/compiler-rt/tree/8598065bd965d9713bfafb6c1e766d63a7b17b89/lib/builtins
|
||||||
[3]: https://github.com/rust-lang-nursery/compiler-builtins/blob/0ba07e49264a54cb5bbd4856fcea083bb3fbec15/build.rs#L180-L265
|
[3]: https://github.com/rust-lang/compiler-builtins/blob/0ba07e49264a54cb5bbd4856fcea083bb3fbec15/build.rs#L180-L265
|
||||||
[4]: https://travis-ci.org/rust-lang-nursery/compiler-builtins
|
[4]: https://travis-ci.org/rust-lang/compiler-builtins
|
||||||
|
|
||||||
### Porting Reminders
|
### Porting Reminders
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue