-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 906 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (26 loc) · 906 Bytes
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
[package]
name = "vis-a-vis"
description = "A simulator of viral infection spread and viral infection self-containment"
keywords = ["infection", "innate immunity", "interferon", "diffusion","cellular automaton", "kinetic Monte Carlo"]
categories = ["science", "systems biology"]
repository = "https://github.com/grfrederic/visavis"
license = "BSD-3-clause"
version = "1.0.0"
authors = ["Marek Kochanczyk <mkochan@ippt.pan.pl>", "Frederic Grabowski <fgrabows@ippt.pan.pl>"]
edition = "2021"
[dependencies]
rand = { version = "0.8" }
rand_distr = { version = "0.4" }
num_cpus = { version = "1.13" }
threadpool = {version = "1.8" }
png = { version = "0.17" }
cairo-rs = { version = "0.16", features = ["png"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
nom = { version = "7" }
[profile.release]
opt-level = 3
debug = false
strip = true
lto = true
codegen-units = 1