-
-
Notifications
You must be signed in to change notification settings - Fork 48
Partial JSON parsing support trailing strings #101
New issue
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
Merged
Merged
Changes from 9 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
50706b3
Partial JSON parsing support trailing strings, fix #82
samuelcolvin bc8b7b6
add Jiter.with_allow_inf_nan and with_allow_partial_strings
samuelcolvin 23fb3aa
add PartialMode
samuelcolvin fdc07ac
fix docstrings
samuelcolvin ccc9b07
avoid impl into PartialMode
samuelcolvin 4d97eb8
Merge branch 'main' into partial-json-partial-strings
samuelcolvin 161d68b
bump
samuelcolvin fc96580
add codecov token
samuelcolvin 18d9e5e
Merge branch 'main' into partial-json-partial-strings
samuelcolvin 2bb9fc1
rename kwargs and PythonParse
samuelcolvin 26b2c2e
add coverage for python package
samuelcolvin 60347cf
fix tests
samuelcolvin ef1b244
try using pip install -e
samuelcolvin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| .DEFAULT_GOAL := all | ||
|
|
||
| .PHONY: format | ||
| format: | ||
| @cargo fmt --version | ||
| cargo fmt | ||
|
|
||
| .PHONY: lint | ||
| lint: | ||
| @cargo clippy --version | ||
| cargo clippy -- -D warnings | ||
| cargo doc | ||
|
|
||
| .PHONY: test | ||
| test: | ||
| cargo test | ||
|
|
||
| .PHONY: python-dev | ||
| python-dev: | ||
| maturin develop -m crates/jiter-python/Cargo.toml | ||
|
|
||
| .PHONY: test-python | ||
| test-python: python-dev | ||
| pytest crates/jiter-python/tests | ||
|
|
||
| .PHONY: bench | ||
| bench: | ||
| cargo bench -p jiter -F python | ||
|
|
||
| .PHONY: fuzz | ||
| fuzz: | ||
| cargo +nightly fuzz run --fuzz-dir crates/fuzz compare_to_serde --release | ||
|
|
||
| .PHONY: fuzz-skip | ||
| fuzz-skip: | ||
| cargo +nightly fuzz run --fuzz-dir crates/fuzz compare_skip --release | ||
|
|
||
| .PHONY: all | ||
| all: format lint test test-python |
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.