Skip to content

Commit 1218b10

Browse files
bors[bot]MikailBag
andauthored
Merge #113
113: Update deps r=MikailBag a=MikailBag Co-authored-by: Mikail Bagishov <bagishov.mikail@yandex.ru>
2 parents faf82bf + 6525aaa commit 1218b10

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/minion/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ libc= "0.2.65"
99
errno= "0.2.4"
1010
rand = "0.7.2"
1111
cfg-if = "0.1.10"
12-
serde = { version = "1.0.101", features = ["derive"] }
13-
serde_json = "1.0.41"
12+
serde = { version = "1.0.103", features = ["derive"] }
13+
serde_json = "1.0.42"
1414
tiny-nix-ipc = { git = "https://github.com/myfreeweb/tiny-nix-ipc", features = ["ser_json", "zero_copy"] }
15-
procfs = "0.6.0"
15+
procfs = "0.7.4"
1616
nix = "0.15.0"
17-
downcast-rs = "1.1.0"
18-
snafu = { version = "0.5.0", features = ["rust_1_30"] }
19-
base64 = "0.10.1"
17+
downcast-rs = "1.1.1"
18+
snafu = "0.6.0"
19+
base64 = "0.11.0"
2020
backtrace = "0.3.40"

src/minion/src/linux/check.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub fn check() -> Option<String> {
1010
return Some(format!("Running with uid={} instead of 0", uid));
1111
}
1212

13-
let cap_info = match procfs::Process::myself()
13+
let cap_info = match procfs::process::Process::myself()
1414
.and_then(|p| p.status())
1515
.map(|st| st.capeff)
1616
{

0 commit comments

Comments
 (0)