Skip to content

Commit

Permalink
fix checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Leshiy committed Feb 1, 2024
1 parent 85b2dcb commit 6f662cd
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion hermes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,3 @@ pallas = { version = "0.21.0", git = "https://github.com/input-output-hk/catalys
pallas-hardano = { version = "0.21.0", git = "https://github.com/input-output-hk/catalyst-pallas.git", branch = "feat/hardano-read-blocks-iter-send" }

wasmtime = "17.0.0"
thiserror = "1.0"
1 change: 0 additions & 1 deletion hermes/bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,4 @@ repository.workspace = true
workspace = true

[dependencies]
thiserror = { workspace = true }
wasmtime = { workspace = true, features = ["component-model"] }
4 changes: 2 additions & 2 deletions hermes/bin/src/wasm/module.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! WASM module implementation.
//! Wrapper over the `wasmtime::Module`, `wasmtime::Instance` etc. structs which
//! define a WASM module abstrction with capability to interact with it.
//! define a WASM module abstraction with capability to interact with it.
//!
//! All implementation based on [wasmtime](https://crates.io/crates/wasmtime) crate dependency.

Expand All @@ -19,7 +19,7 @@ pub(crate) trait LinkImport<Context> {
fn link(&self, linker: &mut WasmLinker<Context>) -> Result<(), Box<dyn Error>>;
}

/// Structure defines an abstaction over the WASM module
/// Structure defines an abstraction over the WASM module
/// It instantiates the module with the provided context data,
/// links all provided imports to the module instance,
/// handles an internal state of the WASM module.
Expand Down
1 change: 1 addition & 0 deletions wasm/wasi-hermes-component-adapter/deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ allow = [
"Apache-2.0",
"Unicode-DFS-2016",
"BSD-3-Clause",
"BSD-2-Clause",
"BlueOak-1.0.0",
"Apache-2.0 WITH LLVM-exception"
]
Expand Down

0 comments on commit 6f662cd

Please sign in to comment.