Skip to content

Commit

Permalink
fix: deserialize owned import at wrong place (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbcfd authored Aug 17, 2023
1 parent d8633e9 commit b904924
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use ceramic_event::{
Base64String, Cid, DagCborEncoded, EventArgs, Jws, MultiBase36String, Signer, StreamId,
StreamIdType,
};
use serde::{de::DeserializeOwned, Serialize};
use serde::Serialize;
use std::str::FromStr;

use crate::api::ModelData;
Expand Down Expand Up @@ -247,6 +247,7 @@ pub mod remote {
use super::*;
use crate::api::Pagination;
use crate::query::FilterQuery;
use serde::de::DeserializeOwned;
pub use url::{ParseError, Url};

#[derive(Clone)]
Expand Down

0 comments on commit b904924

Please sign in to comment.