[package]
edition = "2021"
name = "edfplus"
version = "0.1.0"
authors = ["Horned_Axe <horned_axe@proton.me>"]
build = false
include = [
"src/**/*",
"examples/*",
"tests/**/*",
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE",
]
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure Rust implementation of EDF+ file format reader/writer"
homepage = "https://github.com/2986002971/edfplus"
documentation = "https://2986002971.github.io/edfplus/edfplus/"
readme = "README.md"
keywords = [
"edf",
"signal-processing",
"eeg",
"medical",
"biosignal",
]
categories = [
"science",
"parser-implementations",
]
license = "BSD-3-Clause"
repository = "https://github.com/2986002971/edfplus"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
[lib]
name = "edfplus"
path = "src/lib.rs"
[[example]]
name = "annotation_best_practices"
path = "examples/annotation_best_practices.rs"
[[example]]
name = "basic_example"
path = "examples/basic_example.rs"
[[example]]
name = "detailed_read_example"
path = "examples/detailed_read_example.rs"
[[example]]
name = "generate_test_file"
path = "examples/generate_test_file.rs"
[[example]]
name = "multi_channel_eeg"
path = "examples/multi_channel_eeg.rs"
[[example]]
name = "performance_test"
path = "examples/performance_test.rs"
[[example]]
name = "streaming_write_example"
path = "examples/streaming_write_example.rs"
[[example]]
name = "test_annotation_reading"
path = "examples/test_annotation_reading.rs"
[[example]]
name = "verify_multi_channel"
path = "examples/verify_multi_channel.rs"
[[test]]
name = "annotation_tests"
path = "tests/annotation_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "streaming_tests"
path = "tests/streaming_tests.rs"
[dependencies.chrono]
version = "0.4"
features = ["std"]
default-features = false
[dependencies.thiserror]
version = "1.0"