diff options
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | CONTRIBUTING.md | 8 | ||||
-rw-r--r-- | book/src/cpp.md | 4 | ||||
-rw-r--r-- | book/src/introduction.md | 2 | ||||
-rwxr-xr-x | ci/deploy-book.sh | 2 | ||||
-rwxr-xr-x | ci/script.sh | 2 | ||||
-rw-r--r-- | csmith-fuzzing/README.md | 2 | ||||
-rwxr-xr-x | csmith-fuzzing/driver.py | 6 | ||||
-rw-r--r-- | releases/release-announcement-template.md | 16 | ||||
-rw-r--r-- | src/codegen/mod.rs | 4 | ||||
-rw-r--r-- | src/ir/analysis/sizedness.rs | 2 | ||||
-rw-r--r-- | src/ir/comp.rs | 4 | ||||
-rw-r--r-- | src/ir/function.rs | 4 | ||||
-rw-r--r-- | src/lib.rs | 6 | ||||
-rw-r--r-- | src/main.rs | 6 | ||||
-rw-r--r-- | src/options.rs | 2 |
16 files changed, 36 insertions, 36 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ca7199c..19aa7196 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -120,7 +120,7 @@ Released 2019/05/16 was merged in libstd, and the performance difference should be close to zero for older rustcs. -[#1558]: https://github.com/rust-lang-nursery/rust-bindgen/issues/1558 +[#1558]: https://github.com/rust-lang/rust-bindgen/issues/1558 # 0.49.0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 38d6cea4..592556b8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -52,10 +52,10 @@ issue, provide us with: ## Looking to Start Contributing to `bindgen`? -* [Issues labeled "easy"](https://github.com/rust-lang-nursery/rust-bindgen/issues?q=is%3Aopen+is%3Aissue+label%3AE-easy) -* [Issues labeled "less easy"](https://github.com/rust-lang-nursery/rust-bindgen/issues?q=is%3Aopen+is%3Aissue+label%3AE-less-easy) -* [Issues labeled "help wanted"](https://github.com/rust-lang-nursery/rust-bindgen/labels/help%20wanted) -* Still can't find something to work on? [Drop a comment here](https://github.com/rust-lang-nursery/rust-bindgen/issues/747) +* [Issues labeled "easy"](https://github.com/rust-lang/rust-bindgen/issues?q=is%3Aopen+is%3Aissue+label%3AE-easy) +* [Issues labeled "less easy"](https://github.com/rust-lang/rust-bindgen/issues?q=is%3Aopen+is%3Aissue+label%3AE-less-easy) +* [Issues labeled "help wanted"](https://github.com/rust-lang/rust-bindgen/labels/help%20wanted) +* Still can't find something to work on? [Drop a comment here](https://github.com/rust-lang/rust-bindgen/issues/747) ## Building diff --git a/book/src/cpp.md b/book/src/cpp.md index c4eeb637..989f2741 100644 --- a/book/src/cpp.md +++ b/book/src/cpp.md @@ -23,7 +23,7 @@ You should read up on the [FAQs](./faq.md) as well. ## Supported Features * Inheritance (for the most part; there are - [some outstanding bugs](https://github.com/rust-lang-nursery/rust-bindgen/issues/380)) + [some outstanding bugs](https://github.com/rust-lang/rust-bindgen/issues/380)) * Methods @@ -69,5 +69,5 @@ cannot translate into Rust: * Exceptions: if a function called through a `bindgen`-generated interface raises an exception that is not caught by the function itself, this will generate undefined behaviour. See - [the tracking issue for exceptions](https://github.com/rust-lang-nursery/rust-bindgen/issues/1208) + [the tracking issue for exceptions](https://github.com/rust-lang/rust-bindgen/issues/1208) for more details. diff --git a/book/src/introduction.md b/book/src/introduction.md index f39e0da0..971d257d 100644 --- a/book/src/introduction.md +++ b/book/src/introduction.md @@ -1,6 +1,6 @@ # Introduction -**[`bindgen`](https://github.com/rust-lang-nursery/rust-bindgen) automatically generates Rust +**[`bindgen`](https://github.com/rust-lang/rust-bindgen) automatically generates Rust FFI bindings to C and C++ libraries.** For example, given the C header `cool.h`: diff --git a/ci/deploy-book.sh b/ci/deploy-book.sh index 7067450b..740e095a 100755 --- a/ci/deploy-book.sh +++ b/ci/deploy-book.sh @@ -22,7 +22,7 @@ git init git config user.name "Travis CI" git config user.email "builds@travis-ci.org" -git remote add upstream "https://$GH_TOKEN@github.com/rust-lang-nursery/rust-bindgen.git" +git remote add upstream "https://$GH_TOKEN@github.com/rust-lang/rust-bindgen.git" git fetch upstream git reset upstream/gh-pages diff --git a/ci/script.sh b/ci/script.sh index 91ea7c13..8e2c7e1f 100755 --- a/ci/script.sh +++ b/ci/script.sh @@ -34,7 +34,7 @@ case "$BINDGEN_JOB" in ./ci/test-book.sh ./ci/no-includes.sh # `rustfmt` isn't reaching a fixed point on bindgen - # code... https://github.com/rust-lang-nursery/rustfmt/issues/1376 + # code... https://github.com/rust-lang/rustfmt/issues/1376 # ./ci/assert-rustfmt.sh ;; diff --git a/csmith-fuzzing/README.md b/csmith-fuzzing/README.md index c7e8eaf9..cdd6d086 100644 --- a/csmith-fuzzing/README.md +++ b/csmith-fuzzing/README.md @@ -62,4 +62,4 @@ related to fuzzing with `csmith`, by looking up [csmith]: https://github.com/csmith-project/csmith [creducing]: ../CONTRIBUTING.md#using-creduce-to-minimize-test-cases -[csmith-issues]: https://github.com/rust-lang-nursery/rust-bindgen/issues?q=label%3AA-csmith +[csmith-issues]: https://github.com/rust-lang/rust-bindgen/issues?q=label%3AA-csmith diff --git a/csmith-fuzzing/driver.py b/csmith-fuzzing/driver.py index 8bf76e0b..1d3af540 100755 --- a/csmith-fuzzing/driver.py +++ b/csmith-fuzzing/driver.py @@ -232,9 +232,9 @@ def print_issue_template(args, failing_test_case, predicate_command, result): print(""" -! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! -! File this issue at https://github.com/rust-lang-nursery/rust-bindgen/issues/new ! -! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! +! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! +! File this issue at https://github.com/rust-lang/rust-bindgen/issues/new ! +! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! --------------- 8< --------------- 8< --------------- 8< --------------- diff --git a/releases/release-announcement-template.md b/releases/release-announcement-template.md index a3887ad7..9f4e87cc 100644 --- a/releases/release-announcement-template.md +++ b/releases/release-announcement-template.md @@ -37,13 +37,13 @@ Want to help improve our documentation? Found a bug with `bindgen`? [File an issue here.][file-issue] -[GitHub]: https://github.com/rust-lang-nursery/rust-bindgen +[GitHub]: https://github.com/rust-lang/rust-bindgen [crates.io]: https://crates.io/crates/bindgen -[guide]: https://rust-lang-nursery.github.io/rust-bindgen +[guide]: https://rust-lang.github.io/rust-bindgen [docs]: https://docs.rs/bindgen -[contributing]: https://github.com/rust-lang-nursery/rust-bindgen/blob/master/CONTRIBUTING.md -[easy]: https://github.com/rust-lang-nursery/rust-bindgen/issues?q=is%3Aopen+is%3Aissue+label%3AE-easy -[less-easy]: https://github.com/rust-lang-nursery/rust-bindgen/issues?q=is%3Aopen+is%3Aissue+label%3AE-less-easy -[looking]: https://github.com/rust-lang-nursery/rust-bindgen/issues/747 -[docs-issues]: https://github.com/rust-lang-nursery/rust-bindgen/issues?q=is%3Aopen+is%3Aissue+label%3AI-needs-docs -[file-issue]: https://github.com/rust-lang-nursery/rust-bindgen/issues/new +[contributing]: https://github.com/rust-lang/rust-bindgen/blob/master/CONTRIBUTING.md +[easy]: https://github.com/rust-lang/rust-bindgen/issues?q=is%3Aopen+is%3Aissue+label%3AE-easy +[less-easy]: https://github.com/rust-lang/rust-bindgen/issues?q=is%3Aopen+is%3Aissue+label%3AE-less-easy +[looking]: https://github.com/rust-lang/rust-bindgen/issues/747 +[docs-issues]: https://github.com/rust-lang/rust-bindgen/issues?q=is%3Aopen+is%3Aissue+label%3AI-needs-docs +[file-issue]: https://github.com/rust-lang/rust-bindgen/issues/new diff --git a/src/codegen/mod.rs b/src/codegen/mod.rs index 289edf89..3690624f 100644 --- a/src/codegen/mod.rs +++ b/src/codegen/mod.rs @@ -1618,7 +1618,7 @@ impl CodeGenerator for CompInfo { // is making the struct 1-byte sized. // // This is apparently not the case for C, see: - // https://github.com/rust-lang-nursery/rust-bindgen/issues/551 + // https://github.com/rust-lang/rust-bindgen/issues/551 // // Just get the layout, and assume C++ if not. // @@ -1841,7 +1841,7 @@ impl CodeGenerator for CompInfo { }) }; - // FIXME when [issue #465](https://github.com/rust-lang-nursery/rust-bindgen/issues/465) ready + // FIXME when [issue #465](https://github.com/rust-lang/rust-bindgen/issues/465) ready let too_many_base_vtables = self.base_members() .iter() .filter(|base| base.ty.has_vtable(ctx)) diff --git a/src/ir/analysis/sizedness.rs b/src/ir/analysis/sizedness.rs index 12d679bb..dbf0e37d 100644 --- a/src/ir/analysis/sizedness.rs +++ b/src/ir/analysis/sizedness.rs @@ -49,7 +49,7 @@ pub enum SizednessResult { /// have an `_address` byte inserted. /// /// We don't properly handle this situation correctly right now: - /// https://github.com/rust-lang-nursery/rust-bindgen/issues/586 + /// https://github.com/rust-lang/rust-bindgen/issues/586 DependsOnTypeParam, /// The type is zero-sized. diff --git a/src/ir/comp.rs b/src/ir/comp.rs index ba249644..0637d2bc 100644 --- a/src/ir/comp.rs +++ b/src/ir/comp.rs @@ -1280,7 +1280,7 @@ impl CompInfo { // Let's just assume that if the cursor we've found is a // definition, it's a valid inner type. // - // [1]: https://github.com/rust-lang-nursery/rust-bindgen/issues/482 + // [1]: https://github.com/rust-lang/rust-bindgen/issues/482 let is_inner_struct = cur.semantic_parent() == cursor || cur.is_definition(); if !is_inner_struct { @@ -1654,7 +1654,7 @@ impl IsOpaque for CompInfo { // If we don't have `#[repr(packed(N)]`, the best we can // do is make this struct opaque. // - // See https://github.com/rust-lang-nursery/rust-bindgen/issues/537 and + // See https://github.com/rust-lang/rust-bindgen/issues/537 and // https://github.com/rust-lang/rust/issues/33158 if self.is_packed(ctx, layout) && layout.map_or(false, |l| l.align > 1) { warn!("Found a type that is both packed and aligned to greater than \ diff --git a/src/ir/function.rs b/src/ir/function.rs index 4001e4d3..b8af9213 100644 --- a/src/ir/function.rs +++ b/src/ir/function.rs @@ -253,7 +253,7 @@ pub fn cursor_mangling( // We early return here because libclang may crash in some case // if we pass in a variable inside a partial specialized template. - // See rust-lang-nursery/rust-bindgen#67, and rust-lang-nursery/rust-bindgen#462. + // See rust-lang/rust-bindgen#67, and rust-lang/rust-bindgen#462. if cursor.is_in_non_fully_specialized_template() { return None; } @@ -535,7 +535,7 @@ impl FunctionSig { /// /// For more details, see: /// - /// * https://github.com/rust-lang-nursery/rust-bindgen/issues/547, + /// * https://github.com/rust-lang/rust-bindgen/issues/547, /// * https://github.com/rust-lang/rust/issues/38848, /// * and https://github.com/rust-lang/rust/issues/40158 pub fn function_pointers_can_derive(&self) -> bool { @@ -630,7 +630,7 @@ impl Builder { /// implement some processing on comments to work around issues as described /// in: /// - /// https://github.com/rust-lang-nursery/rust-bindgen/issues/426 + /// https://github.com/rust-lang/rust-bindgen/issues/426 pub fn generate_comments(mut self, doit: bool) -> Self { self.options.generate_comments = doit; self @@ -694,7 +694,7 @@ impl Builder { /// However, some old libclang versions seem to return incorrect results in /// some cases for non-mangled functions, see [1], so we allow disabling it. /// - /// [1]: https://github.com/rust-lang-nursery/rust-bindgen/issues/528 + /// [1]: https://github.com/rust-lang/rust-bindgen/issues/528 pub fn trust_clang_mangling(mut self, doit: bool) -> Self { self.options.enable_mangling = doit; self @@ -1507,7 +1507,7 @@ struct BindgenOptions { /// However, some old libclang versions seem to return incorrect results in /// some cases for non-mangled functions, see [1], so we allow disabling it. /// - /// [1]: https://github.com/rust-lang-nursery/rust-bindgen/issues/528 + /// [1]: https://github.com/rust-lang/rust-bindgen/issues/528 enable_mangling: bool, /// Whether to detect include paths using clang_sys. diff --git a/src/main.rs b/src/main.rs index a0e0f6bf..3d3867a7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -71,12 +71,12 @@ fn print_verbose_err() { println!("Bindgen unexpectedly panicked"); println!( "This may be caused by one of the known-unsupported \ - things (https://github.com/rust-lang-nursery/rust-bindgen#c), \ + things (https://rust-lang.github.io/rust-bindgen/cpp.html), \ please modify the bindgen flags to work around it as \ - described in https://github.com/rust-lang-nursery/rust-bindgen#c" + described in https://rust-lang.github.io/rust-bindgen/cpp.html" ); println!( "Otherwise, please file an issue at \ - https://github.com/rust-lang-nursery/rust-bindgen/issues/new" + https://github.com/rust-lang/rust-bindgen/issues/new" ); } diff --git a/src/options.rs b/src/options.rs index 64de93cc..ed0936a6 100644 --- a/src/options.rs +++ b/src/options.rs @@ -129,7 +129,7 @@ where Arg::with_name("no-doc-comments") .long("no-doc-comments") .help("Avoid including doc comments in the output, see: \ - https://github.com/rust-lang-nursery/rust-bindgen/issues/426"), + https://github.com/rust-lang/rust-bindgen/issues/426"), Arg::with_name("no-recursive-whitelist") .long("no-recursive-whitelist") .help("Disable whitelisting types recursively. This will cause \ |