From f1d19bffbeccd98a616f23c89903a2386a1d1dba Mon Sep 17 00:00:00 2001 From: Hendrik Schroeter Date: Mon, 6 May 2024 12:48:51 +0200 Subject: [PATCH] pydf: Bump MSRV to 1.70 --- clippy.toml | 2 +- pyDF-data/Cargo.toml | 2 +- pyDF/Cargo.toml | 34 +++++++++++++++++----------------- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/clippy.toml b/clippy.toml index 13f202e9e..5d37e5d80 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1 +1 @@ -msrv = "1.60" +msrv = "1.70" diff --git a/pyDF-data/Cargo.toml b/pyDF-data/Cargo.toml index 917f44549..016cbb800 100644 --- a/pyDF-data/Cargo.toml +++ b/pyDF-data/Cargo.toml @@ -3,7 +3,7 @@ name = "DeepFilterDataLoader" version = "0.5.7-pre" authors = ["Hendrik Schröter"] edition = "2021" -rust-version = "1.60" +rust-version = "1.70" [lib] name = "libdfdata" diff --git a/pyDF/Cargo.toml b/pyDF/Cargo.toml index b52ea7ca7..f865a8072 100644 --- a/pyDF/Cargo.toml +++ b/pyDF/Cargo.toml @@ -1,17 +1,17 @@ -[package] -name = "DeepFilterLib" -version = "0.5.7-pre" -authors = ["Hendrik Schröter"] -edition = "2021" -rust-version = "1.60" - -[lib] -name = "libdf" -crate-type = ["cdylib"] -path = "src/lib.rs" - -[dependencies] -deep_filter = { features = ["transforms", "logging"], path = "../libDF" } -pyo3 = { version = "0.20", features = ["extension-module"]} -numpy = "0.20" -ndarray = "^0.15" +[package] +name = "DeepFilterLib" +version = "0.5.7-pre" +authors = ["Hendrik Schröter"] +edition = "2021" +rust-version = "1.70" + +[lib] +name = "libdf" +crate-type = ["cdylib"] +path = "src/lib.rs" + +[dependencies] +deep_filter = { features = ["transforms", "logging"], path = "../libDF" } +pyo3 = { version = "0.20", features = ["extension-module"]} +numpy = "0.20" +ndarray = "^0.15"