2022-01-07 18:37:31 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri_app"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "A very simple Dll Library that runs tauri and launches a webview window"
|
|
|
|
edition = "2021"
|
2023-03-31 18:36:59 +03:00
|
|
|
rust-version = "1.60"
|
2022-01-07 18:37:31 +03:00
|
|
|
|
|
|
|
[workspace]
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
tauri-build = { path = "../../../core/tauri-build", features = [ "codegen" ] }
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
serde_json = "1.0"
|
|
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
|
|
|
tauri = { path = "../../../core/tauri", features = [] }
|
|
|
|
|
|
|
|
[features]
|
|
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|