[package]
edition = "2021"
rust-version = "1.74"
name = "open-eeg-codec-standard"
version = "0.9.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "OpenECS — a universal, vendor-neutral Open EEG Codec Standard: grade any EEG codec (any language, via a file-based contract) against a hash-pinned corpus into one comparable verdict."
homepage = "https://github.com/Quitetall/OpenECS"
documentation = "https://docs.rs/open-eeg-codec-standard"
readme = "README.md"
keywords = [
"eeg",
"compression",
"benchmark",
"codec",
"biomedical",
]
categories = [
"science",
"compression",
"command-line-utilities",
]
license = "Apache-2.0"
repository = "https://github.com/Quitetall/OpenECS"
[features]
default = []
zstd = ["dep:zstd"]
[lib]
name = "open_eeg_codec_standard"
path = "src/lib.rs"
[[bin]]
name = "openecs"
path = "src/bin/openecs.rs"
[[example]]
name = "gen_smoke_corpus"
path = "examples/gen_smoke_corpus.rs"
[[test]]
name = "bench_cli"
path = "tests/bench_cli.rs"
[[test]]
name = "corpus_integrity"
path = "tests/corpus_integrity.rs"
[[test]]
name = "ecs_gate"
path = "tests/ecs_gate.rs"
[[test]]
name = "external_adapter"
path = "tests/external_adapter.rs"
[[test]]
name = "metrics_parity"
path = "tests/metrics_parity.rs"
[[test]]
name = "spec_thresholds"
path = "tests/spec_thresholds.rs"
[[test]]
name = "submission_golden"
path = "tests/submission_golden.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.console]
version = "0.15"
[dependencies.flate2]
version = "1"
[dependencies.indicatif]
version = "0.17"
[dependencies.plotters]
version = "0.3"
features = [
"svg_backend",
"line_series",
"point_series",
"histogram",
"area_series",
]
default-features = false
[dependencies.rand]
version = "0.8"
[dependencies.rayon]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.statrs]
version = "0.17"
[dependencies.textplots]
version = "0.8"
[dependencies.toml]
version = "0.8"
[dependencies.zstd]
version = "0.13"
optional = true