-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (31 loc) · 836 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
[package]
name = "indxvec"
version = "1.9.6"
authors = ["Libor Spacek"]
edition = "2021"
description = "Vecs sorting, merging, indexing, ranking, searching, reversing, intersecting, printing, etc."
readme = "README.md"
homepage = "https://github.com/liborty/indxvec"
repository = "https://github.com/liborty/indxvec"
license = "Apache-2.0"
keywords = ["merge-sort","hash-sort","binary-search","ranking","printing-vectors"]
categories = ["algorithms","data-structures","mathematics","rust-patterns","simulation"]
include = [
"src/lib.rs",
"src/indices.rs",
"src/mutops.rs",
"src/printing.rs",
"src/search.rs",
"src/vecops.rs",
"Cargo.toml",
"README.md",
"LICENSE"
]
[badges]
maintenance = { status = "actively-developed" }
[lib]
[dependencies]
# rayon = "1.8"
[dev-dependencies]
ran = "2"
times = "1"