Memofs v0.1.1

This commit is contained in:
Lucien Greathouse
2020-03-18 18:35:44 -07:00
parent 28ddf40344
commit 3b433e53be
5 changed files with 7 additions and 5 deletions

4
Cargo.lock generated
View File

@@ -922,7 +922,7 @@ dependencies = [
[[package]] [[package]]
name = "memofs" name = "memofs"
version = "0.1.0" version = "0.1.1"
dependencies = [ dependencies = [
"crossbeam-channel 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "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)", "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)", "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)", "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)", "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)", "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)", "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)", "paste 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@@ -58,7 +58,7 @@ name = "build"
harness = false harness = false
[dependencies] [dependencies]
memofs = { version = "0.1.0", path = "memofs" } memofs = { version = "0.1.1", path = "memofs" }
anyhow = "1.0.27" anyhow = "1.0.27"
backtrace = "0.3" backtrace = "0.3"

View File

@@ -2,5 +2,8 @@
## Unreleased Changes ## 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) ## 0.1.0 (2020-03-10)
* Initial release * Initial release

View File

@@ -1,7 +1,7 @@
[package] [package]
name = "memofs" name = "memofs"
description = "Virtual filesystem with configurable backends." description = "Virtual filesystem with configurable backends."
version = "0.1.0" version = "0.1.1"
authors = ["Lucien Greathouse <me@lpghatguy.com>"] authors = ["Lucien Greathouse <me@lpghatguy.com>"]
edition = "2018" edition = "2018"
readme = "README.md" readme = "README.md"

View File

@@ -1,4 +1,3 @@
use std::fs;
use std::io; use std::io;
use std::path::Path; use std::path::Path;
use std::sync::mpsc; use std::sync::mpsc;