Rename all crates to start with letterbox-

This commit is contained in:
2025-02-13 09:48:24 -08:00
parent d1beaded09
commit 2076596f50
15 changed files with 82 additions and 73 deletions

View File

@@ -6,8 +6,8 @@ use async_graphql::{
SimpleObject, Union,
};
use cacher::FilesystemCacher;
use letterbox_notmuch::Notmuch;
use log::info;
use notmuch::Notmuch;
use serde::{Deserialize, Serialize};
use sqlx::postgres::PgPool;
use tokio::join;
@@ -283,7 +283,7 @@ pub struct QueryRoot;
impl QueryRoot {
async fn version<'ctx>(&self, _ctx: &Context<'ctx>) -> Result<String, Error> {
build_info::build_info!(fn bi);
Ok(shared::build_version(bi))
Ok(letterbox_shared::build_version(bi))
}
#[instrument(skip_all, fields(query=query))]
#[instrument(skip_all, fields(query=query, request_id=request_id()))]