ci: remove cargo update (#87)

* remove cargo update

* fix doc comments
This commit is contained in:
Valery Antopol 2022-11-21 10:47:20 +04:00 committed by GitHub
parent a4320006e1
commit 94d308290e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 7 deletions

View File

@ -15,8 +15,6 @@ jobs:
- name: Setup rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
- run: cargo update --aggressive
- name: Install jq
run: sudo apt-get update && sudo apt-get --yes --force-yes install jq

View File

@ -106,16 +106,15 @@ pub mod internal {
#[cfg(not(feature = "no-explicit-ctors-call"))]
#[cfg(target_arch = "wasm32")]
#[doc(hidden)]
extern "C" {
// For internal use. Not an API function.
fn __wasm_call_ctors();
}
/// Adds an explicit __wasm_call_ctors call to tell LLVM not to
/// wrap every export in __wasm_call_ctors/__wasm_call_dtors calls.
/// The most referenced issue about it is https://github.com/WebAssembly/WASI/issues/471
/// For internal use. Not an API function.
// Adds an explicit __wasm_call_ctors call to tell LLVM not to
// wrap every export in __wasm_call_ctors/__wasm_call_dtors calls.
// The most referenced issue about it is https://github.com/WebAssembly/WASI/issues/471
// For internal use. Not an API function.
#[cfg(not(feature = "no-explicit-ctors-call"))]
#[cfg(target_arch = "wasm32")]
#[doc(hidden)]