-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
40 lines (36 loc) · 990 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
[package]
name = "horned-functional"
version = "0.4.0"
authors = ["Martin Larralde <[email protected]>"]
edition = "2021"
license = "MIT"
description = "An OWL2 Functional-style Syntax parser and serializer for horned-owl"
repository = "https://github.com/fastobo/horned-functional"
readme = "README.md"
keywords = ["owl", "syntax", "parser", "functional", "owl2"]
categories = ["science", "parser-implementations"]
exclude = ["tests/data/*"]
[badges.travis-ci]
repository = "fastobo/horned-functional"
[badges.codecov]
repository = "fastobo/horned-functional"
service = "github"
[badges.is-it-maintained-issue-resolution]
repository = "fastobo/horned-functional"
[badges.maintenance]
status = "actively-developed"
[dependencies]
pest = "2.7"
pest_derive = "2.7"
horned-owl = "0.14.0"
curie = "0.1.1"
enum_meta = "0.6.0"
thiserror = "1.0.0"
[dependencies.memmap]
version = "0.7.0"
optional = true
[features]
default = []
[dev-dependencies]
matches = "0.1.8"
ureq = "2.3.1"