-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (54 loc) · 1.36 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "fastobo-graphs"
version = "0.4.8"
authors = ["Martin Larralde <[email protected]>"]
edition = "2018"
license = "MIT"
description = "OBO Graphs data model, decoder and encoder in Rust."
repository = "https://github.com/fastobo/fastobo-graphs"
homepage = "https://github.com/fastobo/fastobo-graphs"
readme = "README.md"
keywords = ["obo", "graphs", "ontology", "serde", "parser"]
categories = ["science", "parser-implementations"]
exclude = ["obographs"]
[badges.codecov]
repository = "fastobo/fastobo-graphs"
service = "github"
[badges.is-it-maintained-issue-resolution]
repository = "fastobo/fastobo-graphs"
[badges.maintenance]
status = "actively-developed"
[package.metadata.docs.rs]
features = [ "_doc", "obo" ]
[dependencies]
serde_yaml = "0.9"
serde_json = "1.0"
thiserror = "1.0.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.fastobo]
version = "0.15.1"
optional = true
default-features = false
[dependencies.mashup]
version = "0.1.9"
optional = true
[dev-dependencies]
lazy_static = "1.3"
pretty_assertions = "1.0.0"
obofoundry = "0.11"
serde_json = "1.0"
serde_yaml = "0.9"
ureq = "2.0"
mashup = "0.1.9"
[dev-dependencies.fastobo]
version = "0.15.1"
[features]
default = ["obo"]
obo = ["fastobo", "mashup"]
_doc = ["obo"]
[[test]]
name = "convert"
path = "tests/convert/mod.rs"
required-features = ["obo"]