Skip to content

Commit

Permalink
Fix wasm build.
Browse files Browse the repository at this point in the history
  • Loading branch information
Neopallium committed Dec 19, 2024
1 parent fd45790 commit 5209f57
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ members = [
# Our crates
polymesh-api-codegen-macro = { version = "3.6.2", path = "crates/polymesh-api-codegen-macro", default-features = false }
polymesh-api-codegen = { version = "3.6.2", path = "crates/polymesh-api-codegen", default-features = false }
polymesh-api-client = { version = "3.8.1", path = "crates/polymesh-api-client", default-features = false }
polymesh-api-client = { version = "3.8.2", path = "crates/polymesh-api-client", default-features = false }
polymesh-api-client-extras = { version = "3.4.2", path = "crates/polymesh-api-client-extras", default-features = false }
polymesh-api-tester = { version = "0.8.0", path = "crates/polymesh-api-tester", default-features = false }
polymesh-api-ink = { version = "1.5.0", path = "crates/polymesh-api-ink", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion crates/polymesh-api-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polymesh-api-client"
version = "3.8.1"
version = "3.8.2"
edition = "2021"
authors = ["Robert G. Jakabosky <[email protected]>"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/polymesh-api-client/src/basic_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ impl From<uuid::Uuid> for AssetId {
}
}

impl std::str::FromStr for AssetId {
impl FromStr for AssetId {
type Err = uuid::Error;

fn from_str(uuid_str: &str) -> Result<Self, Self::Err> {
Expand Down

0 comments on commit 5209f57

Please sign in to comment.