[package]
edition = "2021"
name = "evt3"
version = "0.4.0"
authors = ["Mika Uthmann <muthmann@physik.uni-bielefeld.de>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast EVT3 (EVT 3.0) decoder library for Prophesee and Metavision event cameras. Decodes .raw and HDF5 event data for event-based vision and neuromorphic research."
homepage = "https://github.com/muthmann/evt3"
documentation = "https://docs.rs/evt3"
readme = "README.md"
keywords = [
"event-camera",
"evt3",
"prophesee",
"decoder",
"neuromorphic",
]
categories = [
"parser-implementations",
"encoding",
"science",
]
license = "MIT"
repository = "https://github.com/muthmann/evt3"
[features]
default = []
hdf5 = ["dep:hdf5"]
[lib]
name = "evt3"
path = "src/lib.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[bench]]
name = "decode_benchmark"
path = "benches/decode_benchmark.rs"
harness = false
[dependencies.byteorder]
version = "1.5"
[dependencies.hdf5]
version = "0.12.3"
optional = true
package = "hdf5-metno"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.tempfile]
version = "3.10"