mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-03 10:11:15 +02:00
24 lines
661 B
TOML
24 lines
661 B
TOML
[package]
|
|
name = "bench_helloworld"
|
|
version = "0.1.0"
|
|
description = "A very simple Tauri Application"
|
|
edition = "2024"
|
|
rust-version = "1.88"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { path = "../../../../crates/tauri-build", features = [
|
|
"codegen",
|
|
] }
|
|
|
|
[dependencies]
|
|
serde_json = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
tauri = { path = "../../../../crates/tauri", features = [] }
|
|
tauri-runtime-wry = { path = "../../../../crates/tauri-runtime-wry", optional = true }
|
|
tauri-runtime-cef = { path = "../../../../crates/tauri-runtime-cef", optional = true }
|
|
|
|
[features]
|
|
default = ["wry"]
|
|
wry = ["dep:tauri-runtime-wry"]
|
|
cef = ["dep:tauri-runtime-cef"]
|