-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (37 loc) · 1.05 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "markovian"
version = "0.3.1"
authors = ["Raimundo Saona <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/saona-raimundo/markovian"
documentation = "https://docs.rs/markovian"
homepage = "https://crates.io/crates/markovian"
description = """
Simulation of Markov Processes as stochastic processes.
"""
keywords = ["stochastic", "markov-chain", "chain", "markov", "probability", "random", "numerics", "math", "mathematics"]
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.8"
rand_distr = "0.4"
num-traits = "0.2"
thiserror = "1.0"
ndarray = "0.13.1"
petgraph = "0.5.1"
[dev-dependencies]
preexplorer = "0.3"
rayon = "1.3"
pretty_assertions = "0.6"
approx = "0.3"
rand_pcg = "0.3"
criterion = "0.3"
test-case = "1.1"
itertools-num = "0.1.3"
[[bench]]
name = "brownian_motion"
harness = false