From c78196bd0160fd9b903c5d45e076cdec0ee781c6 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Tue, 12 Nov 2019 09:18:59 -0800 Subject: [PATCH] Update repository URLs for the Bytecode Alliance. (#550) --- CONTRIBUTING.md | 4 ++-- Cargo.toml | 2 +- README.md | 8 ++++---- crates/api/Cargo.toml | 2 +- crates/debug/Cargo.toml | 2 +- crates/environ/Cargo.toml | 2 +- crates/interface-types/Cargo.toml | 2 +- crates/jit/Cargo.toml | 2 +- crates/lightbeam/Cargo.toml | 2 +- crates/lightbeam/README.md | 4 ++-- crates/misc/py/Cargo.toml | 2 +- crates/misc/rust/Cargo.toml | 2 +- crates/misc/rust/macro/Cargo.toml | 2 +- crates/obj/Cargo.toml | 2 +- crates/runtime/Cargo.toml | 2 +- crates/wasi-c/Cargo.toml | 2 +- .../sandboxed-system-primitives/include/wasmtime_ssp.h | 2 +- crates/wasi-c/sandboxed-system-primitives/src/config.h | 4 ++-- crates/wasi-c/sandboxed-system-primitives/src/locking.h | 4 ++-- .../sandboxed-system-primitives/src/numeric_limits.h | 4 ++-- crates/wasi-c/sandboxed-system-primitives/src/posix.c | 4 ++-- crates/wasi-c/sandboxed-system-primitives/src/posix.h | 4 ++-- crates/wasi-c/sandboxed-system-primitives/src/queue.h | 4 ++-- crates/wasi-c/sandboxed-system-primitives/src/random.c | 4 ++-- crates/wasi-c/sandboxed-system-primitives/src/random.h | 4 ++-- crates/wasi-c/sandboxed-system-primitives/src/refcount.h | 4 ++-- crates/wasi-c/sandboxed-system-primitives/src/rights.h | 4 ++-- crates/wasi-c/sandboxed-system-primitives/src/signals.h | 4 ++-- crates/wasi-c/sandboxed-system-primitives/src/str.c | 4 ++-- crates/wasi-c/sandboxed-system-primitives/src/str.h | 4 ++-- crates/wasi-common/Cargo.toml | 2 +- crates/wasi-common/README.md | 4 ++-- crates/wasi-common/build.rs | 2 +- crates/wasi-common/src/sys/unix/hostcalls_impl/mod.rs | 2 +- crates/wasi-common/src/sys/windows/hostcalls_impl/mod.rs | 2 +- crates/wasi-common/wasi-common-cbindgen/Cargo.toml | 2 +- crates/wasi-common/wig/Cargo.toml | 2 +- crates/wasi-common/winx/Cargo.toml | 2 +- crates/wasi/Cargo.toml | 2 +- crates/wasi/js-polyfill/README.md | 2 +- crates/wast/Cargo.toml | 2 +- docs/WASI-documents.md | 2 +- docs/WASI-intro.md | 4 ++-- docs/WASI-overview.md | 2 +- docs/cli-cache.md | 2 +- 45 files changed, 65 insertions(+), 65 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f516d1021e..3a8ecbe986 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -9,5 +9,5 @@ use the [Wasmtime issue tracker]. [Bytecode Alliance] : https://bytecodealliance.org/ [Code of Conduct] : CODE_OF_CONDUCT.md [Organizational Code of Conduct] : ORG_CODE_OF_CONDUCT.md -[Cranelift's CONTRIBUTING.md]: https://github.com/CraneStation/cranelift/blob/master/CONTRIBUTING.md -[Wasmtime issue tracker]: https://github.com/CraneStation/wasmtime/issues/new +[Cranelift's CONTRIBUTING.md]: https://github.com/bytecodealliance/cranelift/blob/master/CONTRIBUTING.md +[Wasmtime issue tracker]: https://github.com/bytecodealliance/wasmtime/issues/new diff --git a/Cargo.toml b/Cargo.toml index 22208d23b0..ae78a1ad8f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" categories = ["wasm"] keywords = ["webassembly", "wasm"] -repository = "https://github.com/CraneStation/wasmtime" +repository = "https://github.com/bytecodealliance/wasmtime" readme = "README.md" edition = "2018" default-run = "wasmtime" diff --git a/README.md b/README.md index 706752b6c5..76a95be455 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,8 @@ To get started, visit [wasmtime.dev](https://wasmtime.dev/). [WebAssembly]: https://webassembly.org/ [WASI]: https://wasi.dev [outside of the Web]: https://webassembly.org/docs/non-web/ -[build-status]: https://github.com/CraneStation/wasmtime/workflows/CI/badge.svg -[github-actions]: https://github.com/CraneStation/wasmtime/actions?query=workflow%3ACI +[build-status]: https://github.com/bytecodealliance/wasmtime/workflows/CI/badge.svg +[github-actions]: https://github.com/bytecodealliance/wasmtime/actions?query=workflow%3ACI [gitter-chat-badge]: https://badges.gitter.im/CraneStation/CraneStation.svg [gitter-chat]: https://gitter.im/CraneStation/Lobby [minimum-rustc]: https://img.shields.io/badge/rustc-1.37+-green.svg @@ -48,8 +48,8 @@ Additional goals for Wasmtime include: - Develop a native ABI used for compiling WebAssembly suitable for use in both JIT and AOT to native object files. -[Cranelift]: https://github.com/CraneStation/cranelift -[Lightbeam]: https://github.com/CraneStation/wasmtime/tree/master/lightbeam +[Cranelift]: https://github.com/bytecodealliance/cranelift +[Lightbeam]: https://github.com/bytecodealliance/wasmtime/tree/master/lightbeam #### Including Wasmtime in your project diff --git a/crates/api/Cargo.toml b/crates/api/Cargo.toml index 6f39564bb4..87ef086902 100644 --- a/crates/api/Cargo.toml +++ b/crates/api/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" authors = ["The Wasmtime Project Developers"] description = "High-level API to expose the Wasmtime runtime" license = "Apache-2.0 WITH LLVM-exception" -repository = "https://github.com/CraneStation/wasmtime" +repository = "https://github.com/bytecodealliance/wasmtime" readme = "README.md" edition = "2018" diff --git a/crates/debug/Cargo.toml b/crates/debug/Cargo.toml index 1ccaf72be1..e2fe97e32d 100644 --- a/crates/debug/Cargo.toml +++ b/crates/debug/Cargo.toml @@ -4,7 +4,7 @@ version = "0.2.0" authors = ["The Wasmtime Project Developers"] description = "Debug utils for WebAsssembly code in Cranelift" license = "Apache-2.0 WITH LLVM-exception" -repository = "https://github.com/CraneStation/wasmtime" +repository = "https://github.com/bytecodealliance/wasmtime" documentation = "https://docs.rs/wasmtime-debug/" categories = ["wasm"] keywords = ["webassembly", "wasm", "debuginfo"] diff --git a/crates/environ/Cargo.toml b/crates/environ/Cargo.toml index 62629ecdf7..ba58353593 100644 --- a/crates/environ/Cargo.toml +++ b/crates/environ/Cargo.toml @@ -4,7 +4,7 @@ version = "0.2.0" authors = ["The Wasmtime Project Developers"] description = "Standalone environment support for WebAsssembly code in Cranelift" license = "Apache-2.0 WITH LLVM-exception" -repository = "https://github.com/CraneStation/wasmtime" +repository = "https://github.com/bytecodealliance/wasmtime" documentation = "https://docs.rs/wasmtime-environ/" categories = ["wasm"] keywords = ["webassembly", "wasm"] diff --git a/crates/interface-types/Cargo.toml b/crates/interface-types/Cargo.toml index ffb91aaf5e..7b6fd02a55 100644 --- a/crates/interface-types/Cargo.toml +++ b/crates/interface-types/Cargo.toml @@ -6,7 +6,7 @@ description = "Support for wasm interface types with wasmtime" license = "Apache-2.0 WITH LLVM-exception" categories = ["wasm"] keywords = ["webassembly", "wasm"] -repository = "https://github.com/CraneStation/wasmtime" +repository = "https://github.com/bytecodealliance/wasmtime" readme = "README.md" edition = "2018" diff --git a/crates/jit/Cargo.toml b/crates/jit/Cargo.toml index 51bb1789ce..e79b0e0af1 100644 --- a/crates/jit/Cargo.toml +++ b/crates/jit/Cargo.toml @@ -6,7 +6,7 @@ description = "JIT-style execution for WebAsssembly code in Cranelift" license = "Apache-2.0 WITH LLVM-exception" categories = ["wasm"] keywords = ["webassembly", "wasm"] -repository = "https://github.com/CraneStation/wasmtime" +repository = "https://github.com/bytecodealliance/wasmtime" readme = "README.md" edition = "2018" diff --git a/crates/lightbeam/Cargo.toml b/crates/lightbeam/Cargo.toml index 9a118f4afb..f62bacb2d5 100644 --- a/crates/lightbeam/Cargo.toml +++ b/crates/lightbeam/Cargo.toml @@ -4,7 +4,7 @@ version = "0.0.0" authors = ["The Lightbeam Project Developers"] description = "An optimising one-pass streaming compiler for WebAssembly" license = "Apache-2.0 WITH LLVM-exception" -repository = "https://github.com/CraneStation/wasmtime" +repository = "https://github.com/bytecodealliance/wasmtime" readme = "README.md" categories = ["wasm"] keywords = ["webassembly", "wasm", "compile", "compiler", "jit"] diff --git a/crates/lightbeam/README.md b/crates/lightbeam/README.md index 4fff9400a4..7c35b13963 100644 --- a/crates/lightbeam/README.md +++ b/crates/lightbeam/README.md @@ -2,7 +2,7 @@ Lightbeam is an optimising one-pass streaming compiler for WebAssembly, intended for use in [Wasmtime][wasmtime]. -[wasmtime]: https://github.com/CraneStation/wasmtime +[wasmtime]: https://github.com/bytecodealliance/wasmtime ## Quality of output @@ -165,4 +165,4 @@ Lightbeam passes 100% of the specification test suite, but that doesn't necessar You can file issues in the [Wasmtime issue tracker][issue tracker]. If you want to get involved jump into the [CraneStation Gitter room][cranestation-gitter] and someone can direct you to the right place. I wish I could say "the most useful thing you can do is play with it and open issues where you find problems" but until it passes the spec suite that won't be very helpful. [cranestation-gitter]: https://gitter.im/CraneStation/Lobby -[Wasmtime issue tracker]: https://github.com/CraneStation/wasmtime/issues +[Wasmtime issue tracker]: https://github.com/bytecodealliance/wasmtime/issues diff --git a/crates/misc/py/Cargo.toml b/crates/misc/py/Cargo.toml index ee9af74782..309cf0c139 100644 --- a/crates/misc/py/Cargo.toml +++ b/crates/misc/py/Cargo.toml @@ -6,7 +6,7 @@ description = "Python extension for Wasmtime" license = "Apache-2.0 WITH LLVM-exception" categories = ["wasm", "python"] keywords = ["webassembly", "wasm"] -repository = "https://github.com/CraneStation/wasmtime" +repository = "https://github.com/bytecodealliance/wasmtime" readme = "README.md" edition = "2018" diff --git a/crates/misc/rust/Cargo.toml b/crates/misc/rust/Cargo.toml index 2f47219605..451c224a8e 100644 --- a/crates/misc/rust/Cargo.toml +++ b/crates/misc/rust/Cargo.toml @@ -6,7 +6,7 @@ description = "Rust extension for Wasmtime" license = "Apache-2.0 WITH LLVM-exception" categories = ["wasm", "rust"] keywords = ["webassembly", "wasm"] -repository = "https://github.com/CraneStation/wasmtime" +repository = "https://github.com/bytecodealliance/wasmtime" readme = "README.md" edition = "2018" diff --git a/crates/misc/rust/macro/Cargo.toml b/crates/misc/rust/macro/Cargo.toml index 87994655e4..9bce9079d9 100644 --- a/crates/misc/rust/macro/Cargo.toml +++ b/crates/misc/rust/macro/Cargo.toml @@ -4,7 +4,7 @@ version = "0.2.0" authors = ["Alex Crichton "] description = "Macro support crate for wasmtime-rust" license = "Apache-2.0 WITH LLVM-exception" -repository = "https://github.com/CraneStation/wasmtime" +repository = "https://github.com/bytecodealliance/wasmtime" readme = "README.md" edition = "2018" diff --git a/crates/obj/Cargo.toml b/crates/obj/Cargo.toml index 0f4b6d36e2..06841e825d 100644 --- a/crates/obj/Cargo.toml +++ b/crates/obj/Cargo.toml @@ -4,7 +4,7 @@ version = "0.2.0" authors = ["The Wasmtime Project Developers"] description = "Native object file output for WebAsssembly code in Wasmtime" license = "Apache-2.0 WITH LLVM-exception" -repository = "https://github.com/CraneStation/wasmtime" +repository = "https://github.com/bytecodealliance/wasmtime" categories = ["wasm"] keywords = ["webassembly", "wasm"] readme = "README.md" diff --git a/crates/runtime/Cargo.toml b/crates/runtime/Cargo.toml index f255c7c3ef..96b635a935 100644 --- a/crates/runtime/Cargo.toml +++ b/crates/runtime/Cargo.toml @@ -6,7 +6,7 @@ description = "Runtime library support for Wasmtime" license = "Apache-2.0 WITH LLVM-exception" categories = ["wasm"] keywords = ["webassembly", "wasm"] -repository = "https://github.com/CraneStation/wasmtime" +repository = "https://github.com/bytecodealliance/wasmtime" readme = "README.md" edition = "2018" diff --git a/crates/wasi-c/Cargo.toml b/crates/wasi-c/Cargo.toml index 477880a03d..dc7817d00a 100644 --- a/crates/wasi-c/Cargo.toml +++ b/crates/wasi-c/Cargo.toml @@ -6,7 +6,7 @@ description = "WASI API support for Wasmtime" license = "Apache-2.0 WITH LLVM-exception" categories = ["wasm"] keywords = ["webassembly", "wasm"] -repository = "https://github.com/CraneStation/wasmtime" +repository = "https://github.com/bytecodealliance/wasmtime" readme = "README.md" edition = "2018" diff --git a/crates/wasi-c/sandboxed-system-primitives/include/wasmtime_ssp.h b/crates/wasi-c/sandboxed-system-primitives/include/wasmtime_ssp.h index 6a0d348c4f..2e900f0265 100644 --- a/crates/wasi-c/sandboxed-system-primitives/include/wasmtime_ssp.h +++ b/crates/wasi-c/sandboxed-system-primitives/include/wasmtime_ssp.h @@ -1,6 +1,6 @@ /* * Part of the Wasmtime Project, under the Apache License v2.0 with LLVM Exceptions. - * See https://github.com/CraneStation/wasmtime/blob/master/LICENSE for license information. + * See https://github.com/bytecodealliance/wasmtime/blob/master/LICENSE for license information. * * This file declares an interface similar to WASI, but augmented to expose * some implementation details such as the curfds arguments that we pass diff --git a/crates/wasi-c/sandboxed-system-primitives/src/config.h b/crates/wasi-c/sandboxed-system-primitives/src/config.h index 714e29d24f..837f48cfa7 100644 --- a/crates/wasi-c/sandboxed-system-primitives/src/config.h +++ b/crates/wasi-c/sandboxed-system-primitives/src/config.h @@ -1,8 +1,8 @@ // Part of the Wasmtime Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://github.com/CraneStation/wasmtime/blob/master/LICENSE for license information. +// See https://github.com/bytecodealliance/wasmtime/blob/master/LICENSE for license information. // // Significant parts of this file are derived from cloudabi-utils. See -// https://github.com/CraneStation/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE +// https://github.com/bytecodealliance/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE // for license information. // // The upstream file contains the following copyright notice: diff --git a/crates/wasi-c/sandboxed-system-primitives/src/locking.h b/crates/wasi-c/sandboxed-system-primitives/src/locking.h index 0efb788ed5..31ffa375fd 100644 --- a/crates/wasi-c/sandboxed-system-primitives/src/locking.h +++ b/crates/wasi-c/sandboxed-system-primitives/src/locking.h @@ -1,8 +1,8 @@ // Part of the Wasmtime Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://github.com/CraneStation/wasmtime/blob/master/LICENSE for license information. +// See https://github.com/bytecodealliance/wasmtime/blob/master/LICENSE for license information. // // Significant parts of this file are derived from cloudabi-utils. See -// https://github.com/CraneStation/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE +// https://github.com/bytecodealliance/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE // for license information. // // The upstream file contains the following copyright notice: diff --git a/crates/wasi-c/sandboxed-system-primitives/src/numeric_limits.h b/crates/wasi-c/sandboxed-system-primitives/src/numeric_limits.h index 30dddd19aa..036cb7de70 100644 --- a/crates/wasi-c/sandboxed-system-primitives/src/numeric_limits.h +++ b/crates/wasi-c/sandboxed-system-primitives/src/numeric_limits.h @@ -1,8 +1,8 @@ // Part of the Wasmtime Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://github.com/CraneStation/wasmtime/blob/master/LICENSE for license information. +// See https://github.com/bytecodealliance/wasmtime/blob/master/LICENSE for license information. // // Significant parts of this file are derived from cloudabi-utils. See -// https://github.com/CraneStation/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE +// https://github.com/bytecodealliance/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE // for license information. // // The upstream file contains the following copyright notice: diff --git a/crates/wasi-c/sandboxed-system-primitives/src/posix.c b/crates/wasi-c/sandboxed-system-primitives/src/posix.c index 5dd9a726c7..e71ddac534 100644 --- a/crates/wasi-c/sandboxed-system-primitives/src/posix.c +++ b/crates/wasi-c/sandboxed-system-primitives/src/posix.c @@ -1,8 +1,8 @@ // Part of the Wasmtime Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://github.com/CraneStation/wasmtime/blob/master/LICENSE for license information. +// See https://github.com/bytecodealliance/wasmtime/blob/master/LICENSE for license information. // // Significant parts of this file are derived from cloudabi-utils. See -// https://github.com/CraneStation/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE +// https://github.com/bytecodealliance/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE // for license information. // // The upstream file contains the following copyright notice: diff --git a/crates/wasi-c/sandboxed-system-primitives/src/posix.h b/crates/wasi-c/sandboxed-system-primitives/src/posix.h index 6711c9b2e3..4e1ce38d94 100644 --- a/crates/wasi-c/sandboxed-system-primitives/src/posix.h +++ b/crates/wasi-c/sandboxed-system-primitives/src/posix.h @@ -1,8 +1,8 @@ // Part of the Wasmtime Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://github.com/CraneStation/wasmtime/blob/master/LICENSE for license information. +// See https://github.com/bytecodealliance/wasmtime/blob/master/LICENSE for license information. // // Significant parts of this file are derived from cloudabi-utils. See -// https://github.com/CraneStation/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE +// https://github.com/bytecodealliance/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE // for license information. // // The upstream file contains the following copyright notice: diff --git a/crates/wasi-c/sandboxed-system-primitives/src/queue.h b/crates/wasi-c/sandboxed-system-primitives/src/queue.h index c46190a853..59416b8199 100644 --- a/crates/wasi-c/sandboxed-system-primitives/src/queue.h +++ b/crates/wasi-c/sandboxed-system-primitives/src/queue.h @@ -1,8 +1,8 @@ // Part of the Wasmtime Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://github.com/CraneStation/wasmtime/blob/master/LICENSE for license information. +// See https://github.com/bytecodealliance/wasmtime/blob/master/LICENSE for license information. // // Significant parts of this file are derived from cloudabi-utils. See -// https://github.com/CraneStation/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE +// https://github.com/bytecodealliance/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE // for license information. // // The upstream file contains the following copyright notice: diff --git a/crates/wasi-c/sandboxed-system-primitives/src/random.c b/crates/wasi-c/sandboxed-system-primitives/src/random.c index 9fc3e33be2..845af72373 100644 --- a/crates/wasi-c/sandboxed-system-primitives/src/random.c +++ b/crates/wasi-c/sandboxed-system-primitives/src/random.c @@ -1,8 +1,8 @@ // Part of the Wasmtime Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://github.com/CraneStation/wasmtime/blob/master/LICENSE for license information. +// See https://github.com/bytecodealliance/wasmtime/blob/master/LICENSE for license information. // // Significant parts of this file are derived from cloudabi-utils. See -// https://github.com/CraneStation/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE +// https://github.com/bytecodealliance/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE // for license information. // // The upstream file contains the following copyright notice: diff --git a/crates/wasi-c/sandboxed-system-primitives/src/random.h b/crates/wasi-c/sandboxed-system-primitives/src/random.h index d87a292cf0..20ef9e21d0 100644 --- a/crates/wasi-c/sandboxed-system-primitives/src/random.h +++ b/crates/wasi-c/sandboxed-system-primitives/src/random.h @@ -1,8 +1,8 @@ // Part of the Wasmtime Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://github.com/CraneStation/wasmtime/blob/master/LICENSE for license information. +// See https://github.com/bytecodealliance/wasmtime/blob/master/LICENSE for license information. // // Significant parts of this file are derived from cloudabi-utils. See -// https://github.com/CraneStation/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE +// https://github.com/bytecodealliance/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE // for license information. // // The upstream file contains the following copyright notice: diff --git a/crates/wasi-c/sandboxed-system-primitives/src/refcount.h b/crates/wasi-c/sandboxed-system-primitives/src/refcount.h index 51752bc9b1..606de7c217 100644 --- a/crates/wasi-c/sandboxed-system-primitives/src/refcount.h +++ b/crates/wasi-c/sandboxed-system-primitives/src/refcount.h @@ -1,8 +1,8 @@ // Part of the Wasmtime Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://github.com/CraneStation/wasmtime/blob/master/LICENSE for license information. +// See https://github.com/bytecodealliance/wasmtime/blob/master/LICENSE for license information. // // Significant parts of this file are derived from cloudabi-utils. See -// https://github.com/CraneStation/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE +// https://github.com/bytecodealliance/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE // for license information. // // The upstream file contains the following copyright notice: diff --git a/crates/wasi-c/sandboxed-system-primitives/src/rights.h b/crates/wasi-c/sandboxed-system-primitives/src/rights.h index 69349e45ca..ca1b581b85 100644 --- a/crates/wasi-c/sandboxed-system-primitives/src/rights.h +++ b/crates/wasi-c/sandboxed-system-primitives/src/rights.h @@ -1,8 +1,8 @@ // Part of the Wasmtime Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://github.com/CraneStation/wasmtime/blob/master/LICENSE for license information. +// See https://github.com/bytecodealliance/wasmtime/blob/master/LICENSE for license information. // // Significant parts of this file are derived from cloudabi-utils. See -// https://github.com/CraneStation/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE +// https://github.com/bytecodealliance/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE // for license information. // // The upstream file contains the following copyright notice: diff --git a/crates/wasi-c/sandboxed-system-primitives/src/signals.h b/crates/wasi-c/sandboxed-system-primitives/src/signals.h index 16f5d575ca..b80fd3924c 100644 --- a/crates/wasi-c/sandboxed-system-primitives/src/signals.h +++ b/crates/wasi-c/sandboxed-system-primitives/src/signals.h @@ -1,8 +1,8 @@ // Part of the Wasmtime Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://github.com/CraneStation/wasmtime/blob/master/LICENSE for license information. +// See https://github.com/bytecodealliance/wasmtime/blob/master/LICENSE for license information. // // Significant parts of this file are derived from cloudabi-utils. See -// https://github.com/CraneStation/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE +// https://github.com/bytecodealliance/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE // for license information. // // The upstream file contains the following copyright notice: diff --git a/crates/wasi-c/sandboxed-system-primitives/src/str.c b/crates/wasi-c/sandboxed-system-primitives/src/str.c index 02a9518f47..b945f1ffcd 100644 --- a/crates/wasi-c/sandboxed-system-primitives/src/str.c +++ b/crates/wasi-c/sandboxed-system-primitives/src/str.c @@ -1,8 +1,8 @@ // Part of the Wasmtime Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://github.com/CraneStation/wasmtime/blob/master/LICENSE for license information. +// See https://github.com/bytecodealliance/wasmtime/blob/master/LICENSE for license information. // // Significant parts of this file are derived from cloudabi-utils. See -// https://github.com/CraneStation/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE +// https://github.com/bytecodealliance/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE // for license information. // // The upstream file contains the following copyright notice: diff --git a/crates/wasi-c/sandboxed-system-primitives/src/str.h b/crates/wasi-c/sandboxed-system-primitives/src/str.h index a9c5f226fa..b820216f46 100644 --- a/crates/wasi-c/sandboxed-system-primitives/src/str.h +++ b/crates/wasi-c/sandboxed-system-primitives/src/str.h @@ -1,8 +1,8 @@ // Part of the Wasmtime Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://github.com/CraneStation/wasmtime/blob/master/LICENSE for license information. +// See https://github.com/bytecodealliance/wasmtime/blob/master/LICENSE for license information. // // Significant parts of this file are derived from cloudabi-utils. See -// https://github.com/CraneStation/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE +// https://github.com/bytecodealliance/wasmtime/blob/master/lib/wasi/sandboxed-system-primitives/src/LICENSE // for license information. // // The upstream file contains the following copyright notice: diff --git a/crates/wasi-common/Cargo.toml b/crates/wasi-common/Cargo.toml index 6e6af87bf5..af72f44e7d 100644 --- a/crates/wasi-common/Cargo.toml +++ b/crates/wasi-common/Cargo.toml @@ -6,7 +6,7 @@ description = "WASI implementation in Rust" license = "Apache-2.0 WITH LLVM-exception" categories = ["wasm"] keywords = ["webassembly", "wasm"] -repository = "https://github.com/CraneStation/wasmtime" +repository = "https://github.com/bytecodealliance/wasmtime" readme = "README.md" edition = "2018" diff --git a/crates/wasi-common/README.md b/crates/wasi-common/README.md index 0a9c39311f..ca5e169a48 100644 --- a/crates/wasi-common/README.md +++ b/crates/wasi-common/README.md @@ -9,7 +9,7 @@ currently based on [40ae1df][lucet-wasi-tracker] git revision. Please note that the library requires Rust compiler version at least 1.37.0. -[Wasmtime]: https://github.com/CraneStation/wasmtime +[Wasmtime]: https://github.com/bytecodealliance/wasmtime [Lucet]: https://github.com/fastly/lucet [lucet-wasi]: https://github.com/fastly/lucet/tree/master/lucet-wasi [lucet-wasi-tracker]: https://github.com/fastly/lucet/commit/40ae1df64536250a2b6ab67e7f167d22f4aa7f94 @@ -28,7 +28,7 @@ We expect these to be implemented when network access is standardised. We also currently do not support the `proc_raise` hostcall, as it is expected to be dropped entirely from WASI. -[WASI API]: https://github.com/CraneStation/wasmtime/blob/master/docs/WASI-api.md +[WASI API]: https://github.com/bytecodealliance/wasmtime/blob/master/docs/WASI-api.md ### Windows In our Windows implementation, we currently support the minimal subset of [WASI API] diff --git a/crates/wasi-common/build.rs b/crates/wasi-common/build.rs index 613982022b..8d464ff92f 100644 --- a/crates/wasi-common/build.rs +++ b/crates/wasi-common/build.rs @@ -3,7 +3,7 @@ //! By generating a separate `#[test]` test for each file, we allow cargo test //! to automatically run the files in parallel. //! -//! Idea adapted from: https://github.com/CraneStation/wasmtime/blob/master/build.rs +//! Idea adapted from: https://github.com/bytecodealliance/wasmtime/blob/master/build.rs //! Thanks @sunfishcode fn main() { diff --git a/crates/wasi-common/src/sys/unix/hostcalls_impl/mod.rs b/crates/wasi-common/src/sys/unix/hostcalls_impl/mod.rs index 75f8df76c7..ba18086104 100644 --- a/crates/wasi-common/src/sys/unix/hostcalls_impl/mod.rs +++ b/crates/wasi-common/src/sys/unix/hostcalls_impl/mod.rs @@ -1,5 +1,5 @@ //! Unix-specific hostcalls that implement -//! [WASI](https://github.com/CraneStation/wasmtime-wasi/blob/wasi/docs/WASI-overview.md). +//! [WASI](https://github.com/bytecodealliance/wasmtime-wasi/blob/wasi/docs/WASI-overview.md). mod fs; pub(crate) mod fs_helpers; mod misc; diff --git a/crates/wasi-common/src/sys/windows/hostcalls_impl/mod.rs b/crates/wasi-common/src/sys/windows/hostcalls_impl/mod.rs index 9bf4b539a5..fdbf448f80 100644 --- a/crates/wasi-common/src/sys/windows/hostcalls_impl/mod.rs +++ b/crates/wasi-common/src/sys/windows/hostcalls_impl/mod.rs @@ -1,5 +1,5 @@ //! Windows-specific hostcalls that implement -//! [WASI](https://github.com/CraneStation/wasmtime-wasi/blob/wasi/docs/WASI-overview.md). +//! [WASI](https://github.com/bytecodealliance/wasmtime-wasi/blob/wasi/docs/WASI-overview.md). mod fs; pub(crate) mod fs_helpers; mod misc; diff --git a/crates/wasi-common/wasi-common-cbindgen/Cargo.toml b/crates/wasi-common/wasi-common-cbindgen/Cargo.toml index a088121203..416c11b3b0 100644 --- a/crates/wasi-common/wasi-common-cbindgen/Cargo.toml +++ b/crates/wasi-common/wasi-common-cbindgen/Cargo.toml @@ -4,7 +4,7 @@ version = "0.5.0" authors = ["Jakub Konka "] description = "Interface generator utilities used by wasi-common" license = "Apache-2.0 WITH LLVM-exception" -repository = "https://github.com/CraneStation/wasmtime" +repository = "https://github.com/bytecodealliance/wasmtime" edition = "2018" [lib] diff --git a/crates/wasi-common/wig/Cargo.toml b/crates/wasi-common/wig/Cargo.toml index 9913a25280..a08e01b495 100644 --- a/crates/wasi-common/wig/Cargo.toml +++ b/crates/wasi-common/wig/Cargo.toml @@ -6,7 +6,7 @@ description = "WebAssembly Interface Generator" license = "Apache-2.0 WITH LLVM-exception" categories = ["wasm"] keywords = ["webassembly", "wasm"] -repository = "https://github.com/CraneStation/wasmtime" +repository = "https://github.com/bytecodealliance/wasmtime" edition = "2018" [lib] diff --git a/crates/wasi-common/winx/Cargo.toml b/crates/wasi-common/winx/Cargo.toml index 94e9359923..381da2f644 100644 --- a/crates/wasi-common/winx/Cargo.toml +++ b/crates/wasi-common/winx/Cargo.toml @@ -4,7 +4,7 @@ version = "0.5.0" authors = ["Jakub Konka "] description = "Windows API helper library" license = "Apache-2.0 WITH LLVM-exception" -repository = "https://github.com/CraneStation/wasmtime" +repository = "https://github.com/bytecodealliance/wasmtime" edition = "2018" [dependencies] diff --git a/crates/wasi/Cargo.toml b/crates/wasi/Cargo.toml index 7d0c898459..2f39a3bbaf 100644 --- a/crates/wasi/Cargo.toml +++ b/crates/wasi/Cargo.toml @@ -6,7 +6,7 @@ description = "WASI API support for Wasmtime" license = "Apache-2.0 WITH LLVM-exception" categories = ["wasm"] keywords = ["webassembly", "wasm"] -repository = "https://github.com/CraneStation/wasmtime" +repository = "https://github.com/bytecodealliance/wasmtime" readme = "README.md" edition = "2018" diff --git a/crates/wasi/js-polyfill/README.md b/crates/wasi/js-polyfill/README.md index f54b42af1d..12e3fdc171 100644 --- a/crates/wasi/js-polyfill/README.md +++ b/crates/wasi/js-polyfill/README.md @@ -1,2 +1,2 @@ For the current polyfill sources, please checkout this same directory in -[the polyfill branch](https://github.com/CraneStation/wasmtime/tree/polyfill/). +[the polyfill branch](https://github.com/bytecodealliance/wasmtime/tree/polyfill/). diff --git a/crates/wast/Cargo.toml b/crates/wast/Cargo.toml index 85d42e80ac..8898cddee6 100644 --- a/crates/wast/Cargo.toml +++ b/crates/wast/Cargo.toml @@ -6,7 +6,7 @@ description = "wast testing support for wasmtime" license = "Apache-2.0 WITH LLVM-exception" categories = ["wasm"] keywords = ["webassembly", "wasm"] -repository = "https://github.com/CraneStation/wasmtime" +repository = "https://github.com/bytecodealliance/wasmtime" readme = "README.md" edition = "2018" diff --git a/docs/WASI-documents.md b/docs/WASI-documents.md index f98649a482..156a7079f8 100644 --- a/docs/WASI-documents.md +++ b/docs/WASI-documents.md @@ -5,7 +5,7 @@ To get started using WASI, see [the intro document](WASI-intro.md) and For more detail on what WASI is, see [the overview](WASI-overview.md). -For specifics on the API, see the [API documentation](https://github.com/CraneStation/wasmtime/blob/master/docs/WASI-api.md). +For specifics on the API, see the [API documentation](https://github.com/bytecodealliance/wasmtime/blob/master/docs/WASI-api.md). Additionally, a C header file describing the WASI API is [here](https://github.com/CraneStation/wasi-libc/blob/master/libc-bottom-half/headers/public/wasi/core.h). diff --git a/docs/WASI-intro.md b/docs/WASI-intro.md index 97f1cbad44..a2a271f420 100644 --- a/docs/WASI-intro.md +++ b/docs/WASI-intro.md @@ -65,7 +65,7 @@ about function signature mismatches; this is a Currently the options are [Wasmtime] and the [browser polyfill], though we intend WASI to be implementable in many wasm VMs. -[Wasmtime]: https://github.com/CraneStation/wasmtime +[Wasmtime]: https://github.com/bytecodealliance/wasmtime [browser polyfill]: https://wasi.dev/polyfill/ ### Wasmtime @@ -80,7 +80,7 @@ or `cargo run --bin wasmtime foo.wasm`. The polyfill is online [here](https://wasi.dev/polyfill/). -The source is [here](https://github.com/CraneStation/wasmtime/tree/master/wasmtime-wasi/js-polyfill). +The source is [here](https://github.com/bytecodealliance/wasmtime/tree/master/wasmtime-wasi/js-polyfill). ## Where can I learn more? diff --git a/docs/WASI-overview.md b/docs/WASI-overview.md index 975a30d492..46952f8273 100644 --- a/docs/WASI-overview.md +++ b/docs/WASI-overview.md @@ -160,4 +160,4 @@ integration between .wasm modules importing WASI and the Web. WASI is currently experimental. Feedback is welcome! -[Wasmtime]: https://github.com/CraneStation/wasmtime +[Wasmtime]: https://github.com/bytecodealliance/wasmtime diff --git a/docs/cli-cache.md b/docs/cli-cache.md index a893d9e721..ce7eca8de8 100644 --- a/docs/cli-cache.md +++ b/docs/cli-cache.md @@ -30,7 +30,7 @@ If you think some default value should be tuned, some new settings should be introduced or some behavior should be changed, you are welcome to discuss it and contribute to [the Wasmtime repository]. -[the Wasmtime repository]: https://github.com/CraneStation/wasmtime +[the Wasmtime repository]: https://github.com/bytecodealliance/wasmtime Setting `enabled` -----------------