vet cargo docs on CI (#380)

Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
This commit is contained in:
xermicus
2025-09-29 13:39:09 +02:00
committed by GitHub
parent 713b7e5409
commit 1cc4f967b4
12 changed files with 28 additions and 16 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
use inkwell::{builder::Builder, context::Context, module::Module, values::IntValue};
/// Creates a module that sets the PolkaVM minimum stack size to [`size`] if linked in.
/// Creates a module that sets the PolkaVM minimum stack size to `size` if linked in.
pub fn min_stack_size<'context>(
context: &'context Context,
module_name: &str,
+4 -3
View File
@@ -1,10 +1,11 @@
//! This crate vendors the [PolkaVM][0] C API and provides a LLVM module for interacting
//! with the `pallet-revive` runtime API.
//! At present, the contracts pallet requires blobs to export `call` and `deploy`,
//! and offers a bunch of [runtime API methods][1]. The provided [module] implements
//! and offers a bunch of [runtime API methods][1]. The provided implements
//! those exports and imports.
//! [0]: [https://crates.io/crates/polkavm]
//! [1]: [https://docs.rs/pallet-contracts/26.0.0/pallet_contracts/api_doc/index.html]
//!
//! [0]: [<https://crates.io/crates/polkavm>]
//! [1]: [<https://docs.rs/pallet-contracts/latest/pallet_contracts/api_doc/index.html>]
pub mod calling_convention;
pub mod immutable_data;