forked from fastobo/fastobo-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (43 loc) · 954 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
37
38
39
40
41
42
43
44
45
46
47
48
49
[workspace]
members = ["derive"]
[package]
name = "fastobo-py"
version = "0.11.1"
authors = ["Martin Larralde <[email protected]>"]
license = "MIT"
publish = false
build = "src/build.rs"
[lib]
crate-type = ["cdylib", "rlib"]
name = "fastobo_py"
doctest = false
[dev-dependencies]
lazy_static = "1.4.0"
[build-dependencies.built]
version = "0.5.1"
features = ["chrono"]
[dependencies]
libc = "0.2.70"
pyo3-built = "0.4.6"
pest = "=2.1.3"
[dependencies.pyo3]
version = "0.15.1"
[dependencies.fastobo]
version = "0.15.0"
features = ["threading", "smartstring"]
[dependencies.fastobo-graphs]
version = "0.4.7"
features = ["obo"]
[dependencies.fastobo-owl]
version = "0.2.1"
[dependencies.horned-owl]
version = "0.11.0"
[dependencies.horned-functional]
version = "0.4.0"
[dependencies.fastobo-py-derive-internal]
version = "0.11.1"
path = "./derive"
[features]
default = []
extension-module = ["pyo3/extension-module"]
nightly = ["pyo3/nightly"]