feat(rust): Add Options::from_directory_and_schemas()#115
Open
jan-auer wants to merge 1 commit into
Open
Conversation
- Re-exports `serde_json::Value` as `pub use` so callers don't need a direct `serde_json` dependency to use the return type. - Adds `Options::from_directory_and_schemas()` for loading schemas from in-memory strings and values from an explicit directory path (useful for tests and non-standard layouts). - Refactors `from_schemas()` to delegate to `from_directory_and_schemas()`, removing duplicated construction logic. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
07cbea4 to
1156562
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds
Options::from_directory_and_schemas()for loading schemas from in-memory strings and values from an explicit directory path. Useful for tests and non-standard deployment layouts where the schema is embedded but values live in a specific directory.Refactors
from_schemas()to delegate to it, eliminating duplicated construction logic. Also re-exportsserde_json::Valueaspub useas a side-effect of the refactor, so callers don't need a directserde_jsondependency to work with option values.