From f5a60d1a180a085acb43a1b05256687bc41de9fe Mon Sep 17 00:00:00 2001 From: konsti Date: Thu, 2 Jan 2025 15:40:38 +0100 Subject: [PATCH] Fix musl cdylib warning (#10268) The `cdylib` was used for the pyo3 bindings to uv-pep508, which don't exist anymore. It was now creating warnings on musl due to musl (statically linked) no supporting shared libraries. --- crates/uv-pep508/Cargo.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/uv-pep508/Cargo.toml b/crates/uv-pep508/Cargo.toml index 15e0e0095..912a226f7 100644 --- a/crates/uv-pep508/Cargo.toml +++ b/crates/uv-pep508/Cargo.toml @@ -13,8 +13,6 @@ repository = { workspace = true } authors = { workspace = true } [lib] -name = "uv_pep508" -crate-type = ["cdylib", "rlib"] doctest = false [lints]