-
Notifications
You must be signed in to change notification settings - Fork 185
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
Add parity scale codec #547
Open
Gauthamastro
wants to merge
39
commits into
paupino:master
Choose a base branch
from
Polkadex-Substrate:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
27c62bc
Add parity scale codec
Gauthamastro 394d8f8
Add scale-info too
Gauthamastro 204d127
Add scale-info too
Gauthamastro 610096f
Make from_parts_raw
Gauthamastro b896337
Merge branch 'master' into master
Gauthamastro 25f0849
Make deps in alphabetical order
Gauthamastro 031d203
Clippy/fix ruleset (#598)
mkatychev deeb242
Fixes issue with truncating implicitly rounding in some cases (#600)
paupino 091d715
added new rkyv (#597)
mkatychev 67efda9
Version 1.31.0 (#601)
paupino 29d3e2e
Specify version on macro dependency
paupino a6d5caf
Drop unnecessary byteorder dependency (#603)
psychon 951512d
Fixes issue with is_integer failing on decimal bounds (#605)
paupino 03ce442
Version 1.32 (#606)
paupino f18e57c
Introduce breaking change check (#608)
paupino aacdefd
Remove semver checks from build and put into makefile (#609)
paupino 1686b69
Fixes issue whereby scale 29 is required however is optimized away (#…
paupino ede308d
Upgrade Borsh to resolve vulnerability (#621)
paupino 6cfccf3
deserializes empty string into None Option (#607)
gai6948 1c80137
Version 1.33.0 (#622)
paupino c3802db
Fixes precision issue with to_f64 with some numbers without fractions…
paupino c4d4d3e
Version 1.33.1 (#626)
paupino 829355a
Introduces `macros` feature and cleans up serde documentation a littl…
paupino f02f5ac
Update readme to add comparisons (#630)
paupino d323dd4
Remove cargo-edit reference from README (#633)
robjtede 10ee2ee
Auto-document feature guarded items (#634)
robjtede 80e9f08
Reimplement pow function for integer exponent. (#638)
schungx aa2c3d3
Fixes error handling when second decimal place at tail position (#636)
paupino bacc60b
Version 1.34 (#640)
paupino 999bb02
Force version number during macro resolution (#642)
paupino 179039a
Rollback macros feature flag due to dependency resolution issues (#643)
paupino d72e787
Bump macros version
paupino 4666555
Add parity scale codec
Gauthamastro 65ec77a
Add scale-info too
Gauthamastro e7511dc
Add scale-info too
Gauthamastro 62cf912
Make from_parts_raw
Gauthamastro d778de7
Make deps in alphabetical order
Gauthamastro bbcc77a
Merge remote-tracking branch 'origin/master'
Gauthamastro e1b54cd
Update hashbrown
Gauthamastro 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 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
1 | ||
30 | ||
0 | ||
34 | ||
2 |
This file contains 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,11 @@ | ||
[target.'cfg(all())'] | ||
rustflags = [ | ||
# BEGIN - Embark standard lints v0.4 | ||
# do not change or add/remove here, but one can add exceptions after this section | ||
# for more info see: <https://github.com/EmbarkStudios/rust-ecosystem/issues/59> | ||
"-Aclippy::inconsistent_digit_grouping", | ||
"-Aclippy::large_digit_groups", | ||
"-Aclippy::excessive_precision", | ||
"-Aclippy::zero_prefixed_literal", | ||
] | ||
|
This file contains 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 |
---|---|---|
|
@@ -22,3 +22,4 @@ Cargo.lock | |
artifacts | ||
corpus | ||
target | ||
.vscode/settings.json |
This file contains 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 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 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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We're starting to use the updated format for feature dependencies: