From 940b5ffa1a98b7a130cc12f15c67ebe4c2af499a Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Thu, 27 Jun 2024 21:20:07 +0200 Subject: [PATCH] fix(cargo): remove path for the libpt version used in libpt-py otherwise, libpt-py always uses the latest libpt version by path that is in the workspace, which is bad if the libpt version is ahead of the libpt-py version. --- members/libpt-py/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/members/libpt-py/Cargo.toml b/members/libpt-py/Cargo.toml index 0422edc..8be932e 100644 --- a/members/libpt-py/Cargo.toml +++ b/members/libpt-py/Cargo.toml @@ -19,7 +19,7 @@ name = "libpt" crate-type = ["cdylib", "rlib"] [dependencies] -libpt = { version = "0.5.0", path = "../.." } +libpt = { version = "0.5.0"} pyo3 = { version = "0.19.0", features = ["full"] } anyhow.workspace = true