f9ae897190
This introduces `relative-path`, a crate I've written for the specific purpose of providing platform-neutral operations over paths the same way they are used in URLs. This means that `///hello///` == `/hello`, which should do the same as the existing stripping minus the platform-specific path separators causing the [bug being referenced](#1169).
31 lines
665 B
TOML
31 lines
665 B
TOML
[package]
|
|
name = "site"
|
|
version = "0.1.0"
|
|
authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
|
|
edition = "2018"
|
|
include = ["src/**/*"]
|
|
|
|
[dependencies]
|
|
tera = "1"
|
|
glob = "0.3"
|
|
minify-html = "0.3.8"
|
|
rayon = "1"
|
|
serde = "1"
|
|
serde_derive = "1"
|
|
sass-rs = "0.2"
|
|
lazy_static = "1.1"
|
|
relative-path = "1"
|
|
|
|
errors = { path = "../errors" }
|
|
config = { path = "../config" }
|
|
utils = { path = "../utils" }
|
|
templates = { path = "../templates" }
|
|
front_matter = { path = "../front_matter" }
|
|
search = { path = "../search" }
|
|
imageproc = { path = "../imageproc" }
|
|
library = { path = "../library" }
|
|
link_checker = { path = "../link_checker" }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|