summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFerris Tseng <ferristseng@fastmail.fm>2017-12-26 18:16:54 -0500
committerFerris Tseng <ferristseng@fastmail.fm>2017-12-26 18:16:54 -0500
commit88d5bb02a59e4d50eb90eaddf27379d7e522b905 (patch)
tree6c576c985bdb29fa010becfcde467bd79b0752de
parentf2660db63f7580443f6a10fbddf7035aaf9f7f4d (diff)
add more crate info; update version
-rw-r--r--README.md2
-rw-r--r--ipfs-api/Cargo.toml3
-rw-r--r--ipfs-cli/Cargo.toml5
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 <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-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"