Skip to content

Commit 9d6c3c8

Browse files
committed
Drop unused import from #138
1 parent 87401e3 commit 9d6c3c8

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/json_schema/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,6 @@ pub use types::*;
105105
mod parsing;
106106
pub mod types;
107107

108-
pub use types::*;
109-
110108
use crate::Result;
111109

112110
/// Generates a regular expression string from given JSON schema string.

src/json_schema/parsing.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ use regex::escape;
66
use serde_json::{json, Value};
77

88
use crate::json_schema::types;
9-
use crate::Error;
10-
use crate::Result;
9+
use crate::{Error, Result};
1110

1211
pub(crate) struct Parser<'a> {
1312
root: &'a Value,

0 commit comments

Comments
 (0)