summaryrefslogtreecommitdiffstats
path: root/ipfs-api
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-api')
-rw-r--r--ipfs-api/Cargo.toml2
-rw-r--r--ipfs-api/src/lib.rs12
2 files changed, 4 insertions, 10 deletions
diff --git a/ipfs-api/Cargo.toml b/ipfs-api/Cargo.toml
index 64a7171..56e6c5f 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.5.2"
+version = "0.6.0"
readme = "../README.md"
license = "MIT OR Apache-2.0"
diff --git a/ipfs-api/src/lib.rs b/ipfs-api/src/lib.rs
index 27cf2bf..bd1f8d0 100644
--- a/ipfs-api/src/lib.rs
+++ b/ipfs-api/src/lib.rs
@@ -14,14 +14,14 @@
//!
//! ```toml
//! [dependencies]
-//! ipfs-api = "0.5.2"
+//! ipfs-api = "0.6.0"
//! ```
//!
//! You can use `actix-web` as a backend instead of `hyper`.
//!
//! ```toml
//! [dependencies]
-//! ipfs-api = { version = "0.5.2", features = ["actix"], default-features = false }
+//! ipfs-api = { version = "0.6.0", features = ["actix"], default-features = false }
//! ```
//!
//! ## Examples
@@ -136,13 +136,7 @@
//! You can run any of the examples with cargo:
//!
//! ```sh
-//! $ cargo run -p ipfs-api --example add_file
-//! ```
-//!
-//! To run an example with the `actix-web` backend, use:
-//!
-//! ```sh
-//! $ cargo run -p ipfs-api --features actix --no-default-features --example add_file
+//! $ cargo run --example add_file
//! ```
//!