-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
32 lines (28 loc) · 1019 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
[package]
name = "rust_sbml"
version = "0.7.0"
authors = ["Jorge Carrasco Muriel <[email protected]>"]
edition = "2018"
description = "A parser for SBML"
license = "MIT OR Apache-2.0"
repository = "https://github.com/carrascomj/rust_sbml"
categories = ["parser-implementations", "parsing", "science", "mathematics"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "rust_sbml"
crate-type = ["cdylib", "rlib"]
# for cargo readme (https://github.com/livioribeiro/cargo-readme/issues/32hj)
path = "src/lib.rs"
[package.metadata.docs.rs]
rustdoc-args = [ "--html-in-header", "./src/docs-header.html" ]
[dependencies]
quick-xml = { version = "0.23.0-alpha3", features = ["serialize"] }
serde = { version = "1.0", features = [ "derive" ] }
pyo3 = { version = "0.22.3", optional = true }
itertools = "0.10"
[features]
extension-module = ["pyo3/extension-module"]
default = ["extension-module"]
dependencies = ["pyo3"]
sabiork = []