use qualified crate names from within workspace

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2025-03-27 03:34:33 +00:00
parent c99f5770a0
commit 7f448d88a4
9 changed files with 28 additions and 24 deletions

View file

@ -5,7 +5,7 @@ use std::{
sync::{Arc, OnceLock},
};
use conduwuit::{config::Config, debug, trace};
use conduwuit_core::{config::Config, debug, trace};
use sentry::{
Breadcrumb, ClientOptions, Level,
types::{
@ -43,7 +43,7 @@ fn options(config: &Config) -> ClientOptions {
traces_sample_rate: config.sentry_traces_sample_rate,
debug: cfg!(debug_assertions),
release: sentry::release_name!(),
user_agent: conduwuit::version::user_agent().into(),
user_agent: conduwuit_core::version::user_agent().into(),
attach_stacktrace: config.sentry_attach_stacktrace,
before_send: Some(Arc::new(before_send)),
before_breadcrumb: Some(Arc::new(before_breadcrumb)),