aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-03-03 01:13:51 -0500
committerJesse Luehrs <doy@tozt.net>2021-03-03 01:13:51 -0500
commitf7531c298e90252507c6224b78219a560c8a629f (patch)
tree3114744a7c2175d3a2519dc754aa5de4f1b2ebe3
parenta4bd6da79c239c107cd727504a303fd3d2789148 (diff)
downloadpty-process-f7531c298e90252507c6224b78219a560c8a629f.tar.gz
pty-process-f7531c298e90252507c6224b78219a560c8a629f.zip
set some versions
-rw-r--r--Cargo.toml10
1 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 3c60ffd..dad4339 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,8 +5,8 @@ authors = ["Jesse Luehrs <doy@tozt.net>"]
edition = "2018"
[dependencies]
-libc = "*"
-nix = "0.17"
+libc = "0.2"
+nix = "0.20"
thiserror = "1.0"
async-io = { version = "1.3", optional = true }
@@ -15,9 +15,9 @@ tokio = { version = "1.2", optional = true, features = ["fs", "process", "net"]
futures = { version = "0.3", optional = true }
[dev-dependencies]
-async-std = { version = "*", features = ["unstable"] }
-async-executor = "*"
-smol = "*"
+async-std = { version = "1.9", features = ["unstable"] }
+async-executor = "1.4"
+smol = "1.2"
tokio = { version = "1.2", features = [ "rt-multi-thread", "macros", "io-std", "io-util" ] }
[features]