sdk/rust: use path dependency for `serde_wormhole` (#2992)

instead of an override. This makes it easier for downstream users to depend on this crate
This commit is contained in:
guibescos 2024-01-25 15:00:06 +00:00 committed by GitHub
parent a2bdc8d0c8
commit 55faa9ca1f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 3 deletions

View File

@ -8,5 +8,3 @@ members = [
opt-level = 3
lto = "thin"
[patch.crates-io]
serde_wormhole = { path = "serde_wormhole" }

View File

@ -15,7 +15,7 @@ anyhow = "1"
bstr = { version = "1", features = ["serde"] }
schemars = { version = "0.8.8", optional = true }
serde = { version = "1", default-features = false, features = ["alloc", "derive"] }
serde_wormhole = "0.1.0"
serde_wormhole = {path = "../serde_wormhole"}
sha3 = "0.10.4"
thiserror = "1"