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.
refactor: improve code quality based on clippy
- Loading branch information
1 parent
5159ed5
commit 0822918
Showing
42 changed files
with
295 additions
and
515 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,17 @@ 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]>", | ||
] | ||
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 +47,16 @@ 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]>", | ||
] | ||
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 +90,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
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
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
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
Oops, something went wrong.