We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87401e3 commit 9d6c3c8Copy full SHA for 9d6c3c8
src/json_schema/mod.rs
@@ -105,8 +105,6 @@ pub use types::*;
105
mod parsing;
106
pub mod types;
107
108
-pub use types::*;
109
-
110
use crate::Result;
111
112
/// Generates a regular expression string from given JSON schema string.
src/json_schema/parsing.rs
@@ -6,8 +6,7 @@ use regex::escape;
6
use serde_json::{json, Value};
7
8
use crate::json_schema::types;
9
-use crate::Error;
10
-use crate::Result;
+use crate::{Error, Result};
11
12
pub(crate) struct Parser<'a> {
13
root: &'a Value,
0 commit comments