-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
35 lines (30 loc) · 968 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
[package]
name = "set_genome"
version = "0.6.7"
authors = ["Silvan Buedenbender <[email protected]>"]
edition = "2018"
license = "MIT"
description = "A genetic data structure for neuroevolution algorithms."
homepage = "https://github.com/SilvanCodes/set-genome"
documentation = "https://docs.rs/set_genome"
repository = "https://github.com/SilvanCodes/set-genome"
readme = "README.md"
keywords = ["ann", "evolution"]
categories = ["data-structures", "science", "mathematics"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = { version = "0.8", features = ["small_rng"] }
rand_distr = "0.4"
serde = { version = "1.0", features = ["derive"] }
config = "0.11"
favannat = { version = "0.6.4", optional = true }
thiserror = "1.0.30"
seahash = "4.1.0"
[dev-dependencies]
criterion = "0.3"
nalgebra = "0.28.0"
[[bench]]
name = "bench_set_genome"
harness = false
[features]
default = ["favannat"]