-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
51 lines (42 loc) · 1.07 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
43
44
45
46
47
48
49
50
51
[package]
name = "rebop"
version = "0.9.1"
authors = ["Virgile Andreani <[email protected]>"]
edition = "2021"
license = "MIT"
categories = ["algorithms", "mathematics", "science", "simulation"]
homepage = "https://armavica.github.io/rebop/"
repository = "https://github.com/Armavica/rebop/"
description = "A fast stochastic simulator for chemical reaction networks"
keywords = ["gillespie-algorithm", "systems-biology", "stochastic", "scientific-computing"]
[dependencies]
pyo3 = { version = "0.23.3", features = ["extension-module"] }
rand = "0.9.0"
rand_distr = "0.5.0"
winnow = "0.6.24"
[features]
abi3 = ["pyo3/abi3-py310", "generate-import-lib"]
generate-import-lib = ["pyo3/generate-import-lib"]
[dev-dependencies]
criterion = "0.5.1"
iai-callgrind = "0.14.0"
[lib]
path = "src/lib.rs"
crate-type = ["lib", "cdylib"]
bench = false
[[bin]]
name = "vilar"
path = "benches/vilar/vilar.rs"
bench = false
[[bench]]
name = "my_benchmark"
harness = false
[[bench]]
name = "iai"
harness = false
[profile.release]
lto = true
codegen-units = 1
[profile.iai]
inherits = "release"
debug = true