From d7b62dac1caa157f87daa77eb90c5c74b67c2c52 Mon Sep 17 00:00:00 2001 From: gnzlbg Date: Fri, 5 Apr 2019 16:19:10 +0200 Subject: [PATCH] Update links --- .travis.yml | 4 ++-- Cargo.toml | 14 +++++++------- README.md | 12 ++++++------ jemalloc-ctl/Cargo.toml | 14 +++++++------- jemalloc-ctl/README.md | 12 ++++++------ jemalloc-sys/Cargo.toml | 14 +++++++------- jemalloc-sys/README.md | 10 +++++----- jemalloc-sys/build.rs | 2 +- jemallocator-global/Cargo.toml | 16 ++++++++-------- jemallocator-global/README.md | 10 +++++----- tests/smoke_ffi.rs | 2 +- 11 files changed, 55 insertions(+), 55 deletions(-) diff --git a/.travis.yml b/.travis.yml index b2afbad..1e2542e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -85,7 +85,7 @@ matrix: # OSX # FIXME: cannot jemalloc tests fail due to: # 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)" env: TARGET=i686-apple-darwin NO_JEMALLOC_TESTS=1 os: osx @@ -101,7 +101,7 @@ matrix: osx_image: xcode10 rust: stable # 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)" env: TARGET=x86_64-apple-darwin NO_JEMALLOC_TESTS=1 JEMALLOC_SYS_VERIFY_CONFIGURE=1 os: osx diff --git a/Cargo.toml b/Cargo.toml index aad72c9..4746e38 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,8 +12,8 @@ license = "MIT/Apache-2.0" readme = "README.md" keywords = ["allocator", "jemalloc"] categories = ["memory-management", "api-bindings"] -repository = "https://github.com/alexcrichton/jemallocator" -homepage = "https://github.com/alexcrichton/jemallocator" +repository = "https://github.com/gnzlbg/jemallocator" +homepage = "https://github.com/gnzlbg/jemallocator" documentation = "https://docs.rs/jemallocator" description = """ A Rust allocator backed by jemalloc @@ -21,11 +21,11 @@ A Rust allocator backed by jemalloc edition = "2015" [badges] -appveyor = { repository = "alexcrichton/jemallocator" } -travis-ci = { repository = "alexcrichton/jemallocator" } -codecov = { repository = "alexcrichton/jemallocator" } -is-it-maintained-issue-resolution = { repository = "alexcrichton/jemallocator" } -is-it-maintained-open-issues = { repository = "alexcrichton/jemallocator" } +appveyor = { repository = "gnzlbg/jemallocator" } +travis-ci = { repository = "gnzlbg/jemallocator" } +codecov = { repository = "gnzlbg/jemallocator" } +is-it-maintained-issue-resolution = { repository = "gnzlbg/jemallocator" } +is-it-maintained-open-issues = { repository = "gnzlbg/jemallocator" } maintenance = { status = "actively-developed" } [lib] diff --git a/README.md b/README.md index a13e214..9b410c3 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ other targets are only tested on Rust nightly. ## Features 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 @@ -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, shall be dual licensed as above, without any additional terms or conditions. -[travis]: https://travis-ci.com/alexcrichton/jemallocator -[Travis-CI Status]: https://travis-ci.com/alexcrichton/jemallocator.svg?branch=master -[appveyor]: https://ci.appveyor.com/project/alexcrichton/jemallocator/branch/master -[Appveyor Status]: https://ci.appveyor.com/api/projects/status/github/alexcrichton/jemallocator?branch=master&svg=true +[travis]: https://travis-ci.com/gnzlbg/jemallocator +[Travis-CI Status]: https://travis-ci.com/gnzlbg/jemallocator.svg?branch=master +[appveyor]: https://ci.appveyor.com/project/gnzlbg/jemallocator/branch/master +[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 [crates.io]: https://crates.io/crates/jemallocator [docs]: https://docs.rs/jemallocator/badge.svg [docs.rs]: https://docs.rs/jemallocator/ -[master_docs]: https://alexcrichton.github.io/jemallocator/jemallocator +[master_docs]: https://gnzlbg.github.io/jemallocator/jemallocator diff --git a/jemalloc-ctl/Cargo.toml b/jemalloc-ctl/Cargo.toml index 0bb103f..d7971fb 100644 --- a/jemalloc-ctl/Cargo.toml +++ b/jemalloc-ctl/Cargo.toml @@ -9,19 +9,19 @@ license = "MIT/Apache-2.0" readme = "README.md" categories = ["memory-management", "api-bindings", "development-tools" ] keywords = ["allocator", "jemalloc"] -repository = "https://github.com/alexcrichton/jemallocator" -homepage = "https://github.com/alexcrichton/jemallocator" +repository = "https://github.com/gnzlbg/jemallocator" +homepage = "https://github.com/gnzlbg/jemallocator" documentation = "https://docs.rs/jemalloc-ctl" description = """ A safe wrapper over jemalloc's control and introspection APIs """ [badges] -appveyor = { repository = "alexcrichton/jemallocator" } -travis-ci = { repository = "alexcrichton/jemallocator" } -codecov = { repository = "alexcrichton/jemallocator" } -is-it-maintained-issue-resolution = { repository = "alexcrichton/jemallocator" } -is-it-maintained-open-issues = { repository = "alexcrichton/jemallocator" } +appveyor = { repository = "gnzlbg/jemallocator" } +travis-ci = { repository = "gnzlbg/jemallocator" } +codecov = { repository = "gnzlbg/jemallocator" } +is-it-maintained-issue-resolution = { repository = "gnzlbg/jemallocator" } +is-it-maintained-open-issues = { repository = "gnzlbg/jemallocator" } maintenance = { status = "actively-developed" } [dependencies] diff --git a/jemalloc-ctl/README.md b/jemalloc-ctl/README.md index 8a424f6..3397e66 100644 --- a/jemalloc-ctl/README.md +++ b/jemalloc-ctl/README.md @@ -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, shall be dual licensed as above, without any additional terms or conditions. -[`jemallocator`]: https://github.com/alexcrichton/jemallocator -[travis]: https://travis-ci.org/alexcrichton/jemallocator -[Travis-CI Status]: https://travis-ci.org/alexcrichton/jemallocator.svg?branch=master -[appveyor]: https://ci.appveyor.com/project/alexcrichton/jemallocator/branch/master -[Appveyor Status]: https://ci.appveyor.com/api/projects/status/github/alexcrichton/jemallocator?branch=master&svg=true +[`jemallocator`]: https://github.com/gnzlbg/jemallocator +[travis]: https://travis-ci.org/gnzlbg/jemallocator +[Travis-CI Status]: https://travis-ci.org/gnzlbg/jemallocator.svg?branch=master +[appveyor]: https://ci.appveyor.com/project/gnzlbg/jemallocator/branch/master +[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 [crates.io]: https://crates.io/crates/jemalloc-ctl [docs]: https://docs.rs/jemalloc-ctl/badge.svg [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 diff --git a/jemalloc-sys/Cargo.toml b/jemalloc-sys/Cargo.toml index d11ca2a..9858abe 100644 --- a/jemalloc-sys/Cargo.toml +++ b/jemalloc-sys/Cargo.toml @@ -9,8 +9,8 @@ build = "build.rs" links = "jemalloc" license = "MIT/Apache-2.0" readme = "README.md" -repository = "https://github.com/alexcrichton/jemallocator" -homepage = "https://github.com/alexcrichton/jemallocator" +repository = "https://github.com/gnzlbg/jemallocator" +homepage = "https://github.com/gnzlbg/jemallocator" documentation = "https://docs.rs/jemallocator-sys" keywords = ["allocator", "jemalloc"] description = """ @@ -19,11 +19,11 @@ Rust FFI bindings to jemalloc edition = "2015" [badges] -appveyor = { repository = "alexcrichton/jemallocator" } -travis-ci = { repository = "alexcrichton/jemallocator" } -codecov = { repository = "alexcrichton/jemallocator" } -is-it-maintained-issue-resolution = { repository = "alexcrichton/jemallocator" } -is-it-maintained-open-issues = { repository = "alexcrichton/jemallocator" } +appveyor = { repository = "gnzlbg/jemallocator" } +travis-ci = { repository = "gnzlbg/jemallocator" } +codecov = { repository = "gnzlbg/jemallocator" } +is-it-maintained-issue-resolution = { repository = "gnzlbg/jemallocator" } +is-it-maintained-open-issues = { repository = "gnzlbg/jemallocator" } maintenance = { status = "actively-developed" } [lib] diff --git a/jemalloc-sys/README.md b/jemalloc-sys/README.md index 109530d..d2d0db8 100644 --- a/jemalloc-sys/README.md +++ b/jemalloc-sys/README.md @@ -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, shall be dual licensed as above, without any additional terms or conditions. -[travis]: https://travis-ci.org/alexcrichton/jemallocator -[Travis-CI Status]: https://travis-ci.org/alexcrichton/jemallocator.svg?branch=master -[appveyor]: https://ci.appveyor.com/project/alexcrichton/jemallocator/branch/master -[Appveyor Status]: https://ci.appveyor.com/api/projects/status/github/alexcrichton/jemallocator?branch=master&svg=true +[travis]: https://travis-ci.org/gnzlbg/jemallocator +[Travis-CI Status]: https://travis-ci.org/gnzlbg/jemallocator.svg?branch=master +[appveyor]: https://ci.appveyor.com/project/gnzlbg/jemallocator/branch/master +[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 [crates.io]: https://crates.io/crates/jemalloc-ctl [docs]: https://docs.rs/jemalloc-sys/badge.svg [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 diff --git a/jemalloc-sys/build.rs b/jemalloc-sys/build.rs index 0117abb..20fb929 100644 --- a/jemalloc-sys/build.rs +++ b/jemalloc-sys/build.rs @@ -220,7 +220,7 @@ fn main() { if target.contains("ios") { // 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"); } diff --git a/jemallocator-global/Cargo.toml b/jemallocator-global/Cargo.toml index 33cf5c5..41d38c1 100644 --- a/jemallocator-global/Cargo.toml +++ b/jemallocator-global/Cargo.toml @@ -8,19 +8,19 @@ license = "MIT/Apache-2.0" readme = "README.md" keywords = ["allocator", "jemalloc"] categories = ["memory-management", "api-bindings"] -repository = "https://github.com/alexcrichton/jemallocator" -homepage = "https://github.com/alexcrichton/jemallocator" +repository = "https://github.com/gnzlbg/jemallocator" +homepage = "https://github.com/gnzlbg/jemallocator" documentation = "https://docs.rs/jemallocator-global" description = """ Sets `jemalloc` as the `#[global_allocator]` """ [badges] -appveyor = { repository = "alexcrichton/jemallocator" } -travis-ci = { repository = "alexcrichton/jemallocator" } -codecov = { repository = "alexcrichton/jemallocator" } -is-it-maintained-issue-resolution = { repository = "alexcrichton/jemallocator" } -is-it-maintained-open-issues = { repository = "alexcrichton/jemallocator" } +appveyor = { repository = "gnzlbg/jemallocator" } +travis-ci = { repository = "gnzlbg/jemallocator" } +codecov = { repository = "gnzlbg/jemallocator" } +is-it-maintained-issue-resolution = { repository = "gnzlbg/jemallocator" } +is-it-maintained-open-issues = { repository = "gnzlbg/jemallocator" } maintenance = { status = "actively-developed" } [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] 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] # jemallocator = { path = ".." } diff --git a/jemallocator-global/README.md b/jemallocator-global/README.md index 08b313a..8f92955 100644 --- a/jemallocator-global/README.md +++ b/jemallocator-global/README.md @@ -22,7 +22,7 @@ it. * `force_global_jemalloc` (disabled by default): unconditionally sets `jemalloc` as the `#[global_allocator]`. -[`jemallocator`]: https://github.com/alexcrichton/jemallocator/ +[`jemallocator`]: https://github.com/gnzlbg/jemallocator/ ## 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, shall be dual licensed as above, without any additional terms or conditions. -[travis]: https://travis-ci.org/alexcrichton/jemallocator -[Travis-CI Status]: https://travis-ci.org/alexcrichton/jemallocator.svg?branch=master -[appveyor]: https://ci.appveyor.com/project/alexcrichton/jemallocator/branch/master -[Appveyor Status]: https://ci.appveyor.com/api/projects/status/github/alexcrichton/jemallocator?branch=master&svg=true +[travis]: https://travis-ci.org/gnzlbg/jemallocator +[Travis-CI Status]: https://travis-ci.org/gnzlbg/jemallocator.svg?branch=master +[appveyor]: https://ci.appveyor.com/project/gnzlbg/jemallocator/branch/master +[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 [crates.io]: https://crates.io/crates/jemallocator-global [docs]: https://docs.rs/jemallocator-global/badge.svg diff --git a/tests/smoke_ffi.rs b/tests/smoke_ffi.rs index 79642ca..a39104b 100644 --- a/tests/smoke_ffi.rs +++ b/tests/smoke_ffi.rs @@ -1,7 +1,7 @@ extern crate jemalloc_sys; extern crate jemallocator; -// Work around https://github.com/alexcrichton/jemallocator/issues/19 +// Work around https://github.com/gnzlbg/jemallocator/issues/19 #[global_allocator] static A: jemallocator::Jemalloc = jemallocator::Jemalloc;