Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Commit

Permalink
fix docs.rs build error
Browse files Browse the repository at this point in the history
  • Loading branch information
burmecia committed Apr 24, 2019
1 parent f97b299 commit 58665b2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zbox"
version = "0.7.0"
version = "0.7.1"
authors = ["Bo Lu"]
description = "Zbox is a zero-details, privacy-focused in-app file system."
documentation = "https://docs.rs/zbox"
Expand All @@ -12,6 +12,9 @@ categories = ["filesystem", "cryptography"]
license = "Apache-2.0"
build = "build.rs"

[package.metadata.docs.rs]
features = [ "libsodium-bundled" ]

[badges]
travis-ci = { repository = "zboxfs/zbox" }

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Add the following dependency to your `Cargo.toml`:

```toml
[dependencies]
zbox = "0.7.0"
zbox = "0.7.1"
```

If you don't want to install libsodium by yourself, you can specify
Expand All @@ -120,7 +120,7 @@ verify and build libsodium.

```toml
[dependencies]
zbox = { version = "0.7.0", features = ["libsodium-bundled"] }
zbox = { version = "0.7.1", features = ["libsodium-bundled"] }
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion src/repo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ fn open_file_with_options<P: AsRef<Path>>(
///
/// ```toml
/// [dependencies]
/// zbox = { version = "0.7.0", features = ["storage-file"] }
/// zbox = { version = "0.7.1", features = ["storage-file"] }
/// ```
///
/// # Create and open `Repo`
Expand Down
2 changes: 1 addition & 1 deletion src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ pub const REPO_PATCH_VERSION: u8 = 0;
/// Define ZboxFS library version
pub const LIB_MAJOR_VERSION: u8 = 0;
pub const LIB_MINOR_VERSION: u8 = 7;
pub const LIB_PATCH_VERSION: u8 = 0;
pub const LIB_PATCH_VERSION: u8 = 1;

0 comments on commit 58665b2

Please sign in to comment.