-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
45 additions
and
23 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
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,6 +1,6 @@ | ||
[package] | ||
name = "rio_api" | ||
version = "0.8.4" | ||
version = "0.8.5" | ||
authors = ["Tpt <[email protected]>", "Pierre-Antoine Champin <[email protected]>"] | ||
license = "Apache-2.0" | ||
readme = "../README.md" | ||
|
@@ -10,7 +10,7 @@ description = """ | |
Common data structures for RDF formats parsers and serializers | ||
""" | ||
edition = "2021" | ||
rust-version = "1.60" | ||
rust-version = "1.75" | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true | ||
|
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,12 +1,9 @@ | ||
[licenses] | ||
unlicensed = "deny" | ||
allow = [ | ||
"MIT", | ||
"Apache-2.0", | ||
"Unicode-DFS-2016" | ||
"MIT", | ||
] | ||
default = "deny" | ||
|
||
[bans] | ||
multiple-versions = "warn" | ||
wildcards = "deny" | ||
[sources] | ||
unknown-registry = "deny" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "rio_testsuite" | ||
version = "0.8.4" | ||
version = "0.8.5" | ||
authors = ["Tpt <[email protected]>"] | ||
license = "Apache-2.0" | ||
readme = "../README.md" | ||
|
@@ -12,9 +12,9 @@ edition = "2021" | |
publish = false | ||
|
||
[dependencies] | ||
rio_api = { version = "0.8", path="../api" } | ||
rio_turtle = { version = "0.8", path="../turtle" } | ||
rio_xml = { version = "0.8", path="../xml" } | ||
rio_api = { version = "0.8", path = "../api" } | ||
rio_turtle = { version = "0.8", path = "../turtle" } | ||
rio_xml = { version = "0.8", path = "../xml" } | ||
oxiri = "0.2" | ||
permutohedron = "0.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rio_turtle" | ||
version = "0.8.4" | ||
version = "0.8.5" | ||
authors = ["Tpt <[email protected]>", "Pierre-Antoine Champin <[email protected]>"] | ||
license = "Apache-2.0" | ||
readme = "../README.md" | ||
|
@@ -10,7 +10,7 @@ description = """ | |
RDF Turtle, Trig, N-Triples and N-Quads parsers and serializers | ||
""" | ||
edition = "2021" | ||
rust-version = "1.60" | ||
rust-version = "1.75" | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true | ||
|
@@ -22,4 +22,4 @@ generalized = ["rio_api/generalized"] | |
[dependencies] | ||
oxilangtag = "0.1" | ||
oxiri = "0.2" | ||
rio_api = { version = "0.8", path="../api" } | ||
rio_api = { version = "0.8", path = "../api" } |
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,5 @@ | ||
[files] | ||
extend-exclude = ["**/*.svg"] | ||
|
||
[default.extend-words] | ||
pn = "pn" # Common abbreviation in Turtle grammar |
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,6 +1,6 @@ | ||
[package] | ||
name = "rio_xml" | ||
version = "0.8.4" | ||
version = "0.8.5" | ||
authors = ["Tpt <[email protected]>"] | ||
license = "Apache-2.0" | ||
readme = "../README.md" | ||
|
@@ -10,7 +10,7 @@ description = """ | |
RDF/XML parser and serializer | ||
""" | ||
edition = "2021" | ||
rust-version = "1.61" | ||
rust-version = "1.75" | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true | ||
|
@@ -21,5 +21,5 @@ default = [] | |
[dependencies] | ||
oxilangtag = "0.1" | ||
oxiri = "0.2" | ||
rio_api = { version = "0.8", path="../api" } | ||
rio_api = { version = "0.8", path = "../api" } | ||
quick-xml = "0.36" |
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