aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig15
1 files changed, 10 insertions, 5 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 005767e..fb9f546 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -7,12 +7,12 @@ name = "tokio"
# - README.md
# - Update CHANGELOG.md.
# - Create "v1.0.x" git tag.
-version = "1.6.0"
+version = "1.7.1"
edition = "2018"
authors = ["Tokio Contributors <team@tokio.rs>"]
license = "MIT"
readme = "README.md"
-documentation = "https://docs.rs/tokio/1.6.0/tokio/"
+documentation = "https://docs.rs/tokio/1.7.1/tokio/"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
description = """
@@ -42,7 +42,7 @@ full = [
"time",
]
-fs = ["libc"]
+fs = []
io-util = ["memchr", "bytes"]
# stdin, stdout, stderr
io-std = []
@@ -54,6 +54,7 @@ net = [
"mio/tcp",
"mio/udp",
"mio/uds",
+ "winapi/namedpipeapi",
]
process = [
"bytes",
@@ -103,11 +104,11 @@ parking_lot = { version = "0.11.0", optional = true }
tracing = { version = "0.1.21", default-features = false, features = ["std"], optional = true } # Not in full
[target.'cfg(unix)'.dependencies]
-libc = { version = "0.2.87", optional = true }
+libc = { version = "0.2.42", optional = true }
signal-hook-registry = { version = "1.1.1", optional = true }
[target.'cfg(unix)'.dev-dependencies]
-libc = { version = "0.2.87" }
+libc = { version = "0.2.42" }
nix = { version = "0.19.0" }
[target.'cfg(windows)'.dependencies.winapi]
@@ -115,6 +116,9 @@ version = "0.3.8"
default-features = false
optional = true
+[target.'cfg(windows)'.dev-dependencies.ntapi]
+version = "0.3.6"
+
[dev-dependencies]
tokio-test = { version = "0.4.0", path = "../tokio-test" }
tokio-stream = { version = "0.1", path = "../tokio-stream" }
@@ -123,6 +127,7 @@ proptest = "1"
rand = "0.8.0"
tempfile = "3.1.0"
async-stream = "0.3"
+socket2 = "0.4"
[target.'cfg(loom)'.dev-dependencies]
loom = { version = "0.5", features = ["futures", "checkpoint"] }