-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #157 from rudof-project/issue133
Issue133
- Loading branch information
Showing
15 changed files
with
646 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
# RBE - Rust implementation Regular Bag Expressions | ||
|
||
This crate contains an implementation of Regular Bag Expressions in Rust. | ||
This crate contains an implementation of Regular Bag Expressions in Rust. | ||
|
||
## More information | ||
|
||
- Paper: Semantics and validation of Shapes schemas for RDF, I. Boneva, Jose E. Labra Gayo, Eric Prud'hommeaux, [https://doi.org/10.1007/978-3-319-68288-4_7](https://doi.org/10.1007/978-3-319-68288-4_7) | ||
- A previous project in Scala is [here](https://www.weso.es/shex-s/docs/rbe) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
[package] | ||
name = "sparql_service" | ||
version = "0.1.15" | ||
authors.workspace = true | ||
description.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
documentation = "https://docs.rs/sparql_service" | ||
homepage.workspace = true | ||
repository.workspace = true | ||
|
||
[features] | ||
rdf-star = [ | ||
"sparesults/rdf-star", | ||
] | ||
|
||
[dependencies] | ||
const_format = "0.2" | ||
thiserror = "1" | ||
hashbag = { version = "0.1.11"} | ||
lazy_static = "1" | ||
serde = "1.0" | ||
serde_derive = "1.0" | ||
serde_json = { workspace = true } | ||
serde_yml = "0.0.11" | ||
itertools = "0.13" | ||
indexmap = { version = "2"} | ||
iri_s = { workspace = true } | ||
srdf = { workspace = true } | ||
tracing = { workspace = true } | ||
oxiri = "0.2.3-alpha.1" | ||
sparesults = { version = "0.2.0-alpha.5" } | ||
|
Oops, something went wrong.