22 lines
448 B
TOML
22 lines
448 B
TOML
[package]
|
|
name = "src_tauri"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "app_lib"
|
|
path = "src/lib.rs"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.0.0-rc.2", features = [] }
|
|
|
|
[dependencies]
|
|
log = "0.4.22"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tauri = { version = "2.0.0-rc.2", features = ["devtools"] }
|
|
tauri-plugin-http = "2.0.0-rc.0"
|
|
|
|
[features]
|
|
#default = ["custom-protocol"]
|
|
custom-protocol = ["tauri/custom-protocol"]
|