mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-01 10:01:07 +02:00
20 lines
459 B
TOML
20 lines
459 B
TOML
[package]
|
|
name = "tauri-plugin-sample"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
links = "tauri-plugin-sample"
|
|
|
|
[dependencies]
|
|
tauri = { path = "../../../../crates/tauri", default-features = false }
|
|
log = "0.4"
|
|
serde = "1"
|
|
thiserror = "2"
|
|
|
|
[target.'cfg(target_os = "ios")'.dependencies]
|
|
tauri-runtime-wry = { path = "../../../../crates/tauri-runtime-wry" }
|
|
|
|
[build-dependencies]
|
|
tauri-plugin = { path = "../../../../crates/tauri-plugin", features = [
|
|
"build",
|
|
] }
|