brainvision 0.0.1

Rust library and TUI for Brain Products BrainVision RDA EEG streams over TCP/IP
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "brainvision"
version = "0.0.1"
authors = ["Eugene Hauptmann"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust library and TUI for Brain Products BrainVision RDA EEG streams over TCP/IP"
homepage = "https://github.com/eugenehp/brainvision-rs"
documentation = "https://docs.rs/brainvision"
readme = "README.md"
keywords = [
    "eeg",
    "brainvision",
    "brainproducts",
    "rda",
    "bci",
]
license-file = "LICENSE"
repository = "https://github.com/eugenehp/brainvision-rs"

[features]
async = ["dep:tokio"]
default = [
    "tui",
    "dsp",
    "verify",
    "sandbox",
]
dsp = []
sandbox = []
tui = [
    "dep:ratatui",
    "dep:crossterm",
]
verify = []

[lib]
name = "brainvision"
path = "src/lib.rs"

[[bin]]
name = "brainvision"
path = "src/main.rs"

[[bin]]
name = "brainvision-tui"
path = "src/bin/tui.rs"
required-features = ["tui"]

[[example]]
name = "read_eeg"
path = "examples/read_eeg.rs"

[[example]]
name = "scan"
path = "examples/scan.rs"

[[example]]
name = "stream"
path = "examples/stream.rs"

[[test]]
name = "integration_mock_server"
path = "tests/integration_mock_server.rs"

[[test]]
name = "types_tests"
path = "tests/types_tests.rs"

[dependencies.crossterm]
version = "0.29"
optional = true

[dependencies.env_logger]
version = "0.11"

[dependencies.libc]
version = "0.2"

[dependencies.log]
version = "0.4"

[dependencies.ratatui]
version = "0.30"
features = ["crossterm"]
optional = true

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "net",
    "io-util",
]
optional = true