-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 760 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 760 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
[package]
name = "xgboost-rust"
version = "0.1.0"
edition = "2021"
description = "Rust bindings for XGBoost, a gradient boosting library for machine learning. Downloads XGBoost binaries at build time for cross-platform compatibility."
license = "Apache-2.0"
keywords = ["machine-learning", "gradient-boosting", "xgboost", "ml"]
categories = ["science"]
readme = "README.md"
repository = "https://github.com/aryehlev/xgboost-rust"
homepage = "https://github.com/aryehlev/xgboost-rust"
rust-version = "1.70"
[build-dependencies]
bindgen = "0.72.0"
ureq = "2.0"
zip = "0.6"
sha2 = "0.10"
[features]
default = []
gpu = []
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "advanced_usage"
path = "examples/advanced_usage.rs"