Skip to content

Commit

Permalink
Merge pull request #580 from thesimplekid/fix_uuid_wasm
Browse files Browse the repository at this point in the history
chore: pin uuid
  • Loading branch information
thesimplekid authored Feb 5, 2025
2 parents bbea123 + 4cbf833 commit dcb9ab3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions crates/cashu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ wallet = []
bench = []

[dependencies]
uuid = { version = "1", features = ["v4", "serde"], optional = true }
uuid = { version = "=1.12.1", features = ["v4", "serde"], optional = true }
bitcoin = { version = "0.32.2", features = [
"base64",
"serde",
Expand All @@ -37,4 +37,4 @@ instant = { version = "0.1", features = ["wasm-bindgen", "inaccurate"] }

[dev-dependencies]
bip39 = "2.0"
uuid = { version = "1", features = ["v4", "serde"] }
uuid = { version = "=1.12.1", features = ["v4", "serde"] }
2 changes: 1 addition & 1 deletion crates/cdk-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ lightning-invoice = { version = "0.32.0", features = ["serde", "std"] }
thiserror = "2"
tracing = "0.1"
url = "2.3"
uuid = { version = "1", features = ["v4", "serde"], optional = true }
uuid = { version = "=1.12.1", features = ["v4", "serde"], optional = true }
utoipa = { version = "4", optional = true }
futures = "0.3.31"
anyhow = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/cdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ futures = { version = "0.3.28", default-features = false, optional = true, featu
] }
url = "2.3"
utoipa = { version = "4", optional = true }
uuid = { version = "1", features = ["v4", "serde"] }
uuid = { version = "=1.12.1", features = ["v4", "serde"] }

# -Z minimal-versions
sync_wrapper = "0.1.2"
Expand Down

0 comments on commit dcb9ab3

Please sign in to comment.