Skip to content

Commit 879bbdb

Browse files
committed
Bump ipc-channel to 0.16.1
Fixes #43
1 parent 9402d99 commit 879bbdb

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

Cargo.toml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
[package]
22
name = "procspawn"
3-
version = "0.10.2"
4-
authors = ["Armin Ronacher <[email protected]>", "Manish Goregaokar <[email protected]>"]
3+
version = "0.10.3"
4+
authors = [
5+
"Armin Ronacher <[email protected]>",
6+
"Manish Goregaokar <[email protected]>",
7+
]
58
edition = "2018"
69
license = "MIT/Apache-2.0"
710
description = "thread::spawn just with processes"
@@ -23,7 +26,7 @@ json = ["serde_json"]
2326
safe-shared-libraries = ["findshlibs"]
2427

2528
[dependencies]
26-
ipc-channel = "0.16.0"
29+
ipc-channel = "0.16.1"
2730
serde = { version = "1.0.104", features = ["derive"] }
2831
backtrace = { version = "0.3.43", optional = true, features = ["serde"] }
2932
libc = "0.2.66"
@@ -32,7 +35,10 @@ serde_json = { version = "1.0.47", optional = true }
3235
findshlibs = { version = "0.10.2", optional = true }
3336

3437
[target."cfg(windows)".dependencies]
35-
winapi = { version = "0.3.9", features = ["errhandlingapi", "processthreadsapi"] }
38+
winapi = { version = "0.3.9", features = [
39+
"errhandlingapi",
40+
"processthreadsapi",
41+
] }
3642

3743
[[example]]
3844
name = "panic"

0 commit comments

Comments
 (0)