vin-decode 0.1.5

Auto-updating VIN decoder backed by NHTSA vPIC, refreshed monthly via CI
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 = "2024"
rust-version = "1.85"
name = "vin-decode"
version = "0.1.5"
build = "build.rs"
include = [
    "src/**/*.rs",
    "build.rs",
    "data/**/*.fst",
    "data/**/*.bin.zst",
    "data/VERSION",
    "LICENSE",
    "README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Auto-updating VIN decoder backed by NHTSA vPIC, refreshed monthly via CI"
documentation = "https://docs.rs/vin-decode"
readme = "README.md"
keywords = [
    "vin",
    "nhtsa",
    "vpic",
    "vehicle",
    "decoder",
]
categories = [
    "parsing",
    "encoding",
]
license = "0BSD"
repository = "https://github.com/ZmoleCristian/vin-decode"

[features]
build = [
    "dep:csv",
    "dep:serde_json",
]
default = [
    "parallel",
    "embedded",
]
embedded = []
parallel = ["dep:rayon"]
serde = ["dep:serde"]

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

[[bin]]
name = "vin-decode-build"
path = "src/bin/vin-decode-build.rs"
required-features = ["build"]

[[bin]]
name = "vin-decode-resolve-fks"
path = "src/bin/vin-decode-resolve-fks.rs"
required-features = ["build"]

[[bin]]
name = "vin-decode-rip-build"
path = "src/bin/vin-decode-rip-build.rs"
required-features = ["build"]

[dependencies.csv]
version = "1.3"
optional = true

[dependencies.fs2]
version = "0.4"

[dependencies.fst]
version = "0.4"

[dependencies.memmap2]
version = "0.9"

[dependencies.rayon]
version = "1.11"
optional = true

[dependencies.rkyv]
version = "0.8"

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = "1"
optional = true

[dependencies.static_assertions]
version = "1.1"

[dependencies.thiserror]
version = "2"

[dependencies.time]
version = "0.3"
features = ["std"]
default-features = false

[dependencies.zstd]
version = "0.13"
default-features = false

[dev-dependencies.proptest]
version = "1"

[dev-dependencies.tempfile]
version = "3"

[profile.release]
opt-level = 3
lto = "thin"