30 lines
992 B
TOML
30 lines
992 B
TOML
[package]
|
|
name = "gemla"
|
|
version = "0.1.31"
|
|
authors = ["Jacob VanDomelen <Jacob.Vandome15@gmail.com>"]
|
|
edition = "2018"
|
|
license = "MIT"
|
|
description = "Using evolutionary computation to generate machine learning algorithms"
|
|
homepage = "https://git.gloom.garden/tepichord/GEMLA.git"
|
|
repository = "https://git.gloom.garden/tepichord/GEMLA.git"
|
|
documentation = "https://docs.rs/gemla/"
|
|
readme = "../README.md"
|
|
keywords = ["genetic", "evolve", "machine", "learning", "algorithm"]
|
|
categories = ["simulation"]
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
uuid = { version = "1.7", features = ["serde", "v4"] }
|
|
clap = { version = "4.5.2", features = ["derive"] }
|
|
file_linked = { version = "0.1.0", path = "../file_linked" }
|
|
thiserror = "1.0"
|
|
anyhow = "1.0"
|
|
rand = "0.8.5"
|
|
log = "0.4.21"
|
|
env_logger = "0.11.3"
|
|
futures = "0.3.30"
|
|
tokio = { version = "1.37.0", features = ["full"] }
|
|
num_cpus = "1.16.0"
|
|
async-trait = "0.1.78"
|
|
async-recursion = "1.1.0"
|
|
console-subscriber = "0.2.0"
|