-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 723 Bytes
/
Cargo.toml
File metadata and controls
31 lines (26 loc) · 723 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 = "rustrees"
version = "0.2.4"
edition = "2021"
authors = [
"Guilherme Lázari <guilhermelcs@gmail.com>",
"Pedro Tabacof <tabacof@gmail.com>",
]
description = "Decision trees in Rust"
license = "MIT"
categories = ["machine-learning", "decision-trees", "python"]
keywords = ["machine-learning", "decision-trees", "python"]
[lib]
name = "rustrees"
path = "src/lib.rs"
[dependencies]
rand = "0.8.5"
pyo3 = { version = "0.18.1", features = ["extension-module"] }
permutation = "0.4.1"
rayon = "1.7.0"
arrow = { version = "37.0.0", features = ["prettyprint", "pyarrow"] }
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
[[bench]]
name = "benchmarks"
harness = false