Skip to content

Commit

Permalink
Reexport Url and Uuid in protocol (#670)
Browse files Browse the repository at this point in the history
These are required to construct some public types, so the good practice is to reexport them so that users can use them without specifying the dependency explicitly themselves and be less likely to break on update.
  • Loading branch information
Ten0 authored Jul 15, 2024
1 parent 8a04605 commit 36f1384
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sentry-types/src/protocol/v7.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ use std::time::SystemTime;
use self::debugid::{CodeId, DebugId};
use serde::{de, Deserialize, Deserializer, Serialize, Serializer};
use thiserror::Error;
use url::Url;
use uuid::Uuid;

pub use url::Url;
pub use uuid::Uuid;

use crate::utils::{ts_rfc3339_opt, ts_seconds_float};

Expand Down

0 comments on commit 36f1384

Please sign in to comment.