mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
714 B
24 lines
714 B
[package]
|
|
name = "paopao"
|
|
version = "0.2.0"
|
|
description = "Paopao App"
|
|
authors = ["Rocboss"]
|
|
license = "MIT License"
|
|
repository = "https://github.com/rocboss/paopao-ce"
|
|
edition = "2021"
|
|
rust-version = "1.60"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "1.4", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "1.4", features = ["api-all", "macos-private-api"] }
|
|
|
|
[features]
|
|
# by default Tauri runs in production mode
|
|
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
|
|
default = [ "custom-protocol" ]
|
|
# this feature is used used for production builds where `devPath` points to the filesystem
|
|
# DO NOT remove this
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|