forked from rudof-project/rudof
-
Notifications
You must be signed in to change notification settings - Fork 0
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 rudof-project#48 from media-io/feat/impl_shacl
Implement SHACL to RDF conversion
- Loading branch information
Showing
56 changed files
with
932 additions
and
603 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 |
---|---|---|
|
@@ -3,17 +3,18 @@ name = "shapes-rs" | |
version = "0.0.11" | ||
description = "RDF Data shapes implementation in Rust" | ||
license = "GPL-3.0-or-later" | ||
authors = [ | ||
"Jose Emilio Labra Gayo", | ||
"Ángel Iglesias Préstamo <[email protected]>", | ||
authors = [ | ||
"Jose Emilio Labra Gayo <[email protected]>", | ||
"Ángel Iglesias Préstamo <[email protected]>", | ||
"Marc-Antoine Arnaud <[email protected]>", | ||
] | ||
repository = "https://github.com/weso/shapes-rs" | ||
homepage = "https://www.weso.es/shapes-rs/" | ||
|
||
|
||
[[bin]] | ||
path = "sx_cli/src/main.rs" | ||
name = "sx" | ||
name = "sx" | ||
|
||
[workspace] | ||
members = [ | ||
|
@@ -47,15 +48,17 @@ exclude = [ | |
# version = "0.0.6" | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Jose Emilio Labra Gayo <[email protected]>", | ||
"Ángel Iglesias Préstamo <[email protected]>", | ||
authors = [ | ||
"Jose Emilio Labra Gayo <[email protected]>", | ||
"Ángel Iglesias Préstamo <[email protected]>", | ||
"Marc-Antoine Arnaud <[email protected]>", | ||
] | ||
description = "RDF data shapes implementation in Rust" | ||
repository = "https://github.com/weso/shapes_rs" | ||
repository = "https://github.com/weso/shapes-rs" | ||
homepage = "https://www.weso.es/shapes-rs/" | ||
|
||
readme = "./README.md" | ||
keywords = ["rdf", "linked-data", "semantic-web", "shex"] | ||
keywords = ["rdf", "linked-data", "semantic-web", "shex"] | ||
categories = ["rdf"] | ||
|
||
[workspace.dependencies] | ||
|
@@ -89,4 +92,4 @@ oxrdf = "0.2.0-alpha.2" | |
serde_json = "1.0" | ||
regex = "1.10.4" | ||
tracing = "0.1" | ||
tracing-subscriber = { version = "0.3", features = [ "env-filter" ] } | ||
tracing-subscriber = { version = "0.3", features = [ "env-filter" ] } |
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 |
---|---|---|
@@ -1,10 +1,4 @@ | ||
use serde_derive::{Deserialize, Serialize}; | ||
|
||
#[derive(Deserialize, Serialize, Debug, PartialEq, Clone)] | ||
#[derive(Deserialize, Serialize, Debug, PartialEq, Clone, Default)] | ||
pub struct TapConfig {} | ||
|
||
impl Default for TapConfig { | ||
fn default() -> Self { | ||
Self {} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -18,4 +18,3 @@ tracing = "0.1" | |
|
||
[dev-dependencies] | ||
indoc = "2" | ||
|
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
Oops, something went wrong.