-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
36 lines (30 loc) · 918 Bytes
/
Cargo.toml
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
32
33
34
35
36
[package]
name = "alphanumeric-sort"
version = "1.3.2"
authors = ["Magic Len <len@magiclen.org>"]
edition = "2018"
repository = "https://github.com/magiclen/alphanumeric-sort"
homepage = "https://magiclen.org/alphanumeric-sort"
keywords = ["sort", "alphanumeric", "path", "file", "number"]
categories = ["no-std", "algorithms"]
description = "This crate can help you sort order for files and folders whose names contain numerals."
readme = "README.md"
license = "MIT"
include = ["src/**/*", "Cargo.toml", "benches/bench.rs", "examples/sort_files_by_file_names.rs",
"LICENSE", "README.md"]
[badges.travis-ci]
repository = "magiclen/alphanumeric-sort"
branch = "master"
[dependencies]
[dev-dependencies]
bencher = "0.1.5"
[features]
std = []
default = ["std"]
[[example]]
name = "sort_files_by_file_names"
required-features = ["std"]
[[bench]]
name = "bench"
required-features = ["std"]
harness = false