[package] name = "markovian" version = "0.2.1" authors = ["Raimundo Saona "] edition = "2018" license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/rasa200/markovian" documentation = "https://docs.rs/markovian" homepage = "https://crates.io/crates/markovian" description = """ Simulation of Markov Processes as stochastic processes. """ keywords = ["chain", "markov", "probability", "random", "numerics"] categories = ["science", "mathematics", "simulation"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [badges] maintenance = { status = "actively-developed" } [dependencies] rand = "0.7" rand_distr = "0.2" num-traits = "0.2" thiserror = "1.0" [dev-dependencies] preexplorer = "0.3" rayon = "1.3" ndarray = "0.13" pretty_assertions = "0.6" approx = "0.3" rand_pcg = "0.2" criterion = "0.3" [[bench]] name = "brownian_motion" harness = false