Remove -nursery from urls

This commit is contained in:
Alex Crichton 2019-09-25 11:20:49 -07:00
parent 47ffaa8017
commit 8532fb1c75
3 changed files with 8 additions and 8 deletions

View File

@ -14,13 +14,13 @@
corresponding issue. corresponding issue.
- :tada: - :tada:
[issue tracker]: https://github.com/rust-lang-nursery/libm/issues [issue tracker]: https://github.com/rust-lang/libm/issues
[src]: https://git.musl-libc.org/cgit/musl/tree/src/math [src]: https://git.musl-libc.org/cgit/musl/tree/src/math
[`src/math/truncf.rs`]: https://github.com/rust-lang-nursery/libm/blob/master/src/math/truncf.rs [`src/math/truncf.rs`]: https://github.com/rust-lang/libm/blob/master/src/math/truncf.rs
Check [PR #65] for an example. Check [PR #65] for an example.
[PR #65]: https://github.com/rust-lang-nursery/libm/pull/65 [PR #65]: https://github.com/rust-lang/libm/pull/65
## Tips and tricks ## Tips and tricks

View File

@ -6,7 +6,7 @@ documentation = "https://docs.rs/libm"
keywords = ["libm", "math"] keywords = ["libm", "math"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
name = "libm" name = "libm"
repository = "https://github.com/rust-lang-nursery/libm" repository = "https://github.com/rust-lang/libm"
version = "0.2.0" version = "0.2.0"
edition = "2018" edition = "2018"

View File

@ -7,12 +7,12 @@ A port of [MUSL]'s libm to Rust.
## Goals ## Goals
The short term goal of this library is to [enable math support (e.g. `sin`, `atan2`) for the The short term goal of this library is to [enable math support (e.g. `sin`, `atan2`) for the
`wasm32-unknown-unknown` target][wasm] (cf. [rust-lang-nursery/compiler-builtins][pr]). The longer `wasm32-unknown-unknown` target][wasm] (cf. [rust-lang/compiler-builtins][pr]). The longer
term goal is to enable [math support in the `core` crate][core]. term goal is to enable [math support in the `core` crate][core].
[wasm]: https://github.com/rust-lang-nursery/libm/milestone/1 [wasm]: https://github.com/rust-lang/libm/milestone/1
[pr]: https://github.com/rust-lang-nursery/compiler-builtins/pull/248 [pr]: https://github.com/rust-lang/compiler-builtins/pull/248
[core]: https://github.com/rust-lang-nursery/libm/milestone/2 [core]: https://github.com/rust-lang/libm/milestone/2
## Already usable ## Already usable