-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 976 Bytes
/
Copy pathCargo.toml
File metadata and controls
39 lines (35 loc) · 976 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
31
32
33
34
35
36
37
38
39
[package]
name = "polynomial-neat"
description = "A library that uses burn under the hood for training/testing NEAT"
repository = "https://github.com/dsgallups/polynomial-neat"
readme = "README.md"
authors = ["Daniel Gallups <dsgallups@protonmail.com>"]
keywords = [
"genetic_algorithms",
"neural_networks",
"neuroevolution",
"network_topologies",
"speciation",
]
categories = ["algorithms", "science", "simulation"]
version = "0.1.0"
edition = "2024"
[features]
# debug = ["dep:tracing", "dep:tracing-subscriber"]
debug = []
[dependencies]
tracing = { version = "0.1", features = ["attributes"] }
tracing-subscriber = { version = "0.3" }
rand = "0.9"
rayon = "1.10"
uuid = { version = "1.10", features = ["rng", "serde", "v4"] }
fnv = "1.0.7"
burn = { version = "0.17.1", features = ["ndarray", "cuda", "wgpu"] }
[dev-dependencies]
pretty_assertions = "1.4.1"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = true
panic = "abort"