[package]
edition = "2024"
name = "thanos-sort"
version = "0.1.1"
authors = ["HackerX"]
build = false
exclude = [
".gitignore",
".github/",
"tests/",
"benches/",
"Cargo.toml.orig",
".cargo_vcs_info.json",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "🗿 Perfectly balanced sorting - repeatedly snaps away half the elements until one survivor remains"
homepage = "https://github.com/HackerX7889/thanos-sort-rs"
documentation = "https://docs.rs/thanos-sort"
readme = "README.md"
keywords = [
"sorting",
"thanos",
"joke",
"algorithm",
"perfectly-balanced",
]
categories = [
"algorithms",
"rust-patterns",
"simulation",
]
license = "MIT"
repository = "https://github.com/HackerX7889/thanos-sort-rs"
[package.metadata.docs.rs]
all-features = true
rustc-args = [
"--cfg",
"docsrs",
]
rustdoc-args = [
"--cfg",
"docsrs",
]
default-target = "x86_64-unknown-linux-gnu"
[badges.maintenance]
status = "passively-maintained"
[lib]
name = "thanos_sort"
path = "src/lib.rs"
[dependencies.rand]
version = "0.10.0"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1