[package]
edition = "2021"
name = "hermes-ble"
version = "0.0.1"
authors = [
"Eugene Hauptmann",
"Frédéric Simard",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust client for Hermes V1 EEG headsets over BLE using btleplug"
homepage = "https://github.com/eugenehp/hermes-ble-rs"
documentation = "https://docs.rs/hermes-ble"
readme = "README.md"
keywords = [
"exg",
"eeg",
"imu",
"hermes",
"ads1299",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/eugenehp/hermes-ble-rs"
[features]
default = ["tui"]
tui = [
"dep:ratatui",
"dep:crossterm",
]
[lib]
name = "hermes_ble"
path = "src/lib.rs"
[[bin]]
name = "hermes-ble"
path = "src/main.rs"
[[bin]]
name = "tui"
path = "src/bin/tui.rs"
required-features = ["tui"]
[[test]]
name = "parse_tests"
path = "tests/parse_tests.rs"
[[test]]
name = "protocol_tests"
path = "tests/protocol_tests.rs"
[[test]]
name = "tui_app_tests"
path = "tests/tui_app_tests.rs"
[[test]]
name = "types_tests"
path = "tests/types_tests.rs"
[[bench]]
name = "parse_bench"
path = "benches/parse_bench.rs"
harness = false
[[bench]]
name = "protocol_bench"
path = "benches/protocol_bench.rs"
harness = false
[dependencies.anyhow]
version = "1.0.102"
[dependencies.btleplug]
version = "0.12.0"
[dependencies.crossterm]
version = "0.29.0"
optional = true
[dependencies.env_logger]
version = "0.11.9"
[dependencies.futures]
version = "0.3.32"
[dependencies.log]
version = "0.4"
[dependencies.ratatui]
version = "0.30.0"
features = ["crossterm"]
optional = true
[dependencies.tokio]
version = "1.50"
features = ["full"]
[dependencies.uuid]
version = "1.22"
features = ["v4"]
[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]
[dev-dependencies.tokio]
version = "1.50"
features = [
"full",
"test-util",
]