Compare commits

..

No commits in common. "4c3690e5295176ed8292b0abd86c9a94bdb63e4e" and "2bdf33d734e548ce90d303d1763892f2a23621ce" have entirely different histories.

2 changed files with 1 additions and 20 deletions

View file

@ -3,11 +3,6 @@ name = "zora"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
[dependencies]
pico-args = "0.5.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies.ureq] [dependencies]
version = "2.5.0"
features = ["cookies", "encoding_rs", "json", "serde_json"]

View file

@ -1,14 +0,0 @@
use pico_args::Arguments;
fn main() {
let args = Arguments::from_env();
// Get path to file to post from args.
// Read title from file's metadata.
// Read Zola config.toml.
// Determine URL to selected file using config data and file path (strip off `content/`, change .md to .html)
// Read cached Mastodon app data.
// If none, register on theres.life.
// Login as IslandUsurper.
// Post new status with title and URL, with #Bible #journal hashtags.
}