[package] name = "bigcollatz" version = "0.3.0" authors = ["Jorge Aguilera "] edition = "2018" description = "Collatz implementation using Big integer" documentation = "https://jorge-aguilera.gitlab.io/big-collatz" homepage = "https://gitlab.com/jorge-aguilera/big-collatz" keywords = ["mathematics", "numerics", "bignum"] categories = [ "algorithms", "data-structures", "science" ] license = "MIT OR Apache-2.0" repository = "https://gitlab.com/jorge-aguilera/big-collatz" readme = "README.md" exclude = ["/.idea"] [dependencies] rand = "0.7" num-bigint = { version = "0.3", features = ["rand","serde"] } num-traits = "0.2.14"