From 1f905a1f7d3421292047dd8235a4fa4befcf4d12 Mon Sep 17 00:00:00 2001 From: Tristan Murphy <72839119+inflectrix@users.noreply.github.com> Date: Thu, 22 Feb 2024 19:51:24 +0000 Subject: [PATCH 1/2] add feature to README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a633995..40fad04 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ Implementation of the NEAT algorithm using `genetic-rs` ### Features - rayon - Uses parallelization on the `NeuralNetwork` struct and adds the `rayon` feature to the `genetic-rs` re-export. +- serde - Adds the NNTSerde struct and allows for serialization of `NeuralNetworkTopology` ### How To Use When working with this crate, you'll want to use the `NeuralNetworkTopology` struct in your agent's DNA and From 3d06104e5aad2d9d0ac192649bee1c5f585ea8e5 Mon Sep 17 00:00:00 2001 From: Tristan Murphy <72839119+inflectrix@users.noreply.github.com> Date: Thu, 22 Feb 2024 19:52:01 +0000 Subject: [PATCH 2/2] update version --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4ff8f86..78fcb3c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -78,7 +78,7 @@ checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" [[package]] name = "neat" -version = "0.2.0" +version = "0.2.1" dependencies = [ "bincode", "genetic-rs", diff --git a/Cargo.toml b/Cargo.toml index fd2c603..d8965d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "neat" description = "Crate for working with NEAT in rust" -version = "0.2.0" +version = "0.2.1" edition = "2021" authors = ["Inflectrix"] repository = "https://github.com/inflectrix/neat"