From 41a2ad09cf53f4195033d48ef356e7cbf39552a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Thu, 10 Oct 2024 19:44:05 +0200 Subject: [PATCH] chore: Move the ffi macros into the bindings folder --- Cargo.toml | 2 +- {testing => bindings}/matrix-sdk-ffi-macros/Cargo.toml | 0 {testing => bindings}/matrix-sdk-ffi-macros/README.md | 0 {testing => bindings}/matrix-sdk-ffi-macros/src/lib.rs | 0 4 files changed, 1 insertion(+), 1 deletion(-) rename {testing => bindings}/matrix-sdk-ffi-macros/Cargo.toml (100%) rename {testing => bindings}/matrix-sdk-ffi-macros/README.md (100%) rename {testing => bindings}/matrix-sdk-ffi-macros/src/lib.rs (100%) diff --git a/Cargo.toml b/Cargo.toml index 448a45031..da337457d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -85,7 +85,7 @@ matrix-sdk = { path = "crates/matrix-sdk", version = "0.7.0", default-features = matrix-sdk-base = { path = "crates/matrix-sdk-base", version = "0.7.0" } matrix-sdk-common = { path = "crates/matrix-sdk-common", version = "0.7.0" } matrix-sdk-crypto = { path = "crates/matrix-sdk-crypto", version = "0.7.0" } -matrix-sdk-ffi-macros = { path = "testing/matrix-sdk-ffi-macros", version = "0.7.0" } +matrix-sdk-ffi-macros = { path = "bindings/matrix-sdk-ffi-macros", version = "0.7.0" } matrix-sdk-indexeddb = { path = "crates/matrix-sdk-indexeddb", version = "0.7.0", default-features = false } matrix-sdk-qrcode = { path = "crates/matrix-sdk-qrcode", version = "0.7.0" } matrix-sdk-sqlite = { path = "crates/matrix-sdk-sqlite", version = "0.7.0", default-features = false } diff --git a/testing/matrix-sdk-ffi-macros/Cargo.toml b/bindings/matrix-sdk-ffi-macros/Cargo.toml similarity index 100% rename from testing/matrix-sdk-ffi-macros/Cargo.toml rename to bindings/matrix-sdk-ffi-macros/Cargo.toml diff --git a/testing/matrix-sdk-ffi-macros/README.md b/bindings/matrix-sdk-ffi-macros/README.md similarity index 100% rename from testing/matrix-sdk-ffi-macros/README.md rename to bindings/matrix-sdk-ffi-macros/README.md diff --git a/testing/matrix-sdk-ffi-macros/src/lib.rs b/bindings/matrix-sdk-ffi-macros/src/lib.rs similarity index 100% rename from testing/matrix-sdk-ffi-macros/src/lib.rs rename to bindings/matrix-sdk-ffi-macros/src/lib.rs