-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
36 lines (33 loc) · 975 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
33
34
35
36
[package]
name = "kurobako"
version = "0.2.9"
authors = ["Takeru Ohta <[email protected]>"]
edition = "2018"
description = "A black-box optimization benchmarking framework"
homepage = "https://github.com/optuna/kurobako"
repository = "https://github.com/optuna/kurobako"
readme = "README.md"
license = "MIT"
[badges]
coveralls = {repository = "optuna/kurobako"}
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
indicatif = "0.15"
kurobako_core = { path = "kurobako_core", version = "0.1" }
kurobako_problems = { path = "kurobako_problems", version = "0.1" }
kurobako_solvers = { path = "kurobako_solvers", version = "0.2" }
nasbench = "0.1"
num = "0.4"
num-integer = "0.1"
ordered-float = "2"
rand = "0.8"
randomforest = "0.1"
rustats = "0.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.9"
structopt = "0.3"
tempfile = "3"
trackable = "0.2"
[workspace]
members = ["kurobako_core", "kurobako_problems", "kurobako_solvers"]