Update links

This commit is contained in:
gnzlbg 2019-04-05 16:19:10 +02:00 committed by gnzlbg
parent 522c032dc3
commit 559d949860
11 changed files with 55 additions and 55 deletions

View File

@ -85,7 +85,7 @@ matrix:
# OSX # OSX
# FIXME: cannot jemalloc tests fail due to: # FIXME: cannot jemalloc tests fail due to:
# https://github.com/jemalloc/jemalloc/issues/1320 # https://github.com/jemalloc/jemalloc/issues/1320
# https://github.com/alexcrichton/jemallocator/issues/85 # https://github.com/gnzlbg/jemallocator/issues/85
- name: "i686-apple-darwin (nightly)" - name: "i686-apple-darwin (nightly)"
env: TARGET=i686-apple-darwin NO_JEMALLOC_TESTS=1 env: TARGET=i686-apple-darwin NO_JEMALLOC_TESTS=1
os: osx os: osx
@ -101,7 +101,7 @@ matrix:
osx_image: xcode10 osx_image: xcode10
rust: stable rust: stable
# FIXME: valgrind fails on OSX # FIXME: valgrind fails on OSX
# https://github.com/alexcrichton/jemallocator/issues/86 # https://github.com/gnzlbg/jemallocator/issues/86
- name: "x86_64-apple-darwin (nightly)" - name: "x86_64-apple-darwin (nightly)"
env: TARGET=x86_64-apple-darwin NO_JEMALLOC_TESTS=1 JEMALLOC_SYS_VERIFY_CONFIGURE=1 env: TARGET=x86_64-apple-darwin NO_JEMALLOC_TESTS=1 JEMALLOC_SYS_VERIFY_CONFIGURE=1
os: osx os: osx

View File

@ -12,8 +12,8 @@ license = "MIT/Apache-2.0"
readme = "README.md" readme = "README.md"
keywords = ["allocator", "jemalloc"] keywords = ["allocator", "jemalloc"]
categories = ["memory-management", "api-bindings"] categories = ["memory-management", "api-bindings"]
repository = "https://github.com/alexcrichton/jemallocator" repository = "https://github.com/gnzlbg/jemallocator"
homepage = "https://github.com/alexcrichton/jemallocator" homepage = "https://github.com/gnzlbg/jemallocator"
documentation = "https://docs.rs/jemallocator" documentation = "https://docs.rs/jemallocator"
description = """ description = """
A Rust allocator backed by jemalloc A Rust allocator backed by jemalloc
@ -21,11 +21,11 @@ A Rust allocator backed by jemalloc
edition = "2015" edition = "2015"
[badges] [badges]
appveyor = { repository = "alexcrichton/jemallocator" } appveyor = { repository = "gnzlbg/jemallocator" }
travis-ci = { repository = "alexcrichton/jemallocator" } travis-ci = { repository = "gnzlbg/jemallocator" }
codecov = { repository = "alexcrichton/jemallocator" } codecov = { repository = "gnzlbg/jemallocator" }
is-it-maintained-issue-resolution = { repository = "alexcrichton/jemallocator" } is-it-maintained-issue-resolution = { repository = "gnzlbg/jemallocator" }
is-it-maintained-open-issues = { repository = "alexcrichton/jemallocator" } is-it-maintained-open-issues = { repository = "gnzlbg/jemallocator" }
maintenance = { status = "actively-developed" } maintenance = { status = "actively-developed" }
[lib] [lib]

View File

