I keep getting this error:
error[E0463]: can't find crate for `tauri_macros`
--> /home/hunter/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tauri-2.1.1/src/menu/mod.rs:71:9
|
71 | #[tauri_macros::default_runtime(crate::Wry, wry)]
| ^^^^^^^^^^^^ can't find crate
error[E0463]: can't find crate for `tauri_macros`
--> /home/hunter/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tauri-2.1.1/src/lib.rs:377:3
|
377 | #[tauri_macros::default_runtime(Wry, wry)]
| ^^^^^^^^^^^^ can't find crate
I have this in my Cargo.toml:
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
tauri = { version = "2.1.1", features = ["wry"] }
tauri-macros = { version = "2" }

