-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
40 lines (34 loc) · 1.19 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
[package]
name = "rdftk_skos"
version = "0.2.0-pre"
authors = ["Simon Johnston <[email protected]>"]
edition = "2021"
description = "This crate provides a data model for the Simple Knowledge Organization System (SKOS) vocabulary."
documentation = "https://docs.rs/rdftk_skos/"
repository = "https://github.com/johnstonskj/rust-rdftk.git"
license = "MIT"
readme = "README.md"
publish = true
[package.metadata.docs.rs]
# This sets the default target to `x86_64-unknown-linux-gnu`
# and only builds that target for documentation.
targets = ["x86_64-unknown-linux-gnu"]
[features]
default = ["documentation"]
documentation = ["somedoc"]
[dependencies]
lazy_static = "1.4"
objio = "0.1"
paste = "1.0"
rdftk_io = { version = "0.3", path = "../rdftk_io" }
rdftk_iri = { version = "0.2.1", path = "../rdftk_iri" }
rdftk_core = { version = "0.4.1", path = "../rdftk_core" }
rdftk_names = { version = "0.2.1", path = "../rdftk_names" }
somedoc = { version = "0.2.9", optional = true }
[dev-dependencies]
pretty_assertions = "1.4"
[dev-dependencies.cargo-husky]
version = "1"
default-features = false # Disable features which are enabled by default
features = ["precommit-hook", "run-cargo-fmt", "run-cargo-test"
]