-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
32 lines (28 loc) · 832 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 = "forust-ml"
version = "0.4.8"
edition = "2021"
authors = ["James Inlow <[email protected]>"]
homepage = "https://github.com/jinlow/forust"
description = "A lightweight gradient boosting implementation in Rust."
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/jinlow/forust"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = 'fat'
codegen-units = 1
[dependencies]
rayon = "1.7"
thiserror = "1.0"
serde_json = { version = "1.0", features = ["float_roundtrip"] }
serde = { version = "1.0", features = ["derive"] }
rand = "0.8"
log = "0.4.19"
[dev-dependencies]
criterion = "0.5"
polars = "0.32.1"
reqwest = { version = "0.11", features = ["blocking"] }
[[bench]]
name = "forust_benchmarks"
harness = false