@ -82,7 +82,7 @@ other targets are only tested on Rust nightly.
## Features ## Features
The `jemallocator` crate re-exports the [features of the `jemalloc-sys` The `jemallocator` crate re-exports the [features of the `jemalloc-sys`
dependency](https://github.com/alexcrichton/jemallocator/blob/master/jemalloc-sys/readme.md). dependency](https://github.com/gnzlbg/jemallocator/blob/master/jemalloc-sys/readme.md).
## License ## License
@ -101,12 +101,12 @@ Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in `jemallocator` by you, as defined in the Apache-2.0 license, for inclusion in `jemallocator` by you, as defined in the Apache-2.0 license,
shall be dual licensed as above, without any additional terms or conditions. shall be dual licensed as above, without any additional terms or conditions.
[travis]: https://travis-ci.com/alexcrichton/jemallocator [travis]: https://travis-ci.com/gnzlbg/jemallocator
[Travis-CI Status]: https://travis-ci.com/alexcrichton/jemallocator.svg?branch=master [Travis-CI Status]: https://travis-ci.com/gnzlbg/jemallocator.svg?branch=master
[appveyor]: https://ci.appveyor.com/project/alexcrichton/jemallocator/branch/master [appveyor]: https://ci.appveyor.com/project/gnzlbg/jemallocator/branch/master
[Appveyor Status]: https://ci.appveyor.com/api/projects/status/github/alexcrichton/jemallocator?branch=master&svg=true [Appveyor Status]: https://ci.appveyor.com/api/projects/status/github/gnzlbg/jemallocator?branch=master&svg=true
[Latest Version]: https://img.shields.io/crates/v/jemallocator.svg [Latest Version]: https://img.shields.io/crates/v/jemallocator.svg
[crates.io]: https://crates.io/crates/jemallocator [crates.io]: https://crates.io/crates/jemallocator
[docs]: https://docs.rs/jemallocator/badge.svg [docs]: https://docs.rs/jemallocator/badge.svg
[docs.rs]: https://docs.rs/jemallocator/ [docs.rs]: https://docs.rs/jemallocator/
[master_docs]: https://alexcrichton.github.io/jemallocator/jemallocator [master_docs]: https://gnzlbg.github.io/jemallocator/jemallocator

View File

@ -9,19 +9,19 @@ license = "MIT/Apache-2.0"
readme = "README.md" readme = "README.md"
categories = ["memory-management", "api-bindings", "development-tools" ] categories = ["memory-management", "api-bindings", "development-tools" ]
keywords = ["allocator", "jemalloc"] keywords = ["allocator", "jemalloc"]
repository = "https://github.com/alexcrichton/jemallocator" repository = "https://github.com/gnzlbg/jemallocator"
homepage = "https://github.com/alexcrichton/jemallocator" homepage = "https://github.com/gnzlbg/jemallocator"
documentation = "https://docs.rs/jemalloc-ctl" documentation = "https://docs.rs/jemalloc-ctl"
description = """ description = """
A safe wrapper over jemalloc's control and introspection APIs A safe wrapper over jemalloc's control and introspection APIs
""" """
[badges] [badges]
appveyor = { repository = "alexcrichton/jemallocator" } appveyor = { repository = "gnzlbg/jemallocator" }
travis-ci = { repository = "alexcrichton/jemallocator" } travis-ci = { repository = "gnzlbg/jemallocator" }
codecov = { repository = "alexcrichton/jemallocator" } codecov = { repository = "gnzlbg/jemallocator" }
is-it-maintained-issue-resolution = { repository = "alexcrichton/jemallocator" } is-it-maintained-issue-resolution = { repository = "gnzlbg/jemallocator" }
is-it-maintained-open-issues = { repository = "alexcrichton/jemallocator" } is-it-maintained-open-issues = { repository = "gnzlbg/jemallocator" }
maintenance = { status = "actively-developed" } maintenance = { status = "actively-developed" }
[dependencies] [dependencies]

View File

@ -64,13 +64,13 @@ Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in `jemalloc-ctl` by you, as defined in the Apache-2.0 license, for inclusion in `jemalloc-ctl` by you, as defined in the Apache-2.0 license,
shall be dual licensed as above, without any additional terms or conditions. shall be dual licensed as above, without any additional terms or conditions.
[`jemallocator`]: https://github.com/alexcrichton/jemallocator [`jemallocator`]: https://github.com/gnzlbg/jemallocator
[travis]: https://travis-ci.org/alexcrichton/jemallocator [travis]: https://travis-ci.org/gnzlbg/jemallocator
[Travis-CI Status]: https://travis-ci.org/alexcrichton/jemallocator.svg?branch=master [Travis-CI Status]: https://travis-ci.org/gnzlbg/jemallocator.svg?branch=master
[appveyor]: https://ci.appveyor.com/project/alexcrichton/jemallocator/branch/master [appveyor]: https://ci.appveyor.com/project/gnzlbg/jemallocator/branch/master
[Appveyor Status]: https://ci.appveyor.com/api/projects/status/github/alexcrichton/jemallocator?branch=master&svg=true [Appveyor Status]: https://ci.appveyor.com/api/projects/status/github/gnzlbg/jemallocator?branch=master&svg=true
[Latest Version]: https://img.shields.io/crates/v/jemalloc-ctl.svg [Latest Version]: https://img.shields.io/crates/v/jemalloc-ctl.svg
[crates.io]: https://crates.io/crates/jemalloc-ctl [crates.io]: https://crates.io/crates/jemalloc-ctl
[docs]: https://docs.rs/jemalloc-ctl/badge.svg [docs]: https://docs.rs/jemalloc-ctl/badge.svg
[docs.rs]: https://docs.rs/jemalloc-ctl/ [docs.rs]: https://docs.rs/jemalloc-ctl/
[master_docs]: https://alexcrichton.github.io/jemallocator/jemalloc-ctl [master_docs]: https://gnzlbg.github.io/jemallocator/jemalloc-ctl

View File

@ -9,8 +9,8 @@ build = "build.rs"
links = "jemalloc" links = "jemalloc"
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"
readme = "README.md" readme = "README.md"
repository = "https://github.com/alexcrichton/jemallocator" repository = "https://github.com/gnzlbg/jemallocator"
homepage = "https://github.com/alexcrichton/jemallocator" homepage = "https://github.com/gnzlbg/jemallocator"
documentation = "https://docs.rs/jemallocator-sys" documentation = "https://docs.rs/jemallocator-sys"
keywords = ["allocator", "jemalloc"] keywords = ["allocator", "jemalloc"]
description = """ description = """
@ -19,11 +19,11 @@ Rust FFI bindings to jemalloc
edition = "2015" edition = "2015"
[badges] [badges]
appveyor = { repository = "alexcrichton/jemallocator" } appveyor = { repository = "gnzlbg/jemallocator" }
travis-ci = { repository = "alexcrichton/jemallocator" } travis-ci = { repository = "gnzlbg/jemallocator" }
codecov = { repository = "alexcrichton/jemallocator" } codecov = { repository = "gnzlbg/jemallocator" }
is-it-maintained-issue-resolution = { repository = "alexcrichton/jemallocator" } is-it-maintained-issue-resolution = { repository = "gnzlbg/jemallocator" }
is-it-maintained-open-issues = { repository = "alexcrichton/jemallocator" } is-it-maintained-open-issues = { repository = "gnzlbg/jemallocator" }
maintenance = { status = "actively-developed" } maintenance = { status = "actively-developed" }
[lib] [lib]

View File

@ -166,12 +166,12 @@ Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in `jemalloc-sys` by you, as defined in the Apache-2.0 license, for inclusion in `jemalloc-sys` by you, as defined in the Apache-2.0 license,
shall be dual licensed as above, without any additional terms or conditions. shall be dual licensed as above, without any additional terms or conditions.
[travis]: https://travis-ci.org/alexcrichton/jemallocator [travis]: https://travis-ci.org/gnzlbg/jemallocator
[Travis-CI Status]: https://travis-ci.org/alexcrichton/jemallocator.svg?branch=master [Travis-CI Status]: https://travis-ci.org/gnzlbg/jemallocator.svg?branch=master
[appveyor]: https://ci.appveyor.com/project/alexcrichton/jemallocator/branch/master [appveyor]: https://ci.appveyor.com/project/gnzlbg/jemallocator/branch/master
[Appveyor Status]: https://ci.appveyor.com/api/projects/status/github/alexcrichton/jemallocator?branch=master&svg=true [Appveyor Status]: https://ci.appveyor.com/api/projects/status/github/gnzlbg/jemallocator?branch=master&svg=true
[Latest Version]: https://img.shields.io/crates/v/jemalloc-sys.svg [Latest Version]: https://img.shields.io/crates/v/jemalloc-sys.svg
[crates.io]: https://crates.io/crates/jemalloc-ctl [crates.io]: https://crates.io/crates/jemalloc-ctl
[docs]: https://docs.rs/jemalloc-sys/badge.svg [docs]: https://docs.rs/jemalloc-sys/badge.svg
[docs.rs]: https://docs.rs/jemalloc-sys/ [docs.rs]: https://docs.rs/jemalloc-sys/
[master_docs]: https://alexcrichton.github.io/jemallocator/jemalloc-sys [master_docs]: https://gnzlbg.github.io/jemallocator/jemalloc-sys

View File

@ -220,7 +220,7 @@ fn main() {
if target.contains("ios") { if target.contains("ios") {
// newer iOS deviced have 16kb page sizes: // newer iOS deviced have 16kb page sizes:
// closed: https://github.com/alexcrichton/jemallocator/issues/68 // closed: https://github.com/gnzlbg/jemallocator/issues/68
cmd.arg("--with-lg-page=14"); cmd.arg("--with-lg-page=14");
} }

View File

@ -8,19 +8,19 @@ license = "MIT/Apache-2.0"
readme = "README.md" readme = "README.md"
keywords = ["allocator", "jemalloc"] keywords = ["allocator", "jemalloc"]
categories = ["memory-management", "api-bindings"] categories = ["memory-management", "api-bindings"]
repository = "https://github.com/alexcrichton/jemallocator" repository = "https://github.com/gnzlbg/jemallocator"
homepage = "https://github.com/alexcrichton/jemallocator" homepage = "https://github.com/gnzlbg/jemallocator"
documentation = "https://docs.rs/jemallocator-global" documentation = "https://docs.rs/jemallocator-global"
description = """ description = """
Sets `jemalloc` as the `#[global_allocator]` Sets `jemalloc` as the `#[global_allocator]`
""" """
[badges] [badges]
appveyor = { repository = "alexcrichton/jemallocator" } appveyor = { repository = "gnzlbg/jemallocator" }
travis-ci = { repository = "alexcrichton/jemallocator" } travis-ci = { repository = "gnzlbg/jemallocator" }
codecov = { repository = "alexcrichton/jemallocator" } codecov = { repository = "gnzlbg/jemallocator" }
is-it-maintained-issue-resolution = { repository = "alexcrichton/jemallocator" } is-it-maintained-issue-resolution = { repository = "gnzlbg/jemallocator" }
is-it-maintained-open-issues = { repository = "alexcrichton/jemallocator" } is-it-maintained-open-issues = { repository = "gnzlbg/jemallocator" }
maintenance = { status = "actively-developed" } maintenance = { status = "actively-developed" }
[dependencies] [dependencies]
@ -38,7 +38,7 @@ force_global_jemalloc = [ "jemallocator" ]
[target.'cfg(any(target_os = "linux", target_os = "android", target_os = "macos", target_os = "ios", target_os = "freebsd", target_os = "netbsd", target_os = "openbsd"))'.dependencies] [target.'cfg(any(target_os = "linux", target_os = "android", target_os = "macos", target_os = "ios", target_os = "freebsd", target_os = "netbsd", target_os = "openbsd"))'.dependencies]
jemallocator = { version = "0.3.0", path = "..", optional = false } jemallocator = { version = "0.3.0", path = "..", optional = false }
# FIXME: https://github.com/alexcrichton/jemallocator/issues/91 # FIXME: https://github.com/gnzlbg/jemallocator/issues/91
# [target.'cfg(target_os = "windows")'.dependencies] # [target.'cfg(target_os = "windows")'.dependencies]
# jemallocator = { path = ".." } # jemallocator = { path = ".." }

View File

@ -22,7 +22,7 @@ it.
* `force_global_jemalloc` (disabled by default): unconditionally sets `jemalloc` * `force_global_jemalloc` (disabled by default): unconditionally sets `jemalloc`
as the `#[global_allocator]`. as the `#[global_allocator]`.
[`jemallocator`]: https://github.com/alexcrichton/jemallocator/ [`jemallocator`]: https://github.com/gnzlbg/jemallocator/
## Platform support ## Platform support
@ -49,10 +49,10 @@ Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in `jemallocator-global` by you, as defined in the Apache-2.0 license, for inclusion in `jemallocator-global` by you, as defined in the Apache-2.0 license,
shall be dual licensed as above, without any additional terms or conditions. shall be dual licensed as above, without any additional terms or conditions.
[travis]: https://travis-ci.org/alexcrichton/jemallocator [travis]: https://travis-ci.org/gnzlbg/jemallocator
[Travis-CI Status]: https://travis-ci.org/alexcrichton/jemallocator.svg?branch=master [Travis-CI Status]: https://travis-ci.org/gnzlbg/jemallocator.svg?branch=master
[appveyor]: https://ci.appveyor.com/project/alexcrichton/jemallocator/branch/master [appveyor]: https://ci.appveyor.com/project/gnzlbg/jemallocator/branch/master
[Appveyor Status]: https://ci.appveyor.com/api/projects/status/github/alexcrichton/jemallocator?branch=master&svg=true [Appveyor Status]: https://ci.appveyor.com/api/projects/status/github/gnzlbg/jemallocator?branch=master&svg=true
[Latest Version]: https://img.shields.io/crates/v/jemallocator-global.svg [Latest Version]: https://img.shields.io/crates/v/jemallocator-global.svg
[crates.io]: https://crates.io/crates/jemallocator-global [crates.io]: https://crates.io/crates/jemallocator-global
[docs]: https://docs.rs/jemallocator-global/badge.svg [docs]: https://docs.rs/jemallocator-global/badge.svg

View File

@ -1,7 +1,7 @@
extern crate jemalloc_sys; extern crate jemalloc_sys;
extern crate jemallocator; extern crate jemallocator;
// Work around https://github.com/alexcrichton/jemallocator/issues/19 // Work around https://github.com/gnzlbg/jemallocator/issues/19
#[global_allocator] #[global_allocator]
static A: jemallocator::Jemalloc = jemallocator::Jemalloc; static A: jemallocator::Jemalloc = jemallocator::Jemalloc;