Skip to content

Commit 286cabd

Browse files
committed
Fix CI
1 parent 0e7480c commit 286cabd

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

packages/cw-schema/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ cw-schema-derive = { version = "=2.1.3", path = "../cw-schema-derive" }
88
indexmap = { version = "2.3.0", default-features = false }
99
schemars = { version = "1.0.0-alpha.2", optional = true }
1010
serde = { version = "1.0.204", features = ["derive"] }
11-
serde_with = { version = "3.9.0", default-features = false, features = ["macros"] }
11+
serde_with = { version = "3.9.0", default-features = false, features = [
12+
"macros",
13+
] }
1214
siphasher = { version = "1.0.1", default-features = false }
1315

1416
[dev-dependencies]

packages/vm/src/environment.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ pub struct DebugInfo<'a> {
167167
pub type DebugHandlerFn = dyn for<'a, 'b> FnMut(/* msg */ &'a str, DebugInfo<'b>);
168168

169169
/// A environment that provides access to the ContextData.
170-
/// The environment is clonable but clones access the same underlying data.
170+
/// The environment is cloneable but clones access the same underlying data.
171171
pub struct Environment<A, S, Q> {
172172
pub memory: Option<Memory>,
173173
pub api: A,

0 commit comments

Comments
 (0)