From 61c034ebf3bce49f75312343c3e4cb7681ec4d78 Mon Sep 17 00:00:00 2001 From: Floris Bruynooghe Date: Mon, 27 Mar 2023 18:22:01 +0200 Subject: [PATCH] ref(deps): Only request basic features of dlopen2 The code doesn't use any of the advanced features, so remove some dependencies. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c01ce45..a433bed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ libc = "0.2" [target.'cfg(target_os = "android")'.dependencies] # DL Open -dlopen2 = "0.4" +dlopen2 = { version = "0.4", default-features = false } once_cell = "1" # netlink netlink-packet-core = "0.5"