release: 1.0.0

fix: cargo dist
This commit is contained in:
Per Stark
2026-01-11 18:37:07 +01:00
parent db43be1606
commit 17f252e630
54 changed files with 760 additions and 631 deletions
+1 -5
View File
@@ -253,11 +253,7 @@ async fn ensure_runtime_indexes_inner(
Ok(())
}
async fn get_index_status(
db: &SurrealDbClient,
index_name: &str,
table: &str,
) -> Result<String> {
async fn get_index_status(db: &SurrealDbClient, index_name: &str, table: &str) -> Result<String> {
let info_query = format!("INFO FOR INDEX {index_name} ON TABLE {table};");
let mut info_res = db
.client