-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
37 lines (33 loc) · 1.17 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
[package]
name = "rdftk_core"
version = "0.5.6"
authors = ["Simon Johnston <[email protected]>"]
edition = "2021"
description = "This crate provides the core RDF data model; concrete implementations for Statements and Literals, along with a Resource type that provides a builder-like experience for models."
documentation = "https://docs.rs/rdftk_core/"
repository = "https://github.com/johnstonskj/rust-rdftk.git"
license = "MIT"
readme = "README.md"
publish = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[features]
binary_types = ["base64"]
chrono_types = ["chrono"]
decimal_types = ["rust_decimal"]
default = ["binary_types", "chrono_types", "decimal_types", "n3_formulae", "rdf_star"]
n3_formulae = []
rdf_star = []
[dependencies]
base64 = { version = "0.22", optional = true }
bimap = "0.6"
chrono = { version = "0.4", optional = true }
language-tags = "0.3.2"
lazy_static = "1.5"
rdftk_iri = { version = "0.2.5", path = "../rdftk_iri" }
rdftk_names = { version = "0.2.5", path = "../rdftk_names" }
rust_decimal = { version = "1.36", optional = true }
unique_id = "0.1"
uuid = { version = "1.11", features = ["v4"] }
[dev-dependencies]
parameterized = "2.0.0"