From 94017dbbcaf4ec568a28e61a1c070df45bf8e989 Mon Sep 17 00:00:00 2001 From: Max Inden Date: Wed, 30 Nov 2022 18:00:35 +0100 Subject: [PATCH] rust-client: Prepare v0.2.0 (#58) --- rust-client/Cargo.lock | 2 +- rust-client/Cargo.toml | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/rust-client/Cargo.lock b/rust-client/Cargo.lock index 8efca0f..522544e 100644 --- a/rust-client/Cargo.lock +++ b/rust-client/Cargo.lock @@ -2464,7 +2464,7 @@ dependencies = [ [[package]] name = "rust-client" -version = "0.1.0" +version = "0.2.0" dependencies = [ "clap", "either", diff --git a/rust-client/Cargo.toml b/rust-client/Cargo.toml index 77fa4f3..c47cdd7 100644 --- a/rust-client/Cargo.toml +++ b/rust-client/Cargo.toml @@ -1,7 +1,10 @@ [package] name = "rust-client" -version = "0.1.0" +version = "0.2.0" edition = "2021" +description = "Rust implementation of the punchr project" +repository = "https://github.com/dennis-tra/punchr" +license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -14,7 +17,7 @@ futures-timer = "3.0.0" libp2p = { version = "0.50.0", git = "https://github.com/elenaf9/rust-libp2p", rev = "e09a8602f0de8d15281a2d01c57050e81d9d8622", features = ["async-std", "dcutr", "dns", "identify", "noise", "relay", "ping", "quic", "tcp", "yamux", "macros", "rsa"] } log = "0.4" prost = "0.11.2" -rand = "0.8.5" +rand = "0.8.5" tokio = { version = "1.0", features = [ "rt-multi-thread", "time", "fs", "macros", "net",] } tonic = { version = "0.8.2", features = ["tls"] }