55 lines
1.8 KiB
TOML
55 lines
1.8 KiB
TOML
[package]
|
|
name = "JE-Skin"
|
|
version = "0.4.0"
|
|
description = "A Tauri App"
|
|
authors = ["you"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
# The `_lib` suffix may seem redundant but it is necessary
|
|
# to make the lib name unique and wouldn't conflict with the bin name.
|
|
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
|
|
name = "tauri_demo_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[features]
|
|
default = []
|
|
devkit = ["dep:tonic", "dep:prost", "dep:prost-types", "dep:async-stream", "dep:dirs"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
tonic-build = { version = "0.12" }
|
|
protoc-bin-vendored = "3"
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["tray-icon"] }
|
|
tauri-plugin-opener = "2"
|
|
tauri-plugin-process = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
anyhow = "1.0.102"
|
|
tonic = { version = "0.12", optional = true }
|
|
prost = { version = "0.13", optional = true }
|
|
prost-types = { version = "0.13", optional = true }
|
|
async-stream = { version = "0.3", optional = true }
|
|
dirs = { version = "6", optional = true }
|
|
tokio-serial = { version = "5.4.5" }
|
|
tokio = { version = "1.50.0", features = ["full"] }
|
|
tokio-util = "0.7.18"
|
|
serde_json = "1"
|
|
fern = { version = "0.7.1", features = ["colored", "date-based"] }
|
|
log = "0.4.29"
|
|
humantime = "2.3.0"
|
|
csv = "1.4.0"
|
|
axum = { version = "0.8", features = ["ws"] }
|
|
tower-http = { version = "0.6", features = ["cors"] }
|
|
futures-util = "0.3"
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
rand = "0.8"
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
|
eskin-finger-sdk = { path = "../eskin-finger-sdk" }
|
|
|
|
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
|
|
tauri-plugin-updater = "2"
|