From 8464094c9b8fc7c306171b91388c9b3370dba6a0 Mon Sep 17 00:00:00 2001 From: Tessa Pierce Ward Date: Mon, 9 Oct 2023 16:14:35 -0700 Subject: [PATCH] Deps: chrono version pin (#2798) To install sourmash from mastiff branch in pyo3-branchwater, I need to bump chrono back to 0.4.28 (from 0.4.31) to avoid incompatibilities with `piz`. --- pyproject.toml | 2 +- src/core/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ecdfd87beb..16bf15d207 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [build-system] requires = [ - "maturin>=1,<2", + "maturin>=1,<1.3.0", "cffi", ] build-backend = 'maturin' diff --git a/src/core/Cargo.toml b/src/core/Cargo.toml index 05896dffb3..488d629b7c 100644 --- a/src/core/Cargo.toml +++ b/src/core/Cargo.toml @@ -97,7 +97,7 @@ version = "0.3.64" features = ["console", "File"] [target.'cfg(all(target_arch = "wasm32"))'.dependencies.chrono] -version = "0.4.31" +version = "0.4.28" features = ["wasmbind"] [target.'cfg(all(target_arch = "wasm32", target_os="unknown"))'.dev-dependencies]