Files
michalvankodev-site/Cargo.toml
Michal Vanko ff5dd27618 feat: add Pi agent blog post, AI tooling, and SVG support
Add new blog post documenting a week using the Pi CLI agent for 100% agentic development. Include AI agent configuration with custom prompts and skills to streamline content creation workflow.

- Publish "Week with my-pi-agent" article with Pi logo and screenshot assets
- Add .pi/ configuration with new-blog-post prompt and review-article skill
- Create AGENTS.md with comprehensive project documentation for AI assistants
- Fix SVG rendering to skip unsupported dimension extraction in markdown filter
- Update picture generator to handle SVG files with simple img tag
- Update syntect dependency to 5.3.0 with default-fancy features
- Swap featured segment from older post to new Pi agent article
2026-04-01 23:06:03 +02:00

32 lines
867 B
TOML

[package]
name = "axum_server"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
askama = { version = "0.15" }
axum = "0.8.0"
chrono = { version = "0.4.31", features = ["serde"] }
pulldown-cmark = { version = "0.13" }
gray_matter = "0.3.0"
rss = "2.0.7"
serde = "1.0.195"
serde_json = "1.0.111"
tokio = { version = "1.35.1", features = ["full"] }
tower-http = { version = "0.6.0", features = ["trace", "fs"] }
tower-livereload = "0.10.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
image = "0.25.6"
anyhow = "1.0.86"
rayon = "1.10.0"
syntect = { version = "5.3.0", default-features = false, features = ["default-fancy"] }
indoc = "2.0.5"
askama_escape = "0.15.0"
mime_guess = "2.0.5"
[dev-dependencies]
pretty_assertions = "1"