mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 18:26:39 +02:00
50 lines
1.4 KiB
Diff
50 lines
1.4 KiB
Diff
diff --git a/Cargo.lock b/Cargo.lock
|
|
index 6c1307c..73e4999 100644
|
|
--- a/Cargo.lock
|
|
+++ b/Cargo.lock
|
|
@@ -274,7 +274,7 @@ dependencies = [
|
|
"serde",
|
|
"serde_json",
|
|
"syscalls",
|
|
- "users",
|
|
+ "uzers",
|
|
]
|
|
|
|
[[package]]
|
|
@@ -557,10 +557,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
|
|
|
|
[[package]]
|
|
-name = "users"
|
|
-version = "0.11.0"
|
|
+name = "uzers"
|
|
+version = "0.12.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "24cc0f6d6f267b73e5a2cadf007ba8f9bc39c6a6f9666f8cf25ea809a153b032"
|
|
+checksum = "4df81ff504e7d82ad53e95ed1ad5b72103c11253f39238bcc0235b90768a97dd"
|
|
dependencies = [
|
|
"libc",
|
|
"log",
|
|
diff --git a/Cargo.toml b/Cargo.toml
|
|
index 9a0351b..6336bf9 100644
|
|
--- a/Cargo.toml
|
|
+++ b/Cargo.toml
|
|
@@ -48,4 +48,4 @@ regex = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
syscalls = { version = "0.6.14", features = ["full"] }
|
|
-users = "0.11"
|
|
+uzers = "0.12"
|
|
diff --git a/src/lib.rs b/src/lib.rs
|
|
index c734121..439acbb 100644
|
|
--- a/src/lib.rs
|
|
+++ b/src/lib.rs
|
|
@@ -88,7 +88,7 @@ use std::process::{Command, Stdio};
|
|
use std::time::{Duration, SystemTime};
|
|
use style::StyleConfig;
|
|
use syscalls::{Sysno, SysnoMap, SysnoSet};
|
|
-use users::get_user_by_name;
|
|
+use uzers::get_user_by_name;
|
|
|
|
use crate::args::{Args, Filter};
|
|
use crate::syscall_info::{RetCode, SyscallInfo};
|