PostgreSQL-backed TaskStore implementation.
Requires the postgres feature flag. Uses sqlx for async PostgreSQL access.
§Example
use a2a_protocol_server::store::PostgresTaskStore;
let store = PostgresTaskStore::new("postgres://user:pass@localhost/a2a").await?;