-
Notifications
You must be signed in to change notification settings - Fork 985
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add libs subcrate * Remove last direct lazy_static usage * Update pinned ci version * Update deps
- Loading branch information
Showing
84 changed files
with
625 additions
and
578 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,19 +1,12 @@ | ||
[package] | ||
name = "config" | ||
version = "0.1.0" | ||
authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"] | ||
edition = "2018" | ||
edition = "2021" | ||
include = ["src/**/*"] | ||
|
||
[dependencies] | ||
toml = "0.5" | ||
serde = "1" | ||
serde_derive = "1" | ||
chrono = "0.4" | ||
globset = "0.4" | ||
lazy_static = "1" | ||
syntect = "4" | ||
unic-langid = "0.9" | ||
serde = {version = "1.0", features = ["derive"] } | ||
|
||
errors = { path = "../errors" } | ||
utils = { path = "../utils" } | ||
libs = { path = "../libs" } |
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
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,11 +1,7 @@ | ||
[package] | ||
name = "errors" | ||
version = "0.1.0" | ||
authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"] | ||
edition = "2018" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
tera = "1" | ||
toml = "0.5" | ||
image = "0.23" | ||
syntect = "4" | ||
libs = { path = "../libs" } |
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,21 +1,14 @@ | ||
[package] | ||
name = "front_matter" | ||
version = "0.1.0" | ||
authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"] | ||
edition = "2018" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
tera = "1" | ||
chrono = "0.4" | ||
serde = "1" | ||
serde_derive = "1" | ||
serde_yaml = "0.8" | ||
toml = "0.5" | ||
regex = "1" | ||
lazy_static = "1" | ||
serde = {version = "1.0", features = ["derive"] } | ||
|
||
errors = { path = "../errors" } | ||
utils = { path = "../utils" } | ||
libs = { path = "../libs" } | ||
|
||
[dev-dependencies] | ||
test-case = "1" | ||
test-case = "1" # TODO: can we solve that usecase in src/page.rs in a simpler way? A custom macro_rules! maybe |
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,24 +1,15 @@ | ||
[package] | ||
name = "imageproc" | ||
version = "0.1.0" | ||
authors = ["Vojtěch Král <vojtech@kral.hk>"] | ||
edition = "2018" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
lazy_static = "1" | ||
regex = "1.0" | ||
tera = "1" | ||
image = "0.23" | ||
rayon = "1" | ||
webp = "0.2" | ||
serde = { version = "1", features = ["derive"] } | ||
svg_metadata = "0.4.1" | ||
|
||
errors = { path = "../errors" } | ||
utils = { path = "../utils" } | ||
config = { path = "../config" } | ||
libs = { path = "../libs" } | ||
|
||
[dev-dependencies] | ||
# TODO: prune | ||
serde_json = "1" | ||
site = { path = "../site" } | ||
tempfile = "3" |
Oops, something went wrong.