[[bench]]
harness = false
name = "matfile_read"
path = "benches/matfile_read.rs"
[[bench]]
harness = false
name = "matfile_write"
path = "benches/matfile_write.rs"
[dependencies.binrw]
version = "0.13.3"
[dependencies.chrono]
version = "0.4.40"
[dependencies.flate2]
version = "1.0.30"
[dependencies.indexmap]
version = "2.8.0"
[dependencies.paste]
version = "1.0"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.once_cell]
version = "1.0"
[dev-dependencies.rand]
version = "0.9.2"
[dev-dependencies.rand_pcg]
version = "0.9.0"
[dev-dependencies.which]
version = "6"
[[example]]
name = "matfile_dbg_printer"
path = "examples/matfile_dbg_printer.rs"
[[example]]
name = "sandbox"
path = "examples/sandbox.rs"
[features]
default = []
[lib]
name = "matrw"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["parser-implementations"]
description = "MAT-file serializing and deserializing"
edition = "2024"
keywords = ["matlab", "serialization"]
license = "MIT OR Apache-2.0"
name = "matrw"
readme = "README.md"
repository = "https://github.com/cpfist/matrw"
version = "0.1.3"
[[test]]
name = "shared_functions"
path = "tests/shared_functions.rs"
[[test]]
name = "test_compression"
path = "tests/test_compression.rs"
[[test]]
name = "test_file_exceptions"
path = "tests/test_file_exceptions.rs"
[[test]]
name = "test_index"
path = "tests/test_index.rs"
[[test]]
name = "test_matlab_testcases"
path = "tests/test_matlab_testcases.rs"
[[test]]
name = "test_octave_testcases"
path = "tests/test_octave_testcases.rs"
[[test]]
name = "test_print_numeric_array"
path = "tests/test_print_numeric_array.rs"
[[test]]
name = "test_read_typed"
path = "tests/test_read_typed.rs"
[[test]]
name = "test_read_untyped"
path = "tests/test_read_untyped.rs"
[[test]]
name = "test_write_typed"
path = "tests/test_write_typed.rs"
[[test]]
name = "test_write_untyped"
path = "tests/test_write_untyped.rs"