|
1 | 1 | # Wasmer Attributions
|
2 | 2 |
|
3 |
| -Wasmer is a community effort. |
4 |
| -In order to build the best WebAssembly runtime it's our duty to see how other runtimes are approaching the same space |
5 |
| -and get inspired from them on the things that they got right, so Wasmer and its community can benefit from a solid |
6 |
| -foundation. |
| 3 | +Wasmer is a community effort and makes use of code from various other |
| 4 | +projects. Listed below are notable sections of code that are licensed |
| 5 | +from other projects and the relevant license of those projects. |
7 | 6 |
|
8 |
| -These are the different project that we used as inspiration: |
| 7 | +These are the projects that were used as inspiration and/or that we are using code from: |
9 | 8 |
|
10 | 9 | - [Nebulet](https://github.com/nebulet/nebulet): as the base for creating a great Rust WebAssembly runtime
|
11 | 10 | - [WAVM](https://github.com/wavm/wavm): for their great integration and testing framework
|
12 | 11 | - [greenwasm](https://github.com/Kimundi/greenwasm): for their [spectests framework](https://github.com/Kimundi/greenwasm/tree/master/greenwasm-spectest)
|
13 |
| -- [wasmtime](https://github.com/CraneStation/wasmtime): for their [mmap implementation](https://github.com/CraneStation/wasmtime/blob/3f24098edc81cd9bf0f877fb7fba018cad0f039e/lib/runtime/src/mmap.rs) |
| 12 | +- [wasmtime](https://github.com/CraneStation/wasmtime): |
| 13 | + - For their [mmap implementation](https://github.com/CraneStation/wasmtime/blob/3f24098edc81cd9bf0f877fb7fba018cad0f039e/lib/runtime/src/mmap.rs) |
| 14 | + - For the implementation of the `__jit_debug_register_code` function |
| 15 | + in Rust, the structure of using Cranelift with the GDB JIT |
| 16 | + interface including implementation details regarding the structure |
| 17 | + of generating debug information for each function with Cranelift |
| 18 | + (for example, the sorting of the extended basic blocks before |
| 19 | + processing the instructions), and the API for transforming DWARF |
| 20 | + see [wasm-debug's attribution file](https://github.com/wasmerio/wasm-debug/blob/master/ATTRIBUTIONS.md) |
| 21 | + for more information |
14 | 22 | - [stackoverflow](https://stackoverflow.com/a/45795699/1072990): to create an efficient HashMap with pair keys
|
15 | 23 | - [Emscripten](https://github.com/kripken/emscripten): for emtests test sources to ensure compatibility
|
| 24 | +- [The WebAssembly spec](https://github.com/WebAssembly/spec/tree/master/test): for implementation details of WebAssembly and spectests |
16 | 25 |
|
17 |
| -We would love to hear from you if you think we can take inspiration from other projects that we haven't covered here. |
18 |
| -😊 |
| 26 | +Please let us know if you believe there is an error or omission in |
| 27 | +this list and we will do our best to correct it. |
19 | 28 |
|
20 | 29 | ## Licenses
|
21 | 30 |
|
|
0 commit comments