Skip to content

Commit

Permalink
fix feature dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pchampin committed Nov 14, 2023
1 parent f16ec40 commit a29aee4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sophia/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ all-features = true
[features]
default = []
# This feature enables the JSON-LD parser and serializer
jsonld = ["sophia_jsonld", "sophia_resource/jsonld"]
jsonld = ["dep:sophia_jsonld", "sophia_resource/jsonld"]
# This feature enables the RDF/XML parser and serializer
xml = ["sophia_xml", "sophia_resource/xml"]
xml = ["dep:sophia_xml", "sophia_resource/xml"]
# This feature enables to use the graph and dataset test macros in other crates
test_macro = ["sophia_api/test_macro"]
# This feature enables the file: URL support in dependencies
Expand All @@ -40,4 +40,4 @@ sophia_term.workspace = true
sophia_xml = { workspace = true, optional = true }

[dev-dependencies]
url.workspace = true
url.workspace = true

0 comments on commit a29aee4

Please sign in to comment.