colvec 0.0.3

Struct-of-arrays column vec like Zig's MultiArrayList
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"
name = "colvec"
version = "0.0.3"
authors = ["Rhys Lloyd <krakow20@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Struct-of-arrays column vec like Zig's MultiArrayList"
readme = "README.md"
keywords = [
    "struct",
    "arrays",
    "vec",
    "no_std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/krakow10/colvec"
resolver = "2"

[features]
allocator-api2 = ["dep:allocator-api2"]
default = [
    "std",
    "allocator-api2",
]
nightly = []
std = [
    "allocator-api2?/std",
    "colvec-derive/std",
]

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

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

[dependencies.allocator-api2]
version = "0.3.0"
optional = true
default-features = false

[dependencies.colvec-derive]
version = "0.0.3"
default-features = false

[dependencies.compile_time_sort]
version = "1.1.4"