diff --git a/Cargo.lock b/Cargo.lock index 67fa682..41290d9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -559,7 +559,7 @@ dependencies = [ "futures-util", "matches", "phantom-type", - "round-based-derive", + "round-based-derive 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "thiserror", "tokio", "tokio-stream", @@ -576,6 +576,17 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "round-based-derive" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0397bf224fdbcb3b286926e43bba90a96f81a82cc630ebfc9290d18e8b6331bd" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + [[package]] name = "round-based-tests" version = "0.1.0" diff --git a/round-based/Cargo.toml b/round-based/Cargo.toml index f1c8066..71271cd 100644 --- a/round-based/Cargo.toml +++ b/round-based/Cargo.toml @@ -7,6 +7,7 @@ description = "Driver for MPC protocols" repository = "https://github.com/ZenGo-X/round-based-protocol" categories = ["asynchronous", "cryptography", "network-programming"] keywords = ["round-based", "mpc", "protocol"] +readme = "../README.md" [package.metadata.docs.rs] all-features = true @@ -20,7 +21,7 @@ phantom-type = "0.3" tracing = "0.1" thiserror = "1" -round-based-derive = { path = "../round-based-derive", optional = true } +round-based-derive = { version = "0.2", optional = true } tokio = { version = "1", features = ["rt"], optional = true } tokio-stream = { version = "0.1", features = ["sync"], optional = true }