[package]
edition = "2021"
rust-version = "1.75"
name = "idun"
version = "0.0.3"
build = false
include = [
"src/**/*.rs",
"tests/**/*.rs",
"Cargo.toml",
"README.md",
"CHANGELOG.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async Rust client, CLI, and TUI for streaming real-time EEG, IMU, and impedance data from IDUN Guardian earbuds over Bluetooth Low Energy"
homepage = "https://github.com/eugenehp/idun"
documentation = "https://docs.rs/idun"
readme = "README.md"
keywords = [
"eeg",
"imu",
"guardian",
"idun",
"neuroscience",
]
categories = [
"hardware-support",
"science",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/eugenehp/idun"
[features]
default = [
"tui",
"local-decode",
]
local-decode = []
simulate = []
tui = [
"dep:ratatui",
"dep:crossterm",
]
[lib]
name = "idun"
path = "src/lib.rs"
[[bin]]
name = "idun"
path = "src/main.rs"
[[bin]]
name = "idun-tui"
path = "src/bin/tui.rs"
required-features = ["tui"]
[[test]]
name = "client_config_tests"
path = "tests/client_config_tests.rs"
[[test]]
name = "cloud_tests"
path = "tests/cloud_tests.rs"
[[test]]
name = "parse_tests"
path = "tests/parse_tests.rs"
[[test]]
name = "prelude_tests"
path = "tests/prelude_tests.rs"
[[test]]
name = "protocol_tests"
path = "tests/protocol_tests.rs"
[[test]]
name = "types_tests"
path = "tests/types_tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.base64]
version = "0.22"
[dependencies.btleplug]
version = "0.11.8"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
optional = true
[dependencies.crossterm]
version = "0.29"
optional = true
[dependencies.env_logger]
version = "0.11"
[dependencies.futures]
version = "0.3"
[dependencies.log]
version = "0.4"
[dependencies.ratatui]
version = "0.30.0"
features = ["crossterm"]
optional = true
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"native-tls",
]
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-tungstenite]
version = "0.24"
features = ["native-tls"]
[dependencies.url]
version = "2"
optional = true
[dependencies.uuid]
version = "1"
features = ["v4"]