Skip to content

Commit

Permalink
Fixed imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
cjbeery24 committed Aug 12, 2024
1 parent 90c4c52 commit 0380e88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/cdk/src/mint_url.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use core::fmt;
use core::str::FromStr;

use serde::{Deserialize, Serialize};
use serde::{Deserialize, Deserializer, Serialize};
use thiserror::Error;
use url::{ParseError, Url};

Expand All @@ -19,7 +19,7 @@ pub enum Error {
}

/// MintUrl Url
#[derive(Debug, Clone, Default, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)]
#[derive(Debug, Clone, Default, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize)]
pub struct MintUrl(String);

impl MintUrl {
Expand Down

0 comments on commit 0380e88

Please sign in to comment.