Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 0 additions & 10 deletions examples/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sylvia-derive/src/contract/communication/wrapper_msg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@
// deserialized it from JSON, not reason to expect error here.
format!(
"Unsupported message received: {}. Messages supported by this contract: ",
#sylvia ::serde_json::to_string(&val).unwrap_or_else(|_| String::new())
#sylvia ::cw_std::to_json_string(&val).unwrap_or_else(|_| String::new())

Check warning on line 220 in sylvia-derive/src/contract/communication/wrapper_msg.rs

View check run for this annotation

Codecov / codecov/patch

sylvia-derive/src/contract/communication/wrapper_msg.rs#L220

Added line #L220 was not covered by tests
),
|mut acc, message| acc + message + ", ",
);
Expand Down
1 change: 0 additions & 1 deletion sylvia/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ cosmwasm-schema = { workspace = true }
schemars = { workspace = true }
serde = { workspace = true }
serde-cw-value = "0.7.0"
serde-json-wasm = "1.0.1"
konst = "0.3.16"
cw-multi-test = { workspace = true, optional = true }
anyhow = { workspace = true, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion sylvia/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ pub use cw_utils;
pub use sylvia_derive::{contract, entry_points, interface};
pub use {
cosmwasm_schema as cw_schema, cosmwasm_std as cw_std, schemars, serde,
serde_cw_value as serde_value, serde_json_wasm as serde_json,
serde_cw_value as serde_value,
};