emas_rs 0.1.1

Rust-based EMAS optimization algorithm
Documentation
[package]
name = "emas_rs"
version = "0.1.1"
authors = ["Michał Misiak <michalmisiak@student.agh.edu.pl>", "Stanisław Łenyk <stlenyk@gmail.com>", "Jerzy Wilczek <jerzykwilczek@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/jerzywilczek/emas_rs"
repository = "https://github.com/jerzywilczek/emas_rs"
description = "Rust-based EMAS optimization algorithm"
categories = ["algorithms", "science"]
keywords = ["emas", "agent", "optimization", "evolution"]
readme = "README.md"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
live-plotting = []

[dependencies]
chrono = "0.4.23"
crossbeam = "0.8.2"
rand = "0.8.5"
rand_chacha = "0.3.1"
rand_pcg = "0.3.1"
rayon = "1.6.0"
rustc-hash = "1.1.0"

[dev-dependencies]
assert_approx_eq = "1.1.0"
criterion = { version = "0.4", features = ["html_reports"] }

[[bench]]
name = "full_benchmark"
harness = false

[[example]]
name = "live_plotting"
required-features = ["live-plotting"]