From 818f3e6a2bb6156334f3078918719444122fe2ed Mon Sep 17 00:00:00 2001 From: AzureMarker Date: Mon, 27 Dec 2021 23:44:56 -0500 Subject: [PATCH] Allow crate to be used as a dependency (add lib crate type) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d24fc3e..23b9282 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" [lib] name = "linker_fix_3ds" path = "src/lib.rs" -crate-type = ["staticlib"] +crate-type = ["staticlib", "lib"] [dependencies.libc] git = "https://github.com/Meziu/libc.git"