mirror of
https://github.com/Brandon-Rozek/website-toots.git
synced 2026-01-19 15:30:25 +00:00
Rust implementation
TODO: Make sure that JSON file writes are equivalent for less commit noise
This commit is contained in:
parent
d0571cfc2a
commit
bc01b85f87
7 changed files with 1989 additions and 7 deletions
20
.scripts/Cargo.toml
Normal file
20
.scripts/Cargo.toml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
[package]
|
||||
name = "website-toots"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
tera = "1"
|
||||
reqwest = { version = "0.11", features = ["json"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
||||
regex = "1.10.5"
|
||||
|
||||
[[bin]]
|
||||
name = "retrieve_toots"
|
||||
path = "src/retrieve_toots.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "generate_md"
|
||||
path = "src/generate_md.rs"
|
||||
Loading…
Add table
Add a link
Reference in a new issue