-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (27 loc) · 765 Bytes
/
Cargo.toml
File metadata and controls
33 lines (27 loc) · 765 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
31
32
33
[package]
name = "catboost-rust"
version = "0.4.0"
edition = "2024"
description = "Rust bindings for CatBoost, a gradient boosting library for machine learning. Downloads CatBoost binaries at runtime for cross-platform compatibility."
license = "Apache-2.0"
repository = "https://github.com/aryehlev/catboost-rust"
keywords = ["machine-learning", "gradient-boosting", "catboost", "ml"]
categories = ["science"]
readme = "README.md"
rust-version = "1.85"
[dependencies]
libc = "0.2.178"
[build-dependencies]
bindgen = "0.72.0"
ureq = "2.0"
[features]
gpu = []
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "advanced_usage"
path = "examples/advanced_usage.rs"
[[example]]
name = "gpu_usage"
path = "examples/gpu_usage.rs"