-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (30 loc) · 947 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "tauri-plugin-blec"
license = "MIT OR Apache-2.0"
version = "0.1.1"
authors = ["Manuel Philipp"]
description = "BLE-Client plugin for Tauri"
edition = "2021"
rust-version = "1.77.2"
exclude = ["/examples", "/webview-dist", "/webview-src", "/node_modules"]
links = "tauri-plugin-blec"
repository = "https://github.com/MnlPhlp/tauri-plugin-blec"
readme = "README.md"
homepage = "https://github.com/MnlPhlp/tauri-plugin-blec"
[dependencies]
tauri = { version = "2.0.6", features = ["wry"] }
serde = "1.0"
thiserror = "2.0"
btleplug = { version = "0.11.6", features = ["serde"] }
tokio = "1.40.0"
uuid = "1.11.0"
once_cell = "1.20.2"
tracing = "0.1.40"
futures = { version = "0.3.31", default-features = false }
# [target.'cfg(target_os = "android")'.dependencies]
async-trait = "0.1.83"
serde_json = "1"
tokio-stream = "0.1.16"
[build-dependencies]
tauri-plugin = { version = "2.0.1", features = ["build"] }
tauri-build = "2.0.1"