vtkio 0.3.1

Parser and writer for the legacy VTK file format
Documentation
[package]
name = "vtkio"
version = "0.3.1"
authors = ["Egor Larionov <egor.larionov@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "Parser and writer for the legacy VTK file format"
readme = "README.md"
edition = "2018"

homepage = "https://github.com/elrnv/vtkio"
repository = "https://github.com/elrnv/vtkio"
documentation = "https://docs.rs/vtkio"

keywords = ["vtk", "parser", "writer", "io", "mesh"]

[badges]
travis-ci = { repository = "elrnv/vtkio", branch = "master" }

[dependencies]
# need verbose errors because of feature leak in dependencies:
# https://github.com/rust-lang/cargo/issues/1796
# remove this feature after the above issue is resolved
nom = { version = "3", features = ["verbose-errors"] }
num-traits = "0.2"
num-derive = "0.3"
byteorder = "1.3"
buffer = { package = "data-buffer", version = "0.7", features = ["numeric"] }

[dev-dependencies]
rand = "0.7"
lazy_static = "1"