[package]
edition = "2024"
rust-version = "1.85"
name = "catboost-rust"
version = "0.3.8"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust bindings for CatBoost, a gradient boosting library for machine learning. Downloads CatBoost binaries at runtime for cross-platform compatibility."
readme = "README.md"
keywords = [
"machine-learning",
"gradient-boosting",
"catboost",
"ml",
]
categories = ["science"]
license = "Apache-2.0"
repository = "https://github.com/aryehlev/catboost-rust"
[features]
gpu = []
[lib]
name = "catboost_rust"
path = "src/lib.rs"
[[example]]
name = "advanced_usage"
path = "examples/advanced_usage.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "gpu_usage"
path = "examples/gpu_usage.rs"
[build-dependencies.bindgen]
version = "0.72.0"
[build-dependencies.ureq]
version = "2.0"