-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (32 loc) · 963 Bytes
/
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
[package]
name = "biodivine-lib-bma-data"
version = "0.0.1"
authors = ["Ondřej Huvar <[email protected]>", "Samuel Pastva <[email protected]>"]
edition = "2021"
description = "Library for working with models in BMA format."
homepage = "https://github.com/sybila/biodivine-lib-bma-data"
repository = "https://github.com/sybila/biodivine-lib-bma-data"
readme = "README.md"
keywords = ["boolean-network", "BMA", "systems-biology"]
categories = ["science", "simulation"]
license = "MIT"
[lib]
name = "biodivine_lib_bma_data"
path = "src/lib.rs"
[[bin]]
name = "load-json"
path = "src/bin/load_json.rs"
[[bin]]
name = "load-xml"
path = "src/bin/load_xml.rs"
[dependencies]
biodivine-lib-param-bn = ">=0.5.11, <1.0.0"
clap = { version = "4.1.4", features = ["derive"] }
rand = "0.8.5"
regex = "1.10.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = "3.9.0"
serde-xml-rs = "0.6.0"
num-rational = "0.4.2"
num-traits = "0.2.19"