Skip to content

Commit 36f1384

Browse files
authored
Reexport Url and Uuid in protocol (#670)
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.
1 parent 8a04605 commit 36f1384

File tree

1 file changed

+3
-2
lines changed
  • sentry-types/src/protocol

1 file changed

+3
-2
lines changed

sentry-types/src/protocol/v7.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ use std::time::SystemTime;
1818
use self::debugid::{CodeId, DebugId};
1919
use serde::{de, Deserialize, Deserializer, Serialize, Serializer};
2020
use thiserror::Error;
21-
use url::Url;
22-
use uuid::Uuid;
21+
22+
pub use url::Url;
23+
pub use uuid::Uuid;
2324

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

0 commit comments

Comments
 (0)