columnar 0.10.2

Conversion from arrays of complex structs to simple structs of arrays
Documentation
[[bench]]
harness = false
name = "bench"
path = "benches/bench.rs"

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

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

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

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

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

[dependencies.columnar_derive]
version = "0.10"

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

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

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

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

[dev-dependencies.rmp-serde]
version = "1.3.0"

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

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

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

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

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

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

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

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