forked from TLmaK0/rustneat
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
54 lines (45 loc) · 1.53 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
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
authors = ["Hugo Freire <[email protected]>"]
description = "Implementation of NeuroEvolution of Augmenting Topologies NEAT http://nn.cs.utexas.edu/downloads/papers/stanley.ec02.pdf with a Continuous-Time Recurrent Neural Networks"
documentation = "https://github.com/TLmaK0/rustneat"
homepage = "https://github.com/TLmaK0/rustneat"
keywords = ["neuroevolution", "neat", "aumenting-topologies", "genetic", "algorithm"]
license = "MIT"
name = "rustneat"
repository = "https://github.com/TLmaK0/rustneat"
version = "0.3.0"
edition = "2018"
[dependencies]
conv = "0.3.2"
lazy_static = "0.2.2"
num_cpus = "1.0"
rand = "0.6"
rulinalg = "0.3.4"
rayon = "1.0.3"
indexmap = { version = "1.0.2", features = ["serde-1"] }
rusty_dashed = { version = "0.2.1", optional = true }
open = { version = "1.2.1", optional = true }
clippy = { version = "0.0.103", optional = true }
serde = "1.0"
serde_derive = "1.0"
serde_json = { version = "1.0", optional = true }
cpython = { version = "0.1", optional = true }
python3-sys = { version = "0.1", optional = true }
slog = "2.4.1"
slog-term = "2.4.0"
slog-async = "2.3.0"
# [dev-dependencies] # Only used for src/bin/*
blackbox = {git = "https://github.com/Ploppz/blackbox.git"}
blackbox_derive = {git = "https://github.com/Ploppz/blackbox_derive.git"}
chrono = "0.4.6"
[features]
default = []
telemetry = ["rusty_dashed", "open", "serde_json"]
openai = ["cpython", "python3-sys"]
[[example]]
name = "openai"
required-features = ["cpython"]
[[example]]
name = "simple"
[[example]]
name = "function_approximation"