-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
40 lines (36 loc) · 1.04 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
[package]
name = "lightgbm3"
version = "1.0.5"
edition = "2021"
authors = [
"Dmitry Mottl <[email protected]>",
"vaaaaanquish <[email protected]>",
"paq <[email protected]>",
"Benjamin Ellis <[email protected]>",
]
license = "MIT"
repository = "https://github.com/Mottl/lightgbm3-rs"
description = "Rust bindings for LightGBM library"
documentation = "https://docs.rs/lightgbm3/"
keywords = ["lightgbm", "machine-learning", "gradient-boosting"]
categories = ["api-bindings", "science"]
readme = "README.md"
exclude = [".gitignore", ".github", ".gitmodules", "examples", "benches", "lightgbm3-sys"]
[dependencies]
lightgbm3-sys = { path = "lightgbm3-sys", version = "1.0.4" }
serde_json = "1.0.125"
polars = { version = "0.42.0", optional = true }
[features]
default = []
polars = ["dep:polars"]
openmp = ["lightgbm3-sys/openmp"]
gpu = ["lightgbm3-sys/gpu"]
cuda = ["lightgbm3-sys/cuda"]
[[bench]]
name = "regression"
path = "benches/regression.rs"
harness = false
[dev-dependencies]
rand = "0.8.5"
rand_distr = "0.4.3"
csv = "1.3.0"