Skip to content

Commit 1a9bee6

Browse files
feat(zip): bump MSRV to 1.70
1 parent df29c52 commit 1a9bee6

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/compile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- stable
1616
- beta
1717
- nightly
18-
- 1.63.0 # MSRV
18+
- 1.70.0 # MSRV
1919

2020
steps:
2121
- uses: actions/checkout@v2

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ async-recursion = {version = "1.0.5", optional = true}
2222
filetime = "0.2.23"
2323
camino = { version = "1.0.5", optional = true }
2424
zip = { version = "1.1.1", optional = true }
25-
ouroboros = "0.18.3"
25+
ouroboros = { version = "0.18.3", optional = true }
2626

2727
[dev-dependencies]
2828
uuid = { version = "=0.8.1", features = ["v4"] }
@@ -35,6 +35,7 @@ walkdir = { version = "2.5.0" }
3535
embedded-fs = ["rust-embed"]
3636
async-vfs = ["tokio", "async-std", "async-trait", "futures", "async-recursion"]
3737
export-test-macros = [ "camino" ]
38+
zip = [ "dep:zip", "dep:ouroboros" ]
3839

3940
[package.metadata.docs.rs]
4041
features = ["embedded-fs", "async-vfs"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This crate currently has the following implementations:
1717
* **OverlayFS** - an overlay file system combining two filesystems, an upper layer with read/write access and a lower layer with only read access
1818
* **EmbeddedFS** - a read-only file system embedded in the executable, requires `embedded-fs` feature, no async version available
1919

20-
The minimum supported Rust version (MSRV) is 1.63.
20+
The minimum supported Rust version (MSRV) is 1.70.
2121

2222
Comments and pull-requests welcome!
2323

0 commit comments

Comments
 (0)