mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-01 10:01:07 +02:00
18 lines
416 B
TOML
18 lines
416 B
TOML
[package]
|
|
name = "splashscreen"
|
|
version = "0.1.0"
|
|
description = "An example Tauri Application with a splashscreen"
|
|
edition = "2018"
|
|
license = "Apache-2.0 OR MIT"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { path = "../../../core/tauri-build" }
|
|
|
|
[dependencies]
|
|
tauri = { path = "../../../core/tauri", features = ["api-all"] }
|
|
|
|
[features]
|
|
default = [ "custom-protocol" ]
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|
|
ui = []
|