layout 0.0.1

Optimized memory layout using struct of array, Data-oriented design in Rust, DOD SOA
Documentation
[[bench]]
harness = false
name = "soa"
path = "benches/soa.rs"

[build-dependencies.rustc_version]
version = "0.4"

[dependencies.layout_internal]
version = "0.0.1"

[dependencies.permutation]
version = "0.4.1"

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

[dev-dependencies.itertools]
version = "0.14.0"

[dev-dependencies.serde]
features = ["derive"]
version = "1"

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

[features]
default = ["std"]
std = []

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["data-structures", "no-std"]
description = "Optimized memory layout using struct of array, Data-oriented design in Rust, DOD SOA"
documentation = "https://docs.rs/layout/"
edition = "2021"
homepage = "https://github.com/fereidani/layout"
keywords = ["soa", "dod", "data-oriented", "struct-of-array", "performance"]
license = "MIT/Apache-2.0"
name = "layout"
readme = "README.md"
repository = "https://github.com/fereidani/layout"
rust-version = "1.65"
version = "0.0.1"

[profile.bench]
codegen-units = 1
debug = 0
incremental = false
lto = "thin"
opt-level = 3
rpath = true

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

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

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

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

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

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

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

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

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

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

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

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

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