-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (27 loc) · 885 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
[workspace]
members = [
"computation-types",
"derive-num-bounded",
"optimal-binary",
"optimal-linesearch",
"optimal-pbil",
]
[package]
name = "optimal"
version = "0.0.0"
edition = "2021"
authors = ["Justin Lovinger"]
description = "Mathematical optimization and machine-learning components and algorithms"
repository = "https://github.com/justinlovinger/optimal-rs"
readme = "README.md"
keywords = ["ai", "machine-learning", "optimization"]
categories = ["science", "mathematics"]
license = "MIT"
[badges]
github = { repository = "justinlovinger/optimal-rs", workflow = "build" }
[dependencies]
computation-types = { path = "computation-types", version = "0.0.0" }
optimal-pbil = { path = "optimal-pbil", version = "0.0.0" }
optimal-linesearch = { path = "optimal-linesearch", version = "0.0.0" }
rand = { version = "0.8.5", features = ["small_rng"] }
[dev-dependencies]