From 88d5bb02a59e4d50eb90eaddf27379d7e522b905 Mon Sep 17 00:00:00 2001 From: Ferris Tseng Date: Tue, 26 Dec 2017 18:16:54 -0500 Subject: add more crate info; update version --- README.md | 2 +- ipfs-api/Cargo.toml | 3 ++- ipfs-cli/Cargo.toml | 5 ++++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a544ef5..7e9e644 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Rust library for connecting to the IPFS HTTP API using tokio. ```toml [dependencies] -ipfs-api = "0.4.0-alpha" +ipfs-api = "0.4.0-alpha.1" ``` ### Examples diff --git a/ipfs-api/Cargo.toml b/ipfs-api/Cargo.toml index 798a598..5b6e402 100644 --- a/ipfs-api/Cargo.toml +++ b/ipfs-api/Cargo.toml @@ -3,9 +3,10 @@ name = "ipfs-api" description = "Implementation of an IPFS HTTP API client" authors = ["Ferris Tseng "] documentation = "https://docs.rs/ipfs-api" +repository = "https://github.com/ferristseng/rust-ipfs-api" keywords = ["ipfs"] categories = ["filesystem", "web-programming"] -version = "0.4.0-alpha" +version = "0.4.0-alpha.1" readme = "../README.md" license = "MIT OR Apache-2.0" diff --git a/ipfs-cli/Cargo.toml b/ipfs-cli/Cargo.toml index f7bcb2c..aee70d9 100644 --- a/ipfs-cli/Cargo.toml +++ b/ipfs-cli/Cargo.toml @@ -1,8 +1,11 @@ [package] name = "ipfs-cli" +description + "A CLI to interact with IPFS" +authors = ["Ferris Tseng "] +repository = "https://github.com/ferristseng/rust-ipfs-api" version = "0.4.0" +readme = "../README.md" license = "MIT OR Apache-2.0" -authors = ["Ferris Tseng "] [dependencies] clap = "2.27" -- cgit v1.2.3 From c7bae02274f2499f7d322ae7eb3c4250b7f1befc Mon Sep 17 00:00:00 2001 From: Ferris Tseng Date: Tue, 26 Dec 2017 18:17:28 -0500 Subject: increment version --- ipfs-api/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipfs-api/src/lib.rs b/ipfs-api/src/lib.rs index 78d0569..47a84cc 100644 --- a/ipfs-api/src/lib.rs +++ b/ipfs-api/src/lib.rs @@ -12,7 +12,7 @@ //! //! ```toml //! [dependencies] -//! ipfs-api = "0.4.0-alpha" +//! ipfs-api = "0.4.0-alpha.1" //! ``` //! //! ## Examples -- cgit v1.2.3 From 5bccdd535061f38aeea060cf72a14ad73f4ea7fc Mon Sep 17 00:00:00 2001 From: Ferris Tseng Date: Tue, 26 Dec 2017 18:19:38 -0500 Subject: rebuild README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7e9e644..6af18be 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,7 @@ let mut out = out.lock(); out.write_all(&res).unwrap(); ``` + There are also a bunch of examples included in the project, which I used for testing -- cgit v1.2.3