From f1e2402316b8610b8752d1fe3e2e40148db8669d Mon Sep 17 00:00:00 2001 From: tiann Date: Mon, 17 Apr 2023 11:37:54 +0800 Subject: [PATCH] ksud: avoid using master commit dependency --- userspace/ksud/Cargo.lock | 2 +- userspace/ksud/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/userspace/ksud/Cargo.lock b/userspace/ksud/Cargo.lock index b5d1bae8..d0266a30 100644 --- a/userspace/ksud/Cargo.lock +++ b/userspace/ksud/Cargo.lock @@ -1374,7 +1374,7 @@ dependencies = [ [[package]] name = "sys-mount" version = "2.0.2" -source = "git+https://github.com/tiann/sys-mount#328928573feb9dbe6318d7ebcb8c8c9b681c47cd" +source = "git+https://github.com/tiann/sys-mount?branch=loopfix#c7c4048e4a4ffdf8b108a85956363a75f2c554f0" dependencies = [ "bitflags", "libc", diff --git a/userspace/ksud/Cargo.toml b/userspace/ksud/Cargo.toml index b655efe7..72ba643b 100644 --- a/userspace/ksud/Cargo.toml +++ b/userspace/ksud/Cargo.toml @@ -35,7 +35,7 @@ which = "4.2.2" getopts = "0.2.21" [target.'cfg(any(target_os = "android", target_os = "linux"))'.dependencies] -sys-mount = { git = "https://github.com/tiann/sys-mount" } +sys-mount = { git = "https://github.com/tiann/sys-mount", branch = "loopfix" } # some android specific dependencies which compiles under unix are also listed here for convenience of coding android-properties = { version = "0.2.2", features = ["bionic-deprecated"] } procfs = "0.15"