From 086d58e82b623b040ca758d8e532f939bed577b8 Mon Sep 17 00:00:00 2001 From: Luiz Irber Date: Sat, 29 Apr 2023 12:59:12 -0700 Subject: [PATCH] maturin: move deprecated definition from Cargo.toml to pyproject.toml --- pyproject.toml | 1 + src/core/Cargo.toml | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a152f46dc7..7b25c82ba9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -146,6 +146,7 @@ exclude = [ ] features = ["maturin"] locked = true +module-name = "sourmash._lowlevel" [tool.isort] known_third_party = ["deprecation", "hypothesis", "mmh3", "numpy", "pytest", "screed", "sourmash_tst_utils"] diff --git a/src/core/Cargo.toml b/src/core/Cargo.toml index 677da39da5..f29cf6b836 100644 --- a/src/core/Cargo.toml +++ b/src/core/Cargo.toml @@ -95,6 +95,3 @@ wasm-bindgen-test = "0.3.34" ### These crates don't compile on wasm [target.'cfg(not(all(target_arch = "wasm32", target_os="unknown")))'.dependencies] - -[package.metadata.maturin] -name = "sourmash._lowlevel"