From fe9a89580522bcd291b8a24c5e1e6e933a8dbb87 Mon Sep 17 00:00:00 2001 From: Harald Maida Date: Thu, 26 Oct 2017 05:33:06 +0200 Subject: [PATCH] specify version numbers of dependencies. --- Cargo.lock | 2 +- Cargo.toml | 21 ++++++++++----------- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9673046..fc620e9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "genevo" -version = "0.0.1" +version = "0.1.0" dependencies = [ "chrono 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "fixedbitset 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 6470a59..66495e9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "genevo" -version = "0.0.1" +version = "0.1.0" authors = ["haraldmaida "] license = "MIT/Apache-2.0" description = """ @@ -10,10 +10,9 @@ genetic algorithms (GA). Execute genetic algorithm (GA) simulations in a customizable and extensible way. """ keywords = ["genetic", "evolutionary", "algorithm"] - repository = "https://github.com/innoave/genevo" documentation = "https://docs.rs/genevo" -#homepage = "https://innoave.github.id/genevo" +#homepage = "https://innoave.github.io/genevo" readme = "README.md" [lib] @@ -21,16 +20,16 @@ name = "genevo" path = "src/lib.rs" [dependencies] -fixedbitset = "*" -chrono = "*" -log = "*" -rand = "*" -rayon = "*" -xorshift = "*" +chrono = "0.4" +fixedbitset = "0.1" +log = "0.3" +rand = "0.3" +rayon = "0.8" +xorshift = "0.1" [dev-dependencies] -quickcheck = "*" -hamcrest = "*" +quickcheck = "0.4" +hamcrest = "0.1" #log4rs = "*" [[example]]