-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
32 lines (26 loc) · 951 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
[package]
name = "miniboosts"
version = "0.4.0"
authors = ["rmitsuboshi <[email protected]>"]
edition = "2021"
description = "MiniBoosts: A collection of boosting algorithms written in Rust 🦀"
repository = "https://github.com/rmitsuboshi/miniboosts"
categories = ["science"]
keywords = ["boosting", "machine-learning"]
exclude = ["/tests", "/img", "TODO.txt"]
license = "MIT"
[package.metadata.docs.rs]
all-features = true
[dependencies]
grb = { version = "2.0.1", optional = true }
clarabel = { version = "0.9.0" }
rand = { version = "0.8.5" }
rand_distr = { version = "0.4.3" }
rayon = { version = "1.10.0" }
serde = { version = "1.0.206", features = ["rc", "derive"] }
serde_json = { version = "1.0.124", default-features = false, features = ["alloc"] }
polars = { version = "0.41.3" }
fixedbitset = { version = "0.5.7" }
colored = { version = "2.1.0" }
[features]
gurobi = ["grb"]