columnar 0.12.0

Conversion from arrays of complex structs to simple structs of arrays
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"
name = "columnar"
version = "0.12.0"
authors = ["Frank McSherry <fmcsherry@me.com>"]
build = false
exclude = ["presentation/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Conversion from arrays of complex structs to simple structs of arrays"
homepage = "http://github.com/frankmcsherry/columnar"
documentation = "http://github.com/frankmcsherry/columnar"
readme = "README.md"
license = "MIT"
repository = "https://github.com/frankmcsherry/columnar.git"

[features]
default = ["std"]
serde = [
    "dep:serde",
    "columnar_derive/serde",
    "smallvec/serde",
]
std = []

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

[[bin]]
name = "columnar"
path = "src/main.rs"

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

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

[[example]]
name = "json"
path = "examples/json.rs"
required-features = ["serde"]

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

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

[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false

[[bench]]
name = "ops"
path = "benches/ops.rs"
harness = false

[[bench]]
name = "serde"
path = "benches/serde.rs"
harness = false
required-features = ["serde"]

[[bench]]
name = "simd"
path = "benches/simd.rs"
harness = false

[dependencies.bytemuck]
version = "1.20"
features = ["min_const_generics"]

[dependencies.columnar_derive]
version = "0.12"

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

[dependencies.smallvec]
version = "1.13.2"
features = ["const_generics"]

[dev-dependencies.bencher]
version = "0.1.5"

[dev-dependencies.bincode]
version = "1.3.3"

[dev-dependencies.serde_json]
version = "1.0"

[profile.bench]
lto = true
codegen-units = 1
debug = 2

[profile.test]
opt-level = 2
overflow-checks = false
incremental = false