mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-05 02:20:19 +00:00
Updated references from wafoundation to wasmerio
This commit is contained in:
parent
8d4594bb7f
commit
3ea37dcc59
2
.gitmodules
vendored
2
.gitmodules
vendored
@ -1,4 +1,4 @@
|
||||
[submodule "cranelift"]
|
||||
path = cranelift
|
||||
url = git@github.com:WAFoundation/cranelift.git
|
||||
url = git@github.com:wasmerio/cranelift.git
|
||||
fetchrecursesubmodules = true
|
||||
|
@ -3,7 +3,7 @@ name = "wasmer"
|
||||
version = "0.1.0"
|
||||
authors = ["Syrus Akbary <me@syrusakbary.com>"]
|
||||
# edition = "2018"
|
||||
repository = "https://github.com/wafoundation/wasmer"
|
||||
repository = "https://github.com/wasmerio/wasmer"
|
||||
publish = true
|
||||
description = "High-Performance WebAssembly JIT interpreter"
|
||||
license = "MIT"
|
||||
|
14
README.md
14
README.md
@ -1,8 +1,8 @@
|
||||
<p align="center"><a href="https://wasmer.io" target="_blank" rel="noopener noreferrer"><img width="400" src="https://raw.githubusercontent.com/WAFoundation/wasmer/master/logo.png" alt="Wasmer logo"></a></p>
|
||||
<p align="center"><a href="https://wasmer.io" target="_blank" rel="noopener noreferrer"><img width="400" src="https://raw.githubusercontent.com/wasmerio/wasmer/master/logo.png" alt="Wasmer logo"></a></p>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://circleci.com/gh/wafoundation/wasmer/"><img src="https://img.shields.io/circleci/project/github/WAFoundation/wasmer/master.svg" alt="Build Status"></a>
|
||||
<a href="https://github.com/WAFoundation/wasmer/blob/master/LICENSE"><img src="https://img.shields.io/github/license/WAFoundation/wasmer.svg" alt="License"></a>
|
||||
<a href="https://circleci.com/gh/wasmerio/wasmer/"><img src="https://img.shields.io/circleci/project/github/wasmerio/wasmer/master.svg" alt="Build Status"></a>
|
||||
<a href="https://github.com/wasmerio/wasmer/blob/master/LICENSE"><img src="https://img.shields.io/github/license/wasmerio/wasmer.svg" alt="License"></a>
|
||||
</p>
|
||||
|
||||
## Introduction
|
||||
@ -26,7 +26,7 @@ To build this project you will need Rust and Cargo.
|
||||
|
||||
```sh
|
||||
# checkout code and associated submodules
|
||||
git clone --recursive https://github.com/wafoundation/wasmer.git
|
||||
git clone --recursive https://github.com/wasmerio/wasmer.git
|
||||
cd wasmer
|
||||
|
||||
# install tools
|
||||
@ -36,7 +36,7 @@ cargo install
|
||||
|
||||
## Testing
|
||||
|
||||
Thanks to [spectests](https://github.com/WAFoundation/wasmer/tree/master/spectests) we can assure 100% compatibility with the WebAssembly spec test suite.
|
||||
Thanks to [spectests](https://github.com/wasmerio/wasmer/tree/master/spectests) we can assure 100% compatibility with the WebAssembly spec test suite.
|
||||
|
||||
Tests can be run with:
|
||||
|
||||
@ -57,8 +57,8 @@ Wasmer is an open project guided by strong principles, aiming to be modular, fle
|
||||
|
||||
Below are some of the goals (written with order) of this project:
|
||||
|
||||
- [x] It should be 100% compatible with the [WebAssembly Spectest](https://github.com/WAFoundation/wasmer/tree/master/spectests)
|
||||
- [x] It should be fast _partially achieved_
|
||||
- [x] It should be 100% compatible with the [WebAssembly Spectest](https://github.com/wasmerio/wasmer/tree/master/spectests)
|
||||
- [x] It should be fast _(partially achieved)_
|
||||
- [ ] Support Emscripten calls _(on the works)_
|
||||
- [ ] Support Rust ABI calls
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# - WASMER_ARCH (optional): use a specific value for ARCH (mostly for testing)
|
||||
#
|
||||
# You can install using this script:
|
||||
# $ curl https://raw.githubusercontent.com/WAFoundation/wasmer/master/install.sh | sh
|
||||
# $ curl https://raw.githubusercontent.com/wasmerio/wasmer/master/install.sh | sh
|
||||
|
||||
set -e
|
||||
|
||||
@ -32,7 +32,7 @@ white="\033[37m"
|
||||
bold="\e[1m"
|
||||
dim="\e[2m"
|
||||
|
||||
RELEASES_URL="https://github.com/WAFoundation/wasmer/releases"
|
||||
RELEASES_URL="https://github.com/wasmerio/wasmer/releases"
|
||||
|
||||
wasmer_download_json() {
|
||||
url="$2"
|
||||
@ -75,7 +75,7 @@ wasmer_download_file() {
|
||||
|
||||
if [ "$code" == 404 ]; then
|
||||
printf "$red> Your architecture is not yet supported ($OS-$ARCH).$reset\n"
|
||||
echo "> Please open an issue on the project if you would like to use wasmer in your project: https://github.com/WAFoundation/wasmer"
|
||||
echo "> Please open an issue on the project if you would like to use wasmer in your project: https://github.com/wasmerio/wasmer"
|
||||
exit 1
|
||||
elif [ "$code" != 200 ]; then
|
||||
printf "$red>File download failed with code $code.$reset\n"
|
||||
|
@ -8,9 +8,9 @@ Tests are written in the [S-Expression script format](https://github.com/WebAsse
|
||||
|
||||
This files will serve as base for autogenerating Rust testcases
|
||||
when `WASM_GENERATE_SPECTESTS=1 cargo build` is executed
|
||||
([src/build_spectests.rs](https://github.com/WAFoundation/wasmer/blob/master/src/build_spectests.rs)).
|
||||
([src/build_spectests.rs](https://github.com/wasmerio/wasmer/blob/master/src/build_spectests.rs)).
|
||||
|
||||
The result autogenerated spectests live in the [src/spectests](https://github.com/WAFoundation/wasmer/tree/master/src/spectests)
|
||||
The result autogenerated spectests live in the [src/spectests](https://github.com/wasmerio/wasmer/tree/master/src/spectests)
|
||||
directory.
|
||||
|
||||
## Testcases
|
||||
|
Loading…
Reference in New Issue
Block a user