-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (29 loc) · 1.12 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
[package]
name = "biglittle"
edition = "2021"
version = "0.1.0"
authors = ["Brandon H. Gomes <bhgomes@pm.me>"]
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/bhgomes/biglittle"
homepage = "https://github.com/bhgomes/biglittle"
documentation = "https://github.com/bhgomes/biglittle"
categories = [""]
keywords = ["matching algorithm", "ranked-selection algorithm", "stable matching problem"]
description = "Stable matching for Bigs and Littles"
publish = false
[package.metadata.docs.rs]
# To build locally:
# RUSTDOCFLAGS="--cfg doc_cfg" cargo +nightly doc --all-features --open
all-features = true
rustdoc-args = ["--cfg", "doc_cfg"]
[[bin]]
name = "biglittle"
path = "src/main.rs"
required-features = ["anyhow", "clap", "csv"]
[dependencies]
anyhow = { version = "1.0.54", optional = true }
clap = { version = "3.1.0", optional = true, default-features = false, features = ["derive", "std"] }
csv = { version = "1.1.6", optional = true, default-features = false }
derivative = { version = "2.2.0", default-features = false, features = ["use_core"] }
indexmap = { version = "1.8.0", default-features = false }