[package] name = "easy_ga" version = "1.2.1" edition = "2021" authors = ["RubenRubioM"] description = "Library to implement genetic algorithms" readme = "README.md" license-file = "LICENSE.txt" repository = "https://github.com/RubenRubioM/easy_ga/" keywords = ["genetic", "genetics", "genetic-algorithm", "ai", "machine-learning"] categories = ["science"] exclude = ["main.rs", "benches/"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] rand = "0.8.4" cpu-time = "1.0.0" uuid = {version = "0.8", features = ["v4"] } lazy_static = "1.4.0" [dev-dependencies] criterion = "0.3" [[bench]] name = "main" path = "benches/main.rs" harness = false