diff --git a/Cargo.lock b/Cargo.lock index c7afd88..47e52c9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3319,7 +3319,7 @@ dependencies = [ [[package]] name = "tauri-interop" -version = "2.1.1" +version = "2.1.3" dependencies = [ "js-sys", "leptos", @@ -3327,7 +3327,7 @@ dependencies = [ "serde", "serde-wasm-bindgen", "tauri", - "tauri-interop-macro", + "tauri-interop-macro 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "thiserror", "wasm-bindgen", "wasm-bindgen-futures", @@ -3335,7 +3335,7 @@ dependencies = [ [[package]] name = "tauri-interop-macro" -version = "2.1.1" +version = "2.1.3" dependencies = [ "convert_case 0.6.0", "lazy_static", @@ -3349,6 +3349,20 @@ dependencies = [ "tauri-interop", ] +[[package]] +name = "tauri-interop-macro" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6aa63b70e8ab92c2a60b8bc6fbb112c3036ec0fab2ac598f5e5bee58c6533788" +dependencies = [ + "convert_case 0.6.0", + "lazy_static", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.52", +] + [[package]] name = "tauri-macros" version = "1.4.3" diff --git a/Cargo.toml b/Cargo.toml index 46aa422..ace80ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [workspace] members = ["tauri-interop-macro"] package.edition = "2021" -package.version = "2.1.1" +package.version = "2.1.3" package.keywords = ["wasm", "tauri", "command", "event", "leptos"] package.authors = ["photovoltex"] package.repository = "https://github.com/photovoltex/tauri-interop.git" @@ -24,8 +24,8 @@ description = "Easily connect your rust frontend and backend without writing dup readme = "README.md" [dependencies] -tauri-interop-macro = { path = "./tauri-interop-macro" } -#tauri-interop-macro = "2.1.1" +#tauri-interop-macro = { path = "./tauri-interop-macro" } +tauri-interop-macro = "2.1.3" js-sys = "0.3" serde = { version = "1.0", features = ["derive"] } @@ -43,8 +43,8 @@ leptos = { version = "0.6", optional = true } tauri = { version = "1.6", default-features = false, features = ["wry"] } [target.'cfg(target_family = "wasm")'.dependencies] -tauri-interop-macro = { path = "./tauri-interop-macro", features = ["_wasm"] } -#tauri-interop-macro = { version = "2.1.1", features = [ "_wasm" ] } +#tauri-interop-macro = { path = "./tauri-interop-macro", features = ["_wasm"] } +tauri-interop-macro = { version = "2.1.3", features = [ "_wasm" ] } [target.'cfg(not(target_family = "wasm"))'.dev-dependencies] tauri = "1.6"