From 03a0673fb6e6fdb2e44b87f749a6592a056b6d7c Mon Sep 17 00:00:00 2001 From: k-nasa Date: Sat, 24 Apr 2021 15:15:24 +0900 Subject: [PATCH 1/3] Fix broken link --- lib/api/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/api/README.md b/lib/api/README.md index 45200b0fbe5..737bc7c3f97 100644 --- a/lib/api/README.md +++ b/lib/api/README.md @@ -1,7 +1,7 @@ # `wasmer` [![Build Status](https://github.com/wasmerio/wasmer/workflows/build/badge.svg?style=flat-square)](https://github.com/wasmerio/wasmer/actions?query=workflow%3Abuild) [![Join Wasmer Slack](https://img.shields.io/static/v1?label=Slack&message=join%20chat&color=brighgreen&style=flat-square)](https://slack.wasmer.io) [![MIT License](https://img.shields.io/github/license/wasmerio/wasmer.svg?style=flat-square)](https://github.com/wasmerio/wasmer/blob/master/LICENSE) [![crates.io](https://img.shields.io/crates/v/wasmer.svg)](https://crates.io/crates/wasmer) [`Wasmer`](https://wasmer.io/) is the most popular [WebAssembly](https://webassembly.org/) -runtime for Rust (...and also [the fastest]()!). It supports JIT (Just in Time) and AOT (Ahead of time) +runtime for Rust (...and also the fastest). It supports JIT (Just in Time) and AOT (Ahead of time) compilation as well as pluggable compilers suited to your needs. It's designed to be safe and secure, and runnable in any kind of environment. From 40ee361586f9f2cafb7b7acbdf24f611e4b203c5 Mon Sep 17 00:00:00 2001 From: k-nasa Date: Sat, 24 Apr 2021 15:32:04 +0900 Subject: [PATCH 2/3] fix favicon --- lib/api/src/lib.rs | 2 +- lib/c-api/src/lib.rs | 2 +- lib/cli/src/lib.rs | 2 +- lib/compiler-llvm/src/lib.rs | 2 +- lib/emscripten/src/lib.rs | 2 +- lib/wasi/src/lib.rs | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/api/src/lib.rs b/lib/api/src/lib.rs index 4c9508b1ce3..ac13cb3de45 100644 --- a/lib/api/src/lib.rs +++ b/lib/api/src/lib.rs @@ -1,6 +1,6 @@ #![doc( html_logo_url = "https://github.com/wasmerio.png?size=200", - html_favicon_url = "https://wasmer.io/static/icons/favicon.ico" + html_favicon_url = "https://wasmer.io/images/icons/favicon-32x32.png" )] #![deny( missing_docs, diff --git a/lib/c-api/src/lib.rs b/lib/c-api/src/lib.rs index 11432f3a24b..62ef932cdda 100644 --- a/lib/c-api/src/lib.rs +++ b/lib/c-api/src/lib.rs @@ -25,7 +25,7 @@ //! yet officially stabilized, over the `deprecated` API, which is //! more stable but less powerful and in a maintainance state. -#![doc(html_favicon_url = "https://wasmer.io/static/icons/favicon.ico")] +#![doc(html_favicon_url = "https://wasmer.io/images/icons/favicon-32x32.png")] #![doc(html_logo_url = "https://github.com/wasmerio.png?size=200")] // temporary while in transition #![allow(unused_variables)] diff --git a/lib/cli/src/lib.rs b/lib/cli/src/lib.rs index abb23aac40c..7a80b9fae69 100644 --- a/lib/cli/src/lib.rs +++ b/lib/cli/src/lib.rs @@ -10,7 +10,7 @@ unreachable_patterns, unstable_features )] -#![doc(html_favicon_url = "https://wasmer.io/static/icons/favicon.ico")] +#![doc(html_favicon_url = "https://wasmer.io/images/icons/favicon-32x32.png")] #![doc(html_logo_url = "https://github.com/wasmerio.png?size=200")] #[macro_use] diff --git a/lib/compiler-llvm/src/lib.rs b/lib/compiler-llvm/src/lib.rs index db2503e9c9b..55d36db1153 100644 --- a/lib/compiler-llvm/src/lib.rs +++ b/lib/compiler-llvm/src/lib.rs @@ -11,7 +11,7 @@ deny(dead_code) )] #![cfg_attr(nightly, feature(unwind_attributes))] -#![doc(html_favicon_url = "https://wasmer.io/static/icons/favicon.ico")] +#![doc(html_favicon_url = "https://wasmer.io/images/icons/favicon-32x32.png")] #![doc(html_logo_url = "https://github.com/wasmerio.png?size=200")] mod abi; diff --git a/lib/emscripten/src/lib.rs b/lib/emscripten/src/lib.rs index 0785627d8a1..18ad4114d99 100644 --- a/lib/emscripten/src/lib.rs +++ b/lib/emscripten/src/lib.rs @@ -7,7 +7,7 @@ unused_unsafe, unreachable_patterns )] -#![doc(html_favicon_url = "https://wasmer.io/static/icons/favicon.ico")] +#![doc(html_favicon_url = "https://wasmer.io/images/icons/favicon-32x32.png")] #![doc(html_logo_url = "https://github.com/wasmerio.png?size=200")] #[macro_use] diff --git a/lib/wasi/src/lib.rs b/lib/wasi/src/lib.rs index 628863d0a95..3b0945d828e 100644 --- a/lib/wasi/src/lib.rs +++ b/lib/wasi/src/lib.rs @@ -1,5 +1,5 @@ #![deny(unused_mut)] -#![doc(html_favicon_url = "https://wasmer.io/static/icons/favicon.ico")] +#![doc(html_favicon_url = "https://wasmer.io/images/icons/favicon-32x32.png")] #![doc(html_logo_url = "https://github.com/wasmerio.png?size=200")] //! Wasmer's WASI implementation From 7c9984ba50810f1578aa0b859c37aac10f6e5bbd Mon Sep 17 00:00:00 2001 From: k-nasa Date: Sat, 24 Apr 2021 16:32:08 +0900 Subject: [PATCH 3/3] Fix feature links --- lib/api/src/lib.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/api/src/lib.rs b/lib/api/src/lib.rs index ac13cb3de45..cc151315bc7 100644 --- a/lib/api/src/lib.rs +++ b/lib/api/src/lib.rs @@ -244,13 +244,13 @@ //! [wasmer-examples]: https://github.com/wasmerio/wasmer/tree/master/examples //! [wasmer-cache]: https://docs.rs/wasmer-cache/*/wasmer_cache/ //! [wasmer-compiler]: https://docs.rs/wasmer-compiler/*/wasmer_compiler/ -//! [wasmer-cranelift]: https://docs.rs/wasmer-cranelift/*/wasmer_cranelift/ +//! [wasmer-cranelift]: https://docs.rs/wasmer-compiler-cranelift/*/wasmer_compiler_cranelift/ //! [wasmer-emscripten]: https://docs.rs/wasmer-emscripten/*/wasmer_emscripten/ //! [wasmer-engine]: https://docs.rs/wasmer-engine/*/wasmer_engine/ -//! [wasmer-jit]: https://docs.rs/wasmer-jit/*/wasmer_jit/ -//! [wasmer-native]: https://docs.rs/wasmer-native/*/wasmer_native/ -//! [wasmer-singlepass]: https://docs.rs/wasmer-singlepass/*/wasmer_singlepass/ -//! [wasmer-llvm]: https://docs.rs/wasmer-llvm/*/wasmer_llvm/ +//! [wasmer-jit]: https://docs.rs/wasmer-engine-jit/*/wasmer_engine_jit/ +//! [wasmer-native]: https://docs.rs/wasmer-engine-native/*/wasmer_engine_native/ +//! [wasmer-singlepass]: https://docs.rs/wasmer-compiler-singlepass/*/wasmer_compiler_singlepass/ +//! [wasmer-llvm]: https://docs.rs/wasmer-compiler-llvm/*/wasmer_compiler_llvm/ //! [wasmer-wasi]: https://docs.rs/wasmer-wasi/*/wasmer_wasi/ mod env;