mirror of
https://github.com/getzola/zola
synced 2024-12-04 17:39:20 +00:00
Remove unused deps thanks to cargo-machete
This commit is contained in:
parent
44b2f99ab8
commit
844576e32e
4 changed files with 0 additions and 10 deletions
5
Cargo.lock
generated
5
Cargo.lock
generated
|
@ -675,7 +675,6 @@ name = "errors"
|
|||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"libs",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -1580,10 +1579,8 @@ dependencies = [
|
|||
"errors",
|
||||
"insta",
|
||||
"libs",
|
||||
"link_checker",
|
||||
"pest",
|
||||
"pest_derive",
|
||||
"serde",
|
||||
"templates",
|
||||
"utils",
|
||||
]
|
||||
|
@ -3912,7 +3909,6 @@ dependencies = [
|
|||
"atty",
|
||||
"clap 3.1.6",
|
||||
"clap_complete",
|
||||
"content",
|
||||
"ctrlc",
|
||||
"errors",
|
||||
"hyper",
|
||||
|
@ -3922,7 +3918,6 @@ dependencies = [
|
|||
"open",
|
||||
"pathdiff",
|
||||
"same-file",
|
||||
"search",
|
||||
"site",
|
||||
"termcolor",
|
||||
"time 0.3.9",
|
||||
|
|
|
@ -39,9 +39,7 @@ mime_guess = "2.0"
|
|||
|
||||
site = { path = "components/site" }
|
||||
errors = { path = "components/errors" }
|
||||
content = { path = "components/content" }
|
||||
utils = { path = "components/utils" }
|
||||
search = { path = "components/search" }
|
||||
libs = { path = "components/libs" }
|
||||
|
||||
|
||||
|
|
|
@ -4,5 +4,4 @@ version = "0.1.0"
|
|||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
libs = { path = "../libs" }
|
||||
anyhow = "1.0.56"
|
||||
|
|
|
@ -5,14 +5,12 @@ edition = "2021"
|
|||
include = ["src/**/*"]
|
||||
|
||||
[dependencies]
|
||||
serde = {version = "1.0", features = ["derive"] }
|
||||
pest = "2"
|
||||
pest_derive = "2"
|
||||
|
||||
errors = { path = "../errors" }
|
||||
utils = { path = "../utils" }
|
||||
config = { path = "../config" }
|
||||
link_checker = { path = "../link_checker" }
|
||||
libs = { path = "../libs" }
|
||||
|
||||
[dev-dependencies]
|
||||
|
|
Loading…
Reference in a new issue