summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulius Michaelis <gitter@liftm.de>2020-07-13 15:22:33 +0900
committerJulius Michaelis <gitter@liftm.de>2020-07-13 15:54:56 +0900
commita3ad2e6bd9b8ed05587ea990c2136953ad2fd50f (patch)
tree80a0f97d682496ab91e57c8873704eae66e24c56
parent716e34de0419ec0a2533fe6b5b20cab3d11405b2 (diff)
Revert version bump "0.7.2 -> 0.8.0"
This should now be compatible with 0.7. This reverts commit 208a23371318ef9f61a27301093ea6667996102e.
-rw-r--r--Cargo.lock2
-rw-r--r--README.md4
-rw-r--r--ipfs-api/Cargo.toml2
3 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 2f3af8c..22ab27f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -956,7 +956,7 @@ dependencies = [
[[package]]
name = "ipfs-api"
-version = "0.8.0"
+version = "0.7.2"
dependencies = [
"actix-http 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"actix-multipart-rfc7578 0.3.0-rc (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/README.md b/README.md
index 7427c36..254d89f 100644
--- a/README.md
+++ b/README.md
@@ -10,14 +10,14 @@ Rust library for connecting to the IPFS HTTP API using tokio.
```toml
[dependencies]
-ipfs-api = "0.8"
+ipfs-api = "0.7.2"
```
You can use `actix-web` as a backend instead of `hyper`.
```toml
[dependencies]
-ipfs-api = { version = "0.8", features = ["actix"], default-features = false }
+ipfs-api = { version = "0.7.2", features = ["actix"], default-features = false }
```
### Examples
diff --git a/ipfs-api/Cargo.toml b/ipfs-api/Cargo.toml
index 76deb6e..9f2ca23 100644
--- a/ipfs-api/Cargo.toml
+++ b/ipfs-api/Cargo.toml
@@ -7,7 +7,7 @@ documentation = "https://docs.rs/ipfs-api"
repository = "https://github.com/ferristseng/rust-ipfs-api"
keywords = ["ipfs"]
categories = ["filesystem", "web-programming"]
-version = "0.8.0"
+version = "0.7.2"
readme = "../README.md"
license = "MIT OR Apache-2.0"