diff --git a/src/store.rs b/src/store.rs index 0feed2b..196dcb8 100644 --- a/src/store.rs +++ b/src/store.rs @@ -18,7 +18,7 @@ pub struct IdCoopStore { impl IdCoopStore { pub async fn connect(conn_str: &str) -> eyre::Result { - // TODO We might support SQLite as well, so we might want to use an 'AnyPool' after + // TODO(sqlite) We might support SQLite as well, so we might want to use an 'AnyPool' after // installing the requisite drivers here let db_pool = PgPool::connect(conn_str) .await diff --git a/src/web.rs b/src/web.rs index 5d008fe..e457756 100644 --- a/src/web.rs +++ b/src/web.rs @@ -110,7 +110,7 @@ pub async fn serve( .layer(Extension(config)) .layer(Extension(secrets)) .layer(Extension(store)) - // TODO this limit should be configurable + // TODO(v0.0.2) this limit should be configurable .layer(Extension(Arc::new(PasswordHashInflightLimiter::new(1)))) .layer(client_ip_source.into_extension()) .layer(Extension(Arc::new(ratelimiters)))