From 60383ec06b1959c11c6399cac08144528b6ddecc Mon Sep 17 00:00:00 2001 From: Dave Huseby Date: Sun, 14 Apr 2024 18:22:39 -0600 Subject: [PATCH] fix wire serialization, bump to 1.0 Signed-off-by: Dave Huseby --- Cargo.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 003b0aa..f39f31d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,12 +14,12 @@ dag_cbor = ["serde_cbor", "serde_cbor/tags"] [dependencies] multibase = "0.9" -multicodec = { version = "0.3", git = "https://github.com/cryptidtech/rust-multicodec.git" } -multihash = { version = "0.2", git = "https://github.com/cryptidtech/multihash.git" } -multikey = { version = "0.8", git = "https://github.com/cryptidtech/multikey.git" } -multisig = { version = "0.3", git = "https://github.com/cryptidtech/multisig.git" } -multitrait = { version = "0.1", git = "https://github.com/cryptidtech/multitrait.git" } -multiutil = { version = "0.2", git = "https://github.com/cryptidtech/multiutil.git" } +multicodec = { version = "1.0", git = "https://github.com/cryptidtech/rust-multicodec.git" } +multihash = { version = "1.0", git = "https://github.com/cryptidtech/multihash.git" } +multikey = { version = "1.0", git = "https://github.com/cryptidtech/multikey.git" } +multisig = { version = "1.0", git = "https://github.com/cryptidtech/multisig.git" } +multitrait = { version = "1.0", git = "https://github.com/cryptidtech/multitrait.git" } +multiutil = { version = "1.0", git = "https://github.com/cryptidtech/multiutil.git" } rand = "0.8" serde = { version = "1.0", default-features = false, features = ["alloc", "derive"], optional = true } serde_cbor = { version = "0.11", optional = true }