42 lines
1.2 KiB
TOML
42 lines
1.2 KiB
TOML
[package]
|
|
name = "estim"
|
|
version = "0.1.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 = "estim_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-opener = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
btleplug = { version = "0.11.6", features = ["serde"] }
|
|
tokio = { version = "1.40.0", features = ["full"] }
|
|
sled = "0.34.7"
|
|
anyhow = "1.0.89"
|
|
thiserror = "2.0.11"
|
|
serde_repr = "0.1.19"
|
|
bincode = "1.3.3"
|
|
uuid = { version = "1.10.0", features = ["serde"] }
|
|
tauri-plugin-dialog = "2"
|
|
futures = "0.3.31"
|
|
rand = "0.8.5"
|
|
tauri-plugin-devtools = "2.0.0"
|
|
tauri-plugin-os = "2"
|
|
tauri-plugin-notification = "2"
|
|
|
|
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
|
|
tauri-plugin-single-instance = "2"
|