Skip to content

Commit

Permalink
spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
chanced committed Jun 24, 2024
1 parent 23e2fd1 commit 7987a3c
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/pointer.rs
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
#[cfg(feature = "assign")]
use crate::assign::Assign;
#[cfg(feature = "delete")]
use crate::delete::Delete;
use crate::{InvalidEncodingError, ParseError, ReplaceTokenError, Token, Tokens};
use alloc::{
borrow::ToOwned,
string::{String, ToString},
vec::Vec,
};

#[cfg(feature = "delete")]
use crate::delete::Delete;

use core::{borrow::Borrow, cmp::Ordering, ops::Deref, slice, str::FromStr};
#[cfg(feature = "resolve")]
use resolve::{Resolve, ResolveMut};

use core::{borrow::Borrow, cmp::Ordering, ops::Deref, slice, str::FromStr};
use serde::{Deserialize, Serialize};
use serde_json::Value;

Expand Down

0 comments on commit 7987a3c

Please sign in to comment.