diff --git a/cranelift/Cargo.toml b/cranelift/Cargo.toml index 381949a8da..e796776c46 100644 --- a/cranelift/Cargo.toml +++ b/cranelift/Cargo.toml @@ -5,7 +5,7 @@ version = "0.13.0" description = "Binaries for testing the Cranelift libraries" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" -repository = "https://github.com/cranelift/cranelift" +repository = "https://github.com/CraneStation/cranelift" publish = false [[bin]] diff --git a/cranelift/filetests/regalloc/coalescing-207.clif b/cranelift/filetests/regalloc/coalescing-207.clif index 7de96e69ec..08519965b6 100644 --- a/cranelift/filetests/regalloc/coalescing-207.clif +++ b/cranelift/filetests/regalloc/coalescing-207.clif @@ -1,7 +1,7 @@ test regalloc target x86_64 haswell -; Reported as https://github.com/cranelift/cranelift/issues/207 +; Reported as https://github.com/CraneStation/cranelift/issues/207 ; ; The coalescer creates a virtual register with two interfering values. function %pr207(i64 vmctx, i32, i32) -> i32 system_v { diff --git a/cranelift/filetests/regalloc/coalescing-216.clif b/cranelift/filetests/regalloc/coalescing-216.clif index 212b03dc36..b4d6e6393b 100644 --- a/cranelift/filetests/regalloc/coalescing-216.clif +++ b/cranelift/filetests/regalloc/coalescing-216.clif @@ -1,7 +1,7 @@ test regalloc target x86_64 haswell -; Reported as https://github.com/cranelift/cranelift/issues/216 from the Binaryen fuzzer. +; Reported as https://github.com/CraneStation/cranelift/issues/216 from the Binaryen fuzzer. ; ; The (old) coalescer creates a virtual register with two identical values. function %pr216(i32 [%rdi], i64 vmctx [%rsi]) -> i64 [%rax] system_v { diff --git a/cranelift/filetests/regalloc/reload-208.clif b/cranelift/filetests/regalloc/reload-208.clif index 5da6bfa9ef..0f4a2e4bb4 100644 --- a/cranelift/filetests/regalloc/reload-208.clif +++ b/cranelift/filetests/regalloc/reload-208.clif @@ -3,7 +3,7 @@ target x86_64 haswell ; regex: V=v\d+ -; Filed as https://github.com/cranelift/cranelift/issues/208 +; Filed as https://github.com/CraneStation/cranelift/issues/208 ; ; The verifier complains about a branch argument that is not in the same virtual register as the ; corresponding EBB argument. diff --git a/cranelift/publish-all.sh b/cranelift/publish-all.sh index 9dd37e093b..e4a5ffc7a6 100755 --- a/cranelift/publish-all.sh +++ b/cranelift/publish-all.sh @@ -31,4 +31,4 @@ for crate in entity codegen frontend native reader wasm module simplejit faerie echo cargo publish --manifest-path "lib/$crate/Cargo.toml" done echo -echo Then, go to https://github.com/cranelift/cranelift/releases/ and define a new release. +echo Then, go to https://github.com/CraneStation/cranelift/releases/ and define a new release. diff --git a/lib/codegen/Cargo.toml b/lib/codegen/Cargo.toml index b7f601ab50..cb4149bbd4 100644 --- a/lib/codegen/Cargo.toml +++ b/lib/codegen/Cargo.toml @@ -5,7 +5,7 @@ version = "0.13.0" description = "Low-level code generator library" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" -repository = "https://github.com/cranelift/cranelift" +repository = "https://github.com/CraneStation/cranelift" readme = "README.md" keywords = ["compile", "compiler", "jit"] build = "build.rs" @@ -31,4 +31,4 @@ core = ["hashmap_core"] [badges] maintenance = { status = "experimental" } -travis-ci = { repository = "cranelift/cranelift" } +travis-ci = { repository = "CraneStation/cranelift" } diff --git a/lib/entity/Cargo.toml b/lib/entity/Cargo.toml index 2bb6e6f62f..338dbc499b 100644 --- a/lib/entity/Cargo.toml +++ b/lib/entity/Cargo.toml @@ -5,7 +5,7 @@ version = "0.13.0" description = "Data structures using entity references as mapping keys" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" -repository = "https://github.com/cranelift/cranelift" +repository = "https://github.com/CraneStation/cranelift" readme = "README.md" keywords = ["entity", "set", "map"] @@ -15,4 +15,4 @@ std = [] [badges] maintenance = { status = "experimental" } -travis-ci = { repository = "cranelift/cranelift" } +travis-ci = { repository = "CraneStation/cranelift" } diff --git a/lib/faerie/Cargo.toml b/lib/faerie/Cargo.toml index a9fbcbd778..28233eb35d 100644 --- a/lib/faerie/Cargo.toml +++ b/lib/faerie/Cargo.toml @@ -3,7 +3,7 @@ name = "cranelift-faerie" version = "0.13.0" authors = ["The Cranelift Project Developers"] description = "Emit Cranelift output to native object files with Faerie" -repository = "https://github.com/cranelift/cranelift" +repository = "https://github.com/CraneStation/cranelift" documentation = "https://cranelift.readthedocs.io/" license = "Apache-2.0 WITH LLVM-exception" readme = "README.md" @@ -18,4 +18,4 @@ target-lexicon = "0.0.2" [badges] maintenance = { status = "experimental" } -travis-ci = { repository = "cranelift/cranelift" } +travis-ci = { repository = "CraneStation/cranelift" } diff --git a/lib/filetests/Cargo.toml b/lib/filetests/Cargo.toml index dea40496c9..67ff90074c 100644 --- a/lib/filetests/Cargo.toml +++ b/lib/filetests/Cargo.toml @@ -5,7 +5,7 @@ version = "0.13.0" description = "Test driver and implementations of the filetest commands" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/en/latest/testing.html#file-tests" -repository = "https://github.com/cranelift/cranelift" +repository = "https://github.com/CraneStation/cranelift" publish = false [dependencies] diff --git a/lib/frontend/Cargo.toml b/lib/frontend/Cargo.toml index b9833b4582..a5241e6b95 100644 --- a/lib/frontend/Cargo.toml +++ b/lib/frontend/Cargo.toml @@ -5,7 +5,7 @@ version = "0.13.0" description = "Cranelift IR builder helper" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" -repository = "https://github.com/cranelift/cranelift" +repository = "https://github.com/CraneStation/cranelift" readme = "README.md" [dependencies] @@ -18,4 +18,4 @@ core = ["cranelift-codegen/core"] [badges] maintenance = { status = "experimental" } -travis-ci = { repository = "cranelift/cranelift" } +travis-ci = { repository = "CraneStation/cranelift" } diff --git a/lib/module/Cargo.toml b/lib/module/Cargo.toml index c971224b46..1591fd8c9a 100644 --- a/lib/module/Cargo.toml +++ b/lib/module/Cargo.toml @@ -3,7 +3,7 @@ name = "cranelift-module" version = "0.13.0" authors = ["The Cranelift Project Developers"] description = "Support for linking functions and data with Cranelift" -repository = "https://github.com/cranelift/cranelift" +repository = "https://github.com/CraneStation/cranelift" documentation = "https://cranelift.readthedocs.io/" license = "Apache-2.0 WITH LLVM-exception" readme = "README.md" @@ -21,4 +21,4 @@ core = ["hashmap_core", "cranelift-codegen/core"] [badges] maintenance = { status = "experimental" } -travis-ci = { repository = "cranelift/cranelift" } +travis-ci = { repository = "CraneStation/cranelift" } diff --git a/lib/native/Cargo.toml b/lib/native/Cargo.toml index ec7abc28b1..cea09d3233 100644 --- a/lib/native/Cargo.toml +++ b/lib/native/Cargo.toml @@ -3,7 +3,7 @@ name = "cranelift-native" version = "0.13.0" authors = ["The Cranelift Project Developers"] description = "Support for targeting the host with Cranelift" -repository = "https://github.com/cranelift/cranelift" +repository = "https://github.com/CraneStation/cranelift" license = "Apache-2.0 WITH LLVM-exception" readme = "README.md" @@ -24,4 +24,4 @@ core = ["cranelift-codegen/core", "raw-cpuid/nightly"] [badges] maintenance = { status = "experimental" } -travis-ci = { repository = "cranelift/cranelift" } +travis-ci = { repository = "CraneStation/cranelift" } diff --git a/lib/reader/Cargo.toml b/lib/reader/Cargo.toml index 837fe4abed..49d629cde8 100644 --- a/lib/reader/Cargo.toml +++ b/lib/reader/Cargo.toml @@ -5,7 +5,7 @@ version = "0.13.0" description = "Cranelift textual IR reader" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" -repository = "https://github.com/cranelift/cranelift" +repository = "https://github.com/CraneStation/cranelift" readme = "README.md" [dependencies] @@ -14,4 +14,4 @@ target-lexicon = "0.0.2" [badges] maintenance = { status = "experimental" } -travis-ci = { repository = "cranelift/cranelift" } +travis-ci = { repository = "CraneStation/cranelift" } diff --git a/lib/simplejit/Cargo.toml b/lib/simplejit/Cargo.toml index 1bbad6a2a5..52341ac735 100644 --- a/lib/simplejit/Cargo.toml +++ b/lib/simplejit/Cargo.toml @@ -3,7 +3,7 @@ name = "cranelift-simplejit" version = "0.13.0" authors = ["The Cranelift Project Developers"] description = "A simple JIT library backed by Cranelift" -repository = "https://github.com/cranelift/cranelift" +repository = "https://github.com/CraneStation/cranelift" documentation = "https://cranelift.readthedocs.io/" license = "Apache-2.0 WITH LLVM-exception" readme = "README.md" @@ -27,4 +27,4 @@ core = ["cranelift-codegen/core", "cranelift-module/core", "cranelift-native/cor [badges] maintenance = { status = "experimental" } -travis-ci = { repository = "cranelift/cranelift" } +travis-ci = { repository = "CraneStation/cranelift" } diff --git a/lib/umbrella/Cargo.toml b/lib/umbrella/Cargo.toml index 0650d3da63..8fb271f789 100644 --- a/lib/umbrella/Cargo.toml +++ b/lib/umbrella/Cargo.toml @@ -5,7 +5,7 @@ version = "0.13.0" description = "Umbrella for commonly-used cranelift crates" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" -repository = "https://github.com/cranelift/cranelift" +repository = "https://github.com/CraneStation/cranelift" readme = "README.md" keywords = ["compile", "compiler", "jit"] @@ -20,4 +20,4 @@ core = ["cranelift-codegen/core", "cranelift-frontend/core"] [badges] maintenance = { status = "experimental" } -travis-ci = { repository = "cranelift/cranelift" } +travis-ci = { repository = "CraneStation/cranelift" } diff --git a/lib/wasm/Cargo.toml b/lib/wasm/Cargo.toml index 058b2e44df..0530b953c7 100644 --- a/lib/wasm/Cargo.toml +++ b/lib/wasm/Cargo.toml @@ -3,7 +3,7 @@ name = "cranelift-wasm" version = "0.13.0" authors = ["The Cranelift Project Developers"] description = "Translator from WebAssembly to Cranelift IR" -repository = "https://github.com/cranelift/cranelift" +repository = "https://github.com/CraneStation/cranelift" license = "Apache-2.0 WITH LLVM-exception" readme = "README.md" keywords = ["webassembly", "wasm"] @@ -27,4 +27,4 @@ core = ["hashmap_core", "cranelift-codegen/core", "cranelift-frontend/core", "wa [badges] maintenance = { status = "experimental" } -travis-ci = { repository = "cranelift/cranelift" } +travis-ci = { repository = "CraneStation/cranelift" }