openqvd 1.2.0

Clean-room reader/writer for Qlik QVD (.qvd) files.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.75"
name = "openqvd"
version = "1.2.0"
authors = ["Nathan Riley <git@nathanriley.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Clean-room reader/writer for Qlik QVD (.qvd) files."
homepage = "https://sigilweaver.app/openqvd/"
readme = "README.md"
keywords = [
    "qvd",
    "qlik",
    "qlikview",
    "qliksense",
    "data",
]
categories = [
    "parser-implementations",
    "encoding",
]
license = "Apache-2.0"
repository = "https://github.com/Sigilweaver/OpenQVD"

[features]
arrow = [
    "dep:arrow-array",
    "dep:arrow-schema",
    "dep:arrow-cast",
]
default = []

[lib]
name = "openqvd"
path = "src/lib.rs"

[[bin]]
name = "openqvd"
path = "src/bin/openqvd.rs"

[[example]]
name = "dump"
path = "examples/dump.rs"

[[example]]
name = "round_trip"
path = "examples/round_trip.rs"

[[example]]
name = "validate_all"
path = "examples/validate_all.rs"

[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"

[[test]]
name = "minimal"
path = "tests/minimal.rs"

[[test]]
name = "writer"
path = "tests/writer.rs"

[dependencies.arrow-array]
version = "58"
optional = true

[dependencies.arrow-cast]
version = "58"
optional = true

[dependencies.arrow-schema]
version = "58"
optional = true

[dependencies.quick-xml]
version = "0.36"
features = ["serialize"]

[dependencies.thiserror]
version = "1"

[dev-dependencies]

[lints.rust]
unsafe_code = "forbid"