Skip to content

Commit

Permalink
Move og image generation go arneos
Browse files Browse the repository at this point in the history
  • Loading branch information
bahlo committed Nov 11, 2024
1 parent 1447cac commit 02e589b
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions crates/arneos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ comrak = { version = "0.29.0", default-features = false, features = [
] }
crowbook-text-processing = "1"
gray_matter = { version = "0.2", default-features = false, features = ["yaml"] }
html-escape = "0.2"
regex = "1"
resvg = "0.44"
serde = { version = "1", features = ["derive"] }
syntect = "5.2.0"
tiny-skia = "0.11"
url = { version = "2.5", features = ["serde"] }
usvg = "0.44"
1 change: 1 addition & 0 deletions crates/arneos/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
pub mod content;
pub mod og;
File renamed without changes.
6 changes: 4 additions & 2 deletions crates/cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ use clap::Parser;
use std::{env, fs, path::Path, process::Command};

mod automate;
mod og;
mod watch;
mod webmentions;

use arneos::content::{Content, Item};
use arneos::{
content::{Content, Item},
og,
};
use automate::{automate_before_sha, automate_path};
use webmentions::send_webmentions;

Expand Down

0 comments on commit 02e589b

Please sign in to comment.