Skip to content

Commit 7900b2c

Browse files
fix: use resolver 2 and full async-std for now
Fixes #21
1 parent 59214ba commit 7900b2c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ keywords = ["tar", "tarfile", "encoding"]
1010
readme = "README.md"
1111
edition = "2018"
1212
exclude = ["tests/archives/*"]
13+
resolver = "2"
1314

1415
description = """
1516
A Rust implementation of an async TAR file reader and writer. This library does not
@@ -19,7 +20,7 @@ contents are never required to be entirely resident in memory all at once.
1920
"""
2021

2122
[dependencies]
22-
async-std = { version = "1.6.0", default-features = false }
23+
async-std = "1.6.0"
2324
filetime = "0.2.8"
2425
pin-project = "1.0.8"
2526

@@ -36,4 +37,4 @@ xattr = { version = "0.2", optional = true }
3637
redox_syscall = "0.2"
3738

3839
[features]
39-
default = ["xattr"]
40+
default = [ "xattr" ]

0 commit comments

Comments
 (0)