From 3b433e53be0d6bf8b01297708a763144c2cf4bad Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Wed, 18 Mar 2020 18:35:44 -0700 Subject: [PATCH] Memofs v0.1.1 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- memofs/CHANGELOG.md | 3 +++ memofs/Cargo.toml | 2 +- memofs/src/std_backend.rs | 1 - 5 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 102a5b89..1b7b6170 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -922,7 +922,7 @@ dependencies = [ [[package]] name = "memofs" -version = "0.1.0" +version = "0.1.1" dependencies = [ "crossbeam-channel 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "fs-err 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1688,7 +1688,7 @@ dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "maplit 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "memofs 0.1.0", + "memofs 0.1.1", "notify 4.0.15 (registry+https://github.com/rust-lang/crates.io-index)", "opener 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "paste 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index d4eae073..b7d734d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -58,7 +58,7 @@ name = "build" harness = false [dependencies] -memofs = { version = "0.1.0", path = "memofs" } +memofs = { version = "0.1.1", path = "memofs" } anyhow = "1.0.27" backtrace = "0.3" diff --git a/memofs/CHANGELOG.md b/memofs/CHANGELOG.md index a75397e1..cd4647f2 100644 --- a/memofs/CHANGELOG.md +++ b/memofs/CHANGELOG.md @@ -2,5 +2,8 @@ ## Unreleased Changes +## 0.1.1 (2020-03-18) +* Improved error messages using the [fs-err](https://crates.io/crates/fs-err) crate. + ## 0.1.0 (2020-03-10) * Initial release \ No newline at end of file diff --git a/memofs/Cargo.toml b/memofs/Cargo.toml index aaae80fd..3843606a 100644 --- a/memofs/Cargo.toml +++ b/memofs/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "memofs" description = "Virtual filesystem with configurable backends." -version = "0.1.0" +version = "0.1.1" authors = ["Lucien Greathouse "] edition = "2018" readme = "README.md" diff --git a/memofs/src/std_backend.rs b/memofs/src/std_backend.rs index ac9b45c4..7e616cbd 100644 --- a/memofs/src/std_backend.rs +++ b/memofs/src/std_backend.rs @@ -1,4 +1,3 @@ -use std::fs; use std::io; use std::path::Path; use std::sync::mpsc;