Skip to content

Commit d276832

Browse files
committed
Bump dependencies
1 parent 728bbdf commit d276832

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "blades"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Maroš Grego <maros@grego.site>"]
55
edition = "2018"
66
description = "Blazing fast dead simple static site generator"
@@ -11,16 +11,16 @@ license = "GPL-3.0-or-later"
1111
readme = "README.md"
1212

1313
[dependencies]
14-
toml = "0.5.6"
15-
ramhorns = "0.10"
14+
toml = "0.5.7"
15+
ramhorns = "0.10.1"
1616
beef = { version = "0.4.4", features = ["impl_serde"]}
17-
serde = { version = "1.0.114", features = ["derive"] }
17+
serde = { version = "1.0.116", features = ["derive"] }
1818
custom_error = "1.8.0"
19-
chrono = {version = "0.4.12", features = ["serde"] }
20-
ahash = "0.4"
19+
chrono = {version = "0.4.19", features = ["serde"] }
20+
ahash = "0.5.1"
2121
parking_lot = "0.11"
22-
rayon = "1.3.1"
23-
structopt = "0.3.18"
22+
rayon = "1.4.1"
23+
structopt = "0.3.20"
2424

2525
[profile.release]
2626
lto = true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ If you would like to have it included in your favourite package repository, [sub
5353

5454
Then, you can run the executable `blades` with the following subcommands:
5555
* `init`: Initialise the site in the current directory, creating the basic files and folders
56-
* `build`: Build the site according to config, content, templates and themes in the currend directory
56+
* `build`: Build the site according to config, content, templates and themes in the current directory
5757
* `colocate`: Move the assets from the "assets" directory and from the theme, if one is used, into the output directory
5858
* `all`: Build the site and colocate the assets
5959
* `lazy`: Build the site and (colocate assets only if the theme was switched) [default]

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ mod types;
2222
pub use config::Config;
2323
pub use error::{Error, Result};
2424
pub use page::Page;
25-
pub use sources::Sources;
25+
pub use sources::{Source, Sources};
2626
pub use tasks::{cleanup, colocate_assets, render_meta};
2727
pub use taxonomies::Taxonomy;
2828
pub use types::{MutSet, Templates};

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ enum Cmd {
5151
Init,
5252
/// Start creating a new page
5353
New,
54-
/// Build the site according to config, content, templates and themes in the currend directory
54+
/// Build the site according to config, content, templates and themes in the current directory
5555
Build,
5656
/// Move the assets from the "assets" directory and from the theme, if one is used,
5757
/// into the output directory

src/tasks.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ pub fn colocate_assets(config: &Config) -> Result {
120120
}
121121

122122
/// Delete all the pages that were present in the previous render, but not the current one.
123-
/// Then, write all the paths that were rendered to the file `.razor`.
123+
/// Then, write all the paths that were rendered to the file `filelist`
124124
pub fn cleanup(rendered: MutSet, filelist: &str) -> Result {
125125
let rendered = rendered.into_inner();
126126
if let Ok(f) = File::open(filelist) {

src/templates/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</author>
1313
{{/author}}
1414
<subtitle>{{description}}</subtitle>
15-
<generator>razor</generator>
15+
<generator>blades</generator>
1616
{{#date}}<updated>{{y}}-{{m}}-{{d}}T{{H}}:{{M}}:{{S}}Z</updated>{{/date}}
1717
{{/site}}
1818
{{#pages}}

src/templates/rss.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<link>{{url}}</link>
77
<description>{{description}}</description>
88
<ttl>1440</ttl>
9-
<generator>razor</generator>
9+
<generator>blades</generator>
1010
{{#date}}<pubDate>{{a}}, {{d}} {{b}} {{y}} {{H}}:{{M}}:{{S}} GMT</pubDate>{{/date}}
1111
{{#author}}{{#email}}
1212
<managingEditor>{{email}}</managingEditor>

0 commit comments

Comments
 (0)