From 7927b5ffd6e3ea52f03ddad2b974979165fd68f8 Mon Sep 17 00:00:00 2001 From: Yangyang Li Date: Thu, 8 Aug 2024 00:26:33 -0500 Subject: [PATCH] refactor: Remove unnecessary features from pyo3 dependencies --- crates/deepbiop-fq/Cargo.toml | 2 +- py-deepbiop/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/deepbiop-fq/Cargo.toml b/crates/deepbiop-fq/Cargo.toml index 7acb51d..06e3bf1 100644 --- a/crates/deepbiop-fq/Cargo.toml +++ b/crates/deepbiop-fq/Cargo.toml @@ -22,7 +22,7 @@ numpy = { workspace = true } ndarray = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } -pyo3 = { workspace = true, features = ["anyhow"] } +pyo3 = { workspace = true } derive_builder = { workspace = true } itertools = { workspace = true } lexical = { workspace = true } diff --git a/py-deepbiop/Cargo.toml b/py-deepbiop/Cargo.toml index 6ac4b34..374e838 100644 --- a/py-deepbiop/Cargo.toml +++ b/py-deepbiop/Cargo.toml @@ -12,7 +12,7 @@ deepbiop-fq = { workspace = true, features = ['python'] } deepbiop-bam = { workspace = true, features = ['python'] } deepbiop-utils = { workspace = true, features = ['python'] } -pyo3 = { workspace = true, features = ["multiple-pymethods"] } +pyo3 = { workspace = true } log = { workspace = true } ahash = { workspace = true } rayon = { workspace = true }