-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
41 lines (36 loc) · 1.11 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
41
[package]
name = "perpetual"
version = "0.7.10"
edition = "2021"
authors = ["Mutlu Simsek <[email protected]>"]
homepage = "https://perpetual-ml.com"
description = "A self-generalizing gradient boosting machine which doesn't need hyperparameter optimization"
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/perpetual-ml/perpetual"
keywords = ["machine-learning", "perpetual", "ai", "ml"]
categories = ["algorithms", "mathematics", "science"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = 'fat'
codegen-units = 1
#debug = true # due to flamegraph
#strip = false # due to flamegraph
[dependencies]
rayon = "1.8"
thiserror = "2.0.3"
serde_json = { version = "1.0.133", features = ["float_roundtrip"] }
serde = { version = "1.0.215", features = ["derive"] }
approx = "0.5"
log = "0.4"
rand = "0.8.5"
sysinfo = "0.32.1"
[dev-dependencies]
criterion = "0.5"
polars = "0.41"
reqwest = { version = "0.12.9", features = ["blocking"] }
csv = "1.3.1"
chrono = "0.4"
[[bench]]
name = "perpetual_benchmarks"
harness = false