diff --git a/Cargo.toml b/Cargo.toml index fc456c28..bdaa2fca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shapes-rs" -version = "0.0.10" +version = "0.0.11" description = "RDF Data shapes implementation in Rust" license = "GPL-3.0-or-later" authors = [ @@ -59,18 +59,18 @@ keywords = ["rdf", "linked-data", "semantic-web", "shex"] categories = ["rdf"] [workspace.dependencies] -rbe = { version = "0.0.10", path = "./rbe" } -rbe_testsuite = { version = "0.0.10", path = "./rbe_testsuite" } -iri_s = { version = "0.0.10", path = "./iri_s" } -prefixmap = { version = "0.0.10", path = "./prefixmap" } -srdf = { version = "0.0.10", path = "./srdf" } -dctap = { version = "0.0.10", path = "./dctap" } -shex_ast = { version = "0.0.10", path = "./shex_ast" } -shex_testsuite = { version = "0.0.10", path = "./shex_testsuite" } -shex_validation = { version = "0.0.10", path = "./shex_validation" } -shex_compact = { version = "0.0.10", path = "./shex_compact" } -shapemap = { version = "0.0.10", path = "./shapemap" } -shacl_ast = { version = "0.0.10", path = "./shacl_ast" } +rbe = { version = "0.0.11", path = "./rbe" } +rbe_testsuite = { version = "0.0.11", path = "./rbe_testsuite" } +iri_s = { version = "0.0.11", path = "./iri_s" } +prefixmap = { version = "0.0.11", path = "./prefixmap" } +srdf = { version = "0.0.11", path = "./srdf" } +dctap = { version = "0.0.11", path = "./dctap" } +shex_ast = { version = "0.0.11", path = "./shex_ast" } +shex_testsuite = { version = "0.0.11", path = "./shex_testsuite" } +shex_validation = { version = "0.0.11", path = "./shex_validation" } +shex_compact = { version = "0.0.11", path = "./shex_compact" } +shapemap = { version = "0.0.11", path = "./shapemap" } +shacl_ast = { version = "0.0.11", path = "./shacl_ast" } [dependencies] diff --git a/dctap/Cargo.toml b/dctap/Cargo.toml index a8bafe64..177a149e 100644 --- a/dctap/Cargo.toml +++ b/dctap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dctap" -version = "0.0.10" +version = "0.0.11" authors.workspace = true description.workspace = true documentation = "https://docs.rs/dctap" diff --git a/iri_s/Cargo.toml b/iri_s/Cargo.toml index dabdbdd4..a2b7d5a5 100644 --- a/iri_s/Cargo.toml +++ b/iri_s/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "iri_s" -version = "0.0.10" +version = "0.0.11" authors.workspace = true description.workspace = true documentation = "https://docs.rs/iri_s" diff --git a/prefixmap/Cargo.toml b/prefixmap/Cargo.toml index b934b326..4ae3e5eb 100644 --- a/prefixmap/Cargo.toml +++ b/prefixmap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prefixmap" -version = "0.0.10" +version = "0.0.11" authors.workspace = true description.workspace = true documentation = "https://docs.rs/prefixmap" @@ -10,7 +10,7 @@ homepage.workspace = true repository.workspace = true [dependencies] -iri_s = { path = "../iri_s", version = "0.0.10" } +iri_s = { path = "../iri_s", version = "0.0.11" } indexmap = { version = "2", features = ["serde"] } thiserror = "1" colored = "2" diff --git a/rbe/Cargo.toml b/rbe/Cargo.toml index 4c8d3c84..37c3bed2 100755 --- a/rbe/Cargo.toml +++ b/rbe/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rbe" -version = "0.0.10" +version = "0.0.11" authors.workspace = true description.workspace = true edition.workspace = true diff --git a/rbe_testsuite/Cargo.toml b/rbe_testsuite/Cargo.toml index 92b403d8..09abb824 100755 --- a/rbe_testsuite/Cargo.toml +++ b/rbe_testsuite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rbe_testsuite" -version = "0.0.10" +version = "0.0.11" authors.workspace = true description.workspace = true documentation = "https://docs.rs/rbe_testsuite" @@ -8,7 +8,7 @@ edition.workspace = true license.workspace = true [dependencies] -rbe = { path = "../rbe", version = "0.0.10" } +rbe = { path = "../rbe", version = "0.0.11" } serde = "1.0" serde_derive = "1.0" serde_json = "1.0" diff --git a/shacl_ast/Cargo.toml b/shacl_ast/Cargo.toml index 89c9b093..6b3b78f3 100644 --- a/shacl_ast/Cargo.toml +++ b/shacl_ast/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shacl_ast" -version = "0.0.10" +version = "0.0.11" authors.workspace = true description.workspace = true documentation = "https://docs.rs/shacl_ast" @@ -10,10 +10,10 @@ homepage.workspace = true repository.workspace = true [dependencies] -srdf = { path = "../srdf", version = "0.0.10" } -iri_s = { path = "../iri_s", version = "0.0.10" } -rbe = { path = "../rbe", version = "0.0.10" } -prefixmap = { path = "../prefixmap", version = "0.0.10" } +srdf = { path = "../srdf", version = "0.0.11" } +iri_s = { path = "../iri_s", version = "0.0.11" } +rbe = { path = "../rbe", version = "0.0.11" } +prefixmap = { path = "../prefixmap", version = "0.0.11" } serde = "1" serde_derive = "1" void = "1" diff --git a/shapemap/Cargo.toml b/shapemap/Cargo.toml index da1e2c91..aa533255 100644 --- a/shapemap/Cargo.toml +++ b/shapemap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shapemap" -version = "0.0.10" +version = "0.0.11" authors.workspace = true description.workspace = true documentation = "https://docs.rs/shapemap" @@ -10,10 +10,10 @@ homepage.workspace = true repository.workspace = true [dependencies] -iri_s = { path = "../iri_s", version = "0.0.10" } -srdf = { path = "../srdf", version = "0.0.10" } -prefixmap = { path = "../prefixmap", version = "0.0.10" } -shex_ast = { path = "../shex_ast", version = "0.0.10" } +iri_s = { path = "../iri_s", version = "0.0.11" } +srdf = { path = "../srdf", version = "0.0.11" } +prefixmap = { path = "../prefixmap", version = "0.0.11" } +shex_ast = { path = "../shex_ast", version = "0.0.11" } indexmap = "2.1" thiserror = "1.0" tracing = "0.1" diff --git a/shex_ast/Cargo.toml b/shex_ast/Cargo.toml index b60bbf2d..022836c6 100644 --- a/shex_ast/Cargo.toml +++ b/shex_ast/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shex_ast" -version = "0.0.10" +version = "0.0.11" authors.workspace = true description.workspace = true documentation = "https://docs.rs/shex_ast" @@ -10,10 +10,10 @@ homepage.workspace = true repository.workspace = true [dependencies] -srdf = { path = "../srdf", version = "0.0.10" } -iri_s = { path = "../iri_s", version = "0.0.10" } -rbe = { path = "../rbe", version = "0.0.10" } -prefixmap = { path = "../prefixmap", version = "0.0.10" } +srdf = { path = "../srdf", version = "0.0.11" } +iri_s = { path = "../iri_s", version = "0.0.11" } +rbe = { path = "../rbe", version = "0.0.11" } +prefixmap = { path = "../prefixmap", version = "0.0.11" } serde = "1" serde_derive = "1" void = "1" diff --git a/shex_compact/Cargo.toml b/shex_compact/Cargo.toml index f5c7f4e2..1e3fb032 100755 --- a/shex_compact/Cargo.toml +++ b/shex_compact/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shex_compact" -version = "0.0.10" +version = "0.0.11" authors.workspace = true description.workspace = true documentation = "https://docs.rs/shex_compact" @@ -10,12 +10,12 @@ homepage.workspace = true repository.workspace = true [dependencies] -shex_ast = { path = "../shex_ast", version = "0.0.10" } -rbe = { path = "../rbe", version = "0.0.10" } -iri_s = { path = "../iri_s", version = "0.0.10" } -srdf = { path = "../srdf", version = "0.0.10" } -prefixmap = { path = "../prefixmap", version = "0.0.10" } -shapemap = { path = "../shapemap", version = "0.0.10" } +shex_ast = { path = "../shex_ast", version = "0.0.11" } +rbe = { path = "../rbe", version = "0.0.11" } +iri_s = { path = "../iri_s", version = "0.0.11" } +srdf = { path = "../srdf", version = "0.0.11" } +prefixmap = { path = "../prefixmap", version = "0.0.11" } +shapemap = { path = "../shapemap", version = "0.0.11" } nom = "7" nom-regex = "0.2" nom_locate = "4" diff --git a/shex_compact_winnow/Cargo.toml b/shex_compact_winnow/Cargo.toml index 29b6cefb..212d3b78 100755 --- a/shex_compact_winnow/Cargo.toml +++ b/shex_compact_winnow/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "shex_compact_winnow" -version = "0.0.10" +version = "0.0.11" [dependencies] -shex_ast = { path = "../shex_ast", version = "0.0.10" } -rbe = { path = "../rbe", version = "0.0.10" } -iri_s = { path = "../iri_s", version = "0.0.10" } -srdf = { path = "../srdf", version = "0.0.10" } -prefixmap = { path = "../prefixmap", version = "0.0.10" } -shapemap = { path = "../shapemap", version = "0.0.10" } +shex_ast = { path = "../shex_ast", version = "0.0.11" } +rbe = { path = "../rbe", version = "0.0.11" } +iri_s = { path = "../iri_s", version = "0.0.11" } +srdf = { path = "../srdf", version = "0.0.11" } +prefixmap = { path = "../prefixmap", version = "0.0.11" } +shapemap = { path = "../shapemap", version = "0.0.11" } thiserror = "1" colored = "2" rust_decimal = "1.32" diff --git a/shex_testsuite/Cargo.toml b/shex_testsuite/Cargo.toml index f61c157e..770f3bf7 100644 --- a/shex_testsuite/Cargo.toml +++ b/shex_testsuite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shex_testsuite" -version = "0.0.10" +version = "0.0.11" authors.workspace = true description.workspace = true documentation = "https://docs.rs/shex_testsuite" @@ -10,12 +10,12 @@ homepage.workspace = true repository.workspace = true [dependencies] -iri_s = { path = "../iri_s", version = "0.0.10" } -prefixmap = { path = "../prefixmap", version = "0.0.10" } -srdf = { path = "../srdf", version = "0.0.10" } -shex_ast = { path = "../shex_ast", version = "0.0.10" } -shex_compact = { path = "../shex_compact", version = "0.0.10" } -shex_validation = { path = "../shex_validation", version = "0.0.10" } +iri_s = { path = "../iri_s", version = "0.0.11" } +prefixmap = { path = "../prefixmap", version = "0.0.11" } +srdf = { path = "../srdf", version = "0.0.11" } +shex_ast = { path = "../shex_ast", version = "0.0.11" } +shex_compact = { path = "../shex_compact", version = "0.0.11" } +shex_validation = { path = "../shex_validation", version = "0.0.11" } serde = { version = "1.0", features = ["derive"] } # serde_derive = "1.0" serde_json = "1.0" diff --git a/shex_validation/Cargo.toml b/shex_validation/Cargo.toml index 2f26c6ca..07d574cb 100755 --- a/shex_validation/Cargo.toml +++ b/shex_validation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shex_validation" -version = "0.0.10" +version = "0.0.11" authors.workspace = true description.workspace = true documentation = "https://docs.rs/shex_validation" @@ -10,12 +10,12 @@ homepage.workspace = true repository.workspace = true [dependencies] -iri_s = { path = "../iri_s", version = "0.0.10" } -rbe = { path = "../rbe", version = "0.0.10" } -srdf = { path = "../srdf", version = "0.0.10" } -shex_ast = { path = "../shex_ast", version = "0.0.10" } -shapemap = { path = "../shapemap", version = "0.0.10" } -prefixmap = { path = "../prefixmap", version = "0.0.10" } +iri_s = { path = "../iri_s", version = "0.0.11" } +rbe = { path = "../rbe", version = "0.0.11" } +srdf = { path = "../srdf", version = "0.0.11" } +shex_ast = { path = "../shex_ast", version = "0.0.11" } +shapemap = { path = "../shapemap", version = "0.0.11" } +prefixmap = { path = "../prefixmap", version = "0.0.11" } async-recursion = "1.0.4" thiserror = "1.0" serde = "1.0" diff --git a/srdf/Cargo.toml b/srdf/Cargo.toml index 4cd66edb..25761174 100644 --- a/srdf/Cargo.toml +++ b/srdf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "srdf" -version = "0.0.10" +version = "0.0.11" authors.workspace = true description.workspace = true documentation = "https://docs.rs/srdf" @@ -10,8 +10,8 @@ homepage.workspace = true repository.workspace = true [dependencies] -iri_s = { path = "../iri_s", version = "0.0.10" } -prefixmap = { path = "../prefixmap", version = "0.0.10" } +iri_s = { path = "../iri_s", version = "0.0.11" } +prefixmap = { path = "../prefixmap", version = "0.0.11" } async-trait = "0.1.68" hashbag = "0.1.11" serde = "1.0" diff --git a/sx_cli/Cargo.toml b/sx_cli/Cargo.toml index 733b4305..e03b3f85 100755 --- a/sx_cli/Cargo.toml +++ b/sx_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sx_cli" -version = "0.0.10" +version = "0.0.11" authors.workspace = true description.workspace = true documentation = "https://www.weso.es/shapes-rs/" @@ -10,15 +10,15 @@ homepage.workspace = true repository.workspace = true [dependencies] -shex_ast = { path = "../shex_ast", version = "0.0.10" } -shex_validation = { path = "../shex_validation", version = "0.0.10" } -srdf = { path = "../srdf", version = "0.0.10" } -prefixmap = { path = "../prefixmap", version = "0.0.10" } -iri_s = { path = "../iri_s", version = "0.0.10" } -shapemap = { path = "../shapemap", version = "0.0.10" } -shex_compact = { path = "../shex_compact", version = "0.0.10" } -shacl_ast = { path = "../shacl_ast", version = "0.0.10" } -dctap = { path = "../dctap", version = "0.0.10" } +shex_ast = { path = "../shex_ast", version = "0.0.11" } +shex_validation = { path = "../shex_validation", version = "0.0.11" } +srdf = { path = "../srdf", version = "0.0.11" } +prefixmap = { path = "../prefixmap", version = "0.0.11" } +iri_s = { path = "../iri_s", version = "0.0.11" } +shapemap = { path = "../shapemap", version = "0.0.11" } +shex_compact = { path = "../shex_compact", version = "0.0.11" } +shacl_ast = { path = "../shacl_ast", version = "0.0.11" } +dctap = { path = "../dctap", version = "0.0.11" } serde = "1.0" serde_derive = "1.0"