Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
aumetra committed Oct 1, 2024
1 parent 0e7480c commit 286cabd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion packages/cw-schema/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ cw-schema-derive = { version = "=2.1.3", path = "../cw-schema-derive" }
indexmap = { version = "2.3.0", default-features = false }
schemars = { version = "1.0.0-alpha.2", optional = true }
serde = { version = "1.0.204", features = ["derive"] }
serde_with = { version = "3.9.0", default-features = false, features = ["macros"] }
serde_with = { version = "3.9.0", default-features = false, features = [
"macros",
] }
siphasher = { version = "1.0.1", default-features = false }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion packages/vm/src/environment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ pub struct DebugInfo<'a> {
pub type DebugHandlerFn = dyn for<'a, 'b> FnMut(/* msg */ &'a str, DebugInfo<'b>);

/// A environment that provides access to the ContextData.
/// The environment is clonable but clones access the same underlying data.
/// The environment is cloneable but clones access the same underlying data.
pub struct Environment<A, S, Q> {
pub memory: Option<Memory>,
pub api: A,
Expand Down

0 comments on commit 286cabd

Please sign in to comment.