From b80b32e7a2ad9a1746d4ec1041bf2fd9c9ef2028 Mon Sep 17 00:00:00 2001 From: Steve Loveless Date: Tue, 20 Aug 2024 14:59:31 -0700 Subject: [PATCH] Downgrade ffi crate to use 0.22 This was still pointing to 0.23, which has been yanked. --- crates/ffi/Cargo.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/crates/ffi/Cargo.toml b/crates/ffi/Cargo.toml index 26bc8f7..10d0490 100644 --- a/crates/ffi/Cargo.toml +++ b/crates/ffi/Cargo.toml @@ -10,10 +10,11 @@ publish = ["agrian-registry"] [dependencies] ffi_common.workspace = true -wise_units = { version = "0.22", registry = "agrian-registry" } +# wise_units = { version = "0.22", registry = "agrian-registry" } +wise_units = { "../api" } [build-dependencies] -cbindgen = "0.26.0" +cbindgen = "0.27.0" [dev-dependencies] approx.workspace = true