We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If jsonschema is included using the following file:
jsonschema = { version = "0.15.2", default-features = false, features = ["resolve-file"] }
builds will fail at https://github.com/Stranger6667/jsonschema-rs/blob/master/jsonschema/src/resolver.rs#L85 because of the compile_error. I'm in a situation where I only want to load schemas off local storage and do not need http resolution access.
The same check happens at line 102 (https://github.com/Stranger6667/jsonschema-rs/blob/master/jsonschema/src/resolver.rs#L102) in order to throw an error, but we'll never reach that because of the compile error so we can't even build in the first place.
The text was updated successfully, but these errors were encountered:
#359 is most likely same as this one.
Sorry, something went wrong.
fix: Various compilation issues
d492013
Ref: #356 #358
233e1a0
Successfully merging a pull request may close this issue.
If jsonschema is included using the following file:
builds will fail at https://github.com/Stranger6667/jsonschema-rs/blob/master/jsonschema/src/resolver.rs#L85 because of the compile_error. I'm in a situation where I only want to load schemas off local storage and do not need http resolution access.
The same check happens at line 102 (https://github.com/Stranger6667/jsonschema-rs/blob/master/jsonschema/src/resolver.rs#L102) in order to throw an error, but we'll never reach that because of the compile error so we can't even build in the first place.
The text was updated successfully, but these errors were encountered: