forked from carrascomj/rust_sbml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (25 loc) · 905 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
[package]
name = "rust_sbml"
version = "0.5.3"
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"
[dependencies]
quick-xml = { version = "0.20.0", features = ["serialize"] }
serde = { version = "1.0", features = [ "derive" ] }
pyo3 = { version = "0.13.2", optional = true }
mathml = "0.4.4"
[features]
extension-module = ["pyo3/extension-module"]
default = ["extension-module"]
dependencies = ["pyo3"]