1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31[package]
name = "tiny_sort"
version = "1.0.5"
edition = "2018"
authors = ["Lukas Bergdoll <lukas.bergdoll@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "Binary-size optimized stable and unstable sorts"
readme = "README.md"
documentation = "https://docs.rs/tiny_sort"
repository = "https://github.com/Voultapher/tiny-sort-rs"
keywords = ["sort", "sorting", "binary", "size", "tiny"]
categories = ["algorithms", "rust-patterns"]
include = ["src/*.rs", "Cargo.toml", "README.md", "LICENSE"]
[dependencies]
[dev-dependencies]
sort_test_tools = { git = "https://github.com/Voultapher/sort-research-rs", rev = "a626f6e55739a77de82e79bf6ca204e861232d17" }
[features]
default = ["stable", "unstable"]
# Enable the stable sort.
stable = []
# Enable the unstable sort.
unstable = []