Skip to content

Commit

Permalink
specify version numbers of dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
haraldmaida committed Oct 26, 2017
1 parent 327916c commit fe9a895
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 10 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "genevo"
version = "0.0.1"
version = "0.1.0"
authors = ["haraldmaida <[email protected]>"]
license = "MIT/Apache-2.0"
description = """
Expand All @@ -10,27 +10,26 @@ 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]
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]]
Expand Down

0 comments on commit fe9a895

Please sign in to comment.