2023-03-18 13:46:46 +08:00
|
|
|
[package]
|
|
|
|
name = "test-demo"
|
|
|
|
version = "0.0.0"
|
|
|
|
description = "A Tauri App"
|
|
|
|
authors = ["you"]
|
|
|
|
license = ""
|
|
|
|
repository = ""
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
tauri-build = { version = "1.2", features = [] }
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
tauri = { version = "1.2", features = ["shell-open"] }
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
|
|
|
core-graphics = "0.22.3"
|
|
|
|
display-info = "0.4.1"
|
|
|
|
anyhow = "1.0.69"
|
2023-03-18 23:14:59 +08:00
|
|
|
tokio = {version = "1.26.0", features = ["full"] }
|
|
|
|
paris = { version = "1.5", features = ["timestamps", "macros"] }
|
|
|
|
log = "0.4.17"
|
|
|
|
env_logger = "0.10.0"
|
2023-03-20 09:27:47 +08:00
|
|
|
percent-encoding = "2.2.0"
|
|
|
|
url-build-parse = "9.0.0"
|
2023-03-26 10:48:50 +08:00
|
|
|
color_space = "0.5.3"
|
|
|
|
hex = "0.4.3"
|
|
|
|
toml = "0.7.3"
|
2023-04-01 10:42:46 +08:00
|
|
|
paho-mqtt = "0.12.1"
|
|
|
|
time = {version="0.3.20", features= ["formatting"] }
|
2023-04-01 15:39:21 +08:00
|
|
|
itertools = "0.10.5"
|
2023-04-05 12:25:14 +08:00
|
|
|
core-foundation = "0.9.3"
|
2023-04-29 12:40:34 +08:00
|
|
|
tokio-stream = "0.1.14"
|
|
|
|
mdns-sd = "0.7.2"
|
2023-04-29 18:07:21 +08:00
|
|
|
futures = "0.3.28"
|
2023-05-07 01:18:48 +08:00
|
|
|
ddc-hi = "0.4.1"
|
2023-03-18 13:46:46 +08:00
|
|
|
|
|
|
|
[features]
|
|
|
|
# this feature is used for production builds or when `devPath` points to the filesystem
|
|
|
|
# DO NOT REMOVE!!
|
|
|
|
custom-protocol = ["tauri/custom-protocol"]
|