Files
thoughts/crates/application/Cargo.toml
Gabriel Kaszewski 6dbd4dafdc
Some checks failed
lint / lint (push) Has been cancelled
test / unit (push) Has been cancelled
fix: persist note_extensions on AP Update activity
on_update was discarding custom fields (posterUrl, movieTitle, etc),
so remote notes from movies-diary lost posters after Update delivery.
2026-06-04 23:28:58 +02:00

25 lines
695 B
TOML

[package]
name = "application"
version = "0.1.0"
edition = "2021"
[dependencies]
domain = { workspace = true }
activitypub = { workspace = true }
async-trait = { workspace = true }
thiserror = { workspace = true }
uuid = { workspace = true }
chrono = { workspace = true }
sha2 = "0.10"
hex = "0.4"
tracing = { workspace = true }
url = { workspace = true }
tokio = { workspace = true }
bytes = { workspace = true }
futures = { workspace = true }
[dev-dependencies]
tokio = { workspace = true, features = ["full"] }
domain = { workspace = true, features = ["test-helpers"] }
serde_json = { workspace = true }