Skip to content

Commit 6525aaa

Browse files
committed
Update major versions
1 parent fe17718 commit 6525aaa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/minion/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ cfg-if = "0.1.10"
1212
serde = { version = "1.0.103", features = ["derive"] }
1313
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"
1717
downcast-rs = "1.1.1"
18-
snafu = { version = "0.5.0", features = ["rust_1_30"] }
19-
base64 = "0.10.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)