-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
42 lines (36 loc) · 1.06 KB
/
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
37
38
39
40
41
42
[package]
name = "sparse_linear_assignment"
version = "0.1.5"
authors = ["Rinat Shigapov <rinatshigapov@gmail.com>"]
edition = "2018"
description = "Solvers for sparse linear assignment problem based on the auction algorithm"
readme = "README.md"
repository = "https://github.com/DXist/sparse_linear_assignment"
license = "Apache-2.0"
keywords = ["linear-assignment", "weighted-matching", "optimization", "auction-algorithm", "sparse"]
categories = ["algorithms", "mathematics", "science"]
[dependencies]
anyhow = "1.0"
num-traits = "0.2"
num-iter = "0.1"
num-integer = { version = "0.1", optional = true }
tracing-subscriber = "0.2"
tracing = { version = "0.1", features = ["release_max_level_warn"] }
[dev-dependencies]
tracing = { version = "0.1", features = ["max_level_trace"] }
rand = "0.8"
rand_distr = "0.4"
rand_chacha = "0.3"
reservoir-sampling = "0.5"
criterion = "0.3"
generic-tests = "0.1"
[lib]
# disable libtest benchmarks
bench = false
[[bench]]
name = "benchmark"
harness = false
[features]
default = ["khosla", "forward"]
khosla = ["num-integer"]
forward = []