-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (33 loc) · 1010 Bytes
/
Copy pathCargo.toml
File metadata and controls
39 lines (33 loc) · 1010 Bytes
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
37
38
39
[package]
name = "tilesort"
version = "0.2.0"
edition = "2021"
rust-version = "1.71.1"
authors = ["Evan Williams <evanjpw@gmail.com>"]
description = "A sorting algorithm optimized for datasets with pre-sorted contiguous blocks (tiles)"
readme = "README.md"
repository = "https://github.com/evanjpw/tilesort"
license = "MIT OR Apache-2.0"
keywords = ["sorting", "algorithm", "optimization", "performance"]
categories = ["algorithms"]
homepage = "https://github.com/evanjpw/tilesort"
# TODO: Is this needed?
#documentation = "https://docs.rs/tilesort/latest/tilesort/"
[lib]
name = "tilesort"
# Support both Python bindings (cdylib) and Rust library usage (rlib)
crate-type = ["cdylib", "rlib"]
[dependencies]
pyo3 = { version = "0.25.1", optional = true }
log = "0.4.28"
[features]
default = []
# Enable Python bindings
python = ["pyo3"]
[dev-dependencies]
test-log = "0.2.14"
criterion = { version = "0.5.1", features = ["html_reports"] }
rand = "0.9.2"
[[bench]]
name = "sort_benchmark"
harness = false