26 lines
949 B
TOML
26 lines
949 B
TOML
[package]
|
|
name = "heartbeat-cat"
|
|
version = "0.0.1"
|
|
description = "Catch your heartbeats"
|
|
authors = ["TimothyYin"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "1", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "1", features = [ "window-create", "path-all", "dialog-all", "window-show", "window-hide", "window-maximize", "window-unmaximize", "window-unminimize", "window-start-dragging", "window-minimize", "window-close", "shell-open"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
btleplug = { version = "0.11.8", features = ["serde"] }
|
|
tokio = { version = "1.38.0", features = ["full"] }
|
|
futures = "0.3.30"
|
|
uuid = "1.10.0"
|
|
lazy_static = "1.5.0"
|
|
|
|
[features]
|
|
# This feature is used for production builds or when a dev server is not specified, DO NOT REMOVE!!
|
|
custom-protocol = ["tauri/custom-protocol"]
|