Skip to content

Commit

Permalink
fix up lost re-export of v1 Timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
KodrAus committed Oct 8, 2022
1 parent 399e878 commit 8c17f33
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/v1.rs
Expand Up @@ -3,9 +3,10 @@
//! This module is soft-deprecated. Instead of using the `Context` type re-exported here,
//! use the one from the crate root.

use crate::{Builder, Timestamp, Uuid};
use crate::{Builder, Uuid};

pub use crate::timestamp::context::Context;
#[deprecated(note = "use types from the crate root instead")]
pub use crate::{timestamp::context::Context, Timestamp};

impl Uuid {
/// Create a new version 1 UUID using the current system time and node ID.
Expand Down

0 comments on commit 8c17f33

Please sign in to comment.