[badges.maintenance]
status = "actively-developed"
[badges.travis-ci]
repository = "slightlyoutofphase/staticsort"
[package]
authors = ["SlightlyOutOfPhase <slightlyoutofphase@gmail.com>"]
categories = ["data-structures", "no-std", "algorithms"]
description = "Implements a macro providing a compile-time quicksort function for arrays of any length, containing any primitive Copy type with a PartialOrd implementation."
documentation = "https://docs.rs/staticsort/"
edition = "2018"
include = ["Cargo.toml", "rustfmt.toml", "src/**/*.rs", "examples/**/*.rs", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
keywords = ["sort", "array", "quicksort", "sorting", "ord"]
license = "MIT OR Apache-2.0"
name = "staticsort"
readme = "README.md"
repository = "https://github.com/slightlyoutofphase/staticsort"
version = "0.1.5"
[profile.dev]
codegen-units = 16
debug = true
debug-assertions = true
incremental = false
lto = false
opt-level = 0
overflow-checks = true
panic = "unwind"
rpath = false
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = false
panic = "abort"
rpath = false