summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFerris Tseng <ferristseng@gmail.com>2017-12-26 18:20:23 -0500
committerGitHub <noreply@github.com>2017-12-26 18:20:23 -0500
commit22baf2870ec6488cdb270cd2021cfba137c9ddce (patch)
treedfe18f7502f2772d61082c3af019b5e21ed39199
parentf2660db63f7580443f6a10fbddf7035aaf9f7f4d (diff)
parent5bccdd535061f38aeea060cf72a14ad73f4ea7fc (diff)
Merge pull request #13 from ferristseng/dev
Increment version; add more Cargo.toml fields
-rw-r--r--README.md3
-rw-r--r--ipfs-api/Cargo.toml3
-rw-r--r--ipfs-api/src/lib.rs2
-rw-r--r--ipfs-cli/Cargo.toml5
4 files changed, 9 insertions, 4 deletions
diff --git a/README.md b/README.md
index a544ef5..6af18be 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
@@ -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
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 <ferristseng@fastmail.fm>"]
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-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
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 <ferristseng@fastmail.fm>"]
+repository = "https://github.com/ferristseng/rust-ipfs-api"
version = "0.4.0"
+readme = "../README.md"
license = "MIT OR Apache-2.0"
-authors = ["Ferris Tseng <ferristseng@fastmail.fm>"]
[dependencies]
clap = "2.27"