openbci 0.0.1

Native Rust driver for OpenBCI EEG/EMG boards (Cyton, Cyton+Daisy, Ganglion, Galea) with standard 10-05/10-10/10-20 electrode placement
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 = "openbci"
version = "0.0.1"
authors = ["Nataliya Kosmyna"]
build = false
exclude = ["/target"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native Rust driver for OpenBCI EEG/EMG boards (Cyton, Cyton+Daisy, Ganglion, Galea) with standard 10-05/10-10/10-20 electrode placement"
homepage = "https://github.com/nataliyakosmyna/openbci"
documentation = "https://docs.rs/openbci"
readme = "README.md"
keywords = [
    "eeg",
    "bci",
    "openbci",
    "neuroscience",
    "biosignal",
]
categories = [
    "science",
    "hardware-support",
    "embedded",
]
license = "MIT"
repository = "https://github.com/nataliyakosmyna/openbci"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
ble = [
    "btleplug",
    "tokio",
    "futures",
]
default = ["ble"]

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

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

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

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

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

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

[dependencies.btleplug]
version = "0.11"
optional = true

[dependencies.futures]
version = "0.3"
optional = true

[dependencies.log]
version = "0.4"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.serialport]
version = "4"

[dependencies.thiserror]
version = "1"

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "sync",
    "time",
    "macros",
]
optional = true

[dependencies.ureq]
version = "2"
features = ["json"]

[dev-dependencies.env_logger]
version = "0.10"