-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 764 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (27 loc) · 764 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 = "rivu"
version = "0.2.3"
edition = "2024"
license = "AGPL-3"
repository = "https://github.com/gustavo-munhoz/rivu"
description = "A MOA-inspired project to optimize Naive Bayes and Hoeffding Trees algorithms with a rust implementation."
[features]
test-support = []
[dependencies]
clap = { version = "4.5.20", features = ["derive"] }
tempfile = "3.20.0"
rand = "0.9.2"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = { version = "1.0.145" , features = ["preserve_order"]}
schemars = "1.0.4"
strum = "0.27.2"
strum_macros = "0.27.2"
inquire = "0.9.1"
anyhow = "1.0.100"
thiserror = "2.0.16"
chrono = "0.4.42"
libm = "0.2.15"
cpu-time = "1.0.0"
[target.'cfg(target_os = "macos")'.dependencies]
libc = "0.2.175"
mach2 = "0.5.0"