-
Notifications
You must be signed in to change notification settings - Fork 1
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
[pull] master from paritytech:master #6
base: master
Are you sure you want to change the base?
Commits on Apr 10, 2020
-
keccak-hash: add keccak256_range and keccak512_range functions (#370)
* keccak-hash: add keccak256_range and keccak512_range functions * keccak-hash: prep for release * keccak-hash: update the date in changelog * keccak-hash: more docs * Update keccak-hash/src/lib.rs Co-Authored-By: David <[email protected]> Co-authored-by: David <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0424206 - Browse repository at this point
Copy the full SHA 0424206View commit details -
Configuration menu - View commit details
-
Copy full SHA for 53b47b7 - Browse repository at this point
Copy the full SHA 53b47b7View commit details
Commits on Apr 11, 2020
-
[parity-crypto] Release 0.6.1 (#373)
…and fix construction of `ZeroesAllowedMessage`
Configuration menu - View commit details
-
Copy full SHA for 13ae5be - Browse repository at this point
Copy the full SHA 13ae5beView commit details -
keccak-hash: fix bench and add one for range (#372)
* keccak-hash: fix bench and add one for range * fmt
Configuration menu - View commit details
-
Copy full SHA for 0bba566 - Browse repository at this point
Copy the full SHA 0bba566View commit details
Commits on Apr 14, 2020
-
parity-util-mem: fix for windows (#375)
* parity-util-mem: try to fix compilation on windows * appveyor: test parity-util-mem with no-std * appveyor: test parity-util-mem with default features * fmt
Configuration menu - View commit details
-
Copy full SHA for ef69ef1 - Browse repository at this point
Copy the full SHA ef69ef1View commit details
Commits on Apr 15, 2020
-
* parity-util-mem: bump minor version * parity-util-mem: update the changelog * parity-util-mem: update README
Configuration menu - View commit details
-
Copy full SHA for b99e466 - Browse repository at this point
Copy the full SHA b99e466View commit details -
kvdb-rocksdb: optimize and rename iter_from_prefix (#365)
* kvdb: small cleanup * kvdb-rocksdb: rename and optimize iter_with_prefix * fix links in changelogs * apply suggestions from code review * 🤦 * fmt
Configuration menu - View commit details
-
Copy full SHA for a52fbeb - Browse repository at this point
Copy the full SHA a52fbebView commit details
Commits on Apr 23, 2020
-
Add arbitrary trait implementation (#378)
* Add arbitrary trait implementation Signed-off-by: Kirk Baird <[email protected]> * Add arbitrary trait to Ethereum Types Signed-off-by: Kirk Baird <[email protected]> * Tidy up creation of empty array Signed-off-by: Kirk Baird <[email protected]> * Resolve minor issues Signed-off-by: Kirk Baird <[email protected]> * Update README.md and fix features Signed-off-by: Kirk Baird <[email protected]> * Add arbitrary support for Uint, ethbool and primitive-types Signed-off-by: Kirk Baird <[email protected]> * Update add ethbloom/arbitrary Co-Authored-By: Andronik Ordian <[email protected]> * Update uint/README.md Co-Authored-By: David <[email protected]> * Rewrite arbitrary comments Signed-off-by: Kirk Baird <[email protected]> * Update fixed-hash/src/hash.rs Co-Authored-By: David <[email protected]> * Update fixed-hash/src/hash.rs Co-Authored-By: David <[email protected]> Co-authored-by: Andronik Ordian <[email protected]> Co-authored-by: David <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6bb24f2 - Browse repository at this point
Copy the full SHA 6bb24f2View commit details -
Fix limit prefix delete case (#368)
* Fix limit prefix delete case. Warning this uses iter by prefix for it in rocksdb. * Comment * Changes needed for merging, end_prefix returning option in new code and renaming of iter with prefix. * reduce cornercase iteration windows size. * extract common iter prefix delete corner case code. * Update kvdb-rocksdb/src/lib.rs Co-Authored-By: Andronik Ordian <[email protected]> * Remove unused code, there can be call to 'delete_range_cf' on empty range, but that is fine. Co-authored-by: Andronik Ordian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 692aa9d - Browse repository at this point
Copy the full SHA 692aa9dView commit details
Commits on Apr 27, 2020
-
uint: fix UB in uint::from_big_endian (#381)
* uint: fix UB in uint::from_fig_endian * uint: add regression tests
Configuration menu - View commit details
-
Copy full SHA for 9d1c613 - Browse repository at this point
Copy the full SHA 9d1c613View commit details -
prepare releases for a few crates (#382)
* update changelogs * update versions * update dev-dependency in impl/serde
Configuration menu - View commit details
-
Copy full SHA for 89e465e - Browse repository at this point
Copy the full SHA 89e465eView commit details
Commits on Apr 29, 2020
-
kvdb-rocksdb: update rocksdb to 0.14 (#379)
* kvdb-rocksdb: update to new set_upper_bound API * kvdb-rocksdb: update rocksdb to crates.io version * kvdb-rocksdb: update the changelog * Fix build? Set VM template. * Fix build? correct image name * Fix build? Maybe it's 2019? * appveyor: try release build * Revert "appveyor: try release build" This reverts commit ace87ee. * checkout rust-rocksdb/rust-rocksdb#412 * revert patch * revert unrelated changes Co-authored-by: David Palm <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 50c3dc2 - Browse repository at this point
Copy the full SHA 50c3dc2View commit details
Commits on May 1, 2020
-
Add Rocksdb Secondary Instance Api (#384)
* kvdb-rocksdb: update to new set_upper_bound API * kvdb-rocksdb: update rocksdb to crates.io version * kvdb-rocksdb: update the changelog * Fix build? Set VM template. * Fix build? correct image name * Fix build? Maybe it's 2019? * appveyor: try release build * Revert "appveyor: try release build" This reverts commit ace87ee. * checkout rust-rocksdb/rust-rocksdb#412 * revert patch * revert unrelated changes * add open as secondary rocksdb api * Update kvdb-rocksdb/src/lib.rs Co-Authored-By: Andronik Ordian <[email protected]> * add more information to secondary mode comment * add function to catch up a secondary instance with a primary instance * one more doc comment for more clarity * style fixes * Update kvdb-rocksdb/src/lib.rs Co-Authored-By: David <[email protected]> * Update kvdb-rocksdb/src/lib.rs Co-Authored-By: David <[email protected]> * change name of `secondary_mode` option to `secondary` * Update kvdb-rocksdb/src/lib.rs Co-Authored-By: David <[email protected]> * fix some punctuation * specify a different directory for secondary instance to store its logs * Update kvdb-rocksdb/src/lib.rs Co-authored-by: Andronik Ordian <[email protected]> * remove catching up on primary db in test * doc comment fixes expand on what `try_catch_up_with_secondary` does, since it may have some implications on the primary instance of rocksdb according to L503-566 in `db/db_impl/db_impl_secondary.cc` of facebook/rocksdb * remove wrong info about blocking primary instance * more docs for catch-up-with-primary * grammar * make `max_open_files` comment clearer Co-authored-by: Andronik Ordian <[email protected]> Co-authored-by: David Palm <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 990d45d - Browse repository at this point
Copy the full SHA 990d45dView commit details
Commits on May 4, 2020
-
primitive-types: add no_std support for serde feature (#385)
* primitive-types: add no_std support for serde feature This adds no_std support to primitive-types with serde. Due to rust-lang/cargo#3494, a separate new feature `serde_no_std` is created. * primitive-types: update changelog * travis: add tests for primitive-types
Configuration menu - View commit details
-
Copy full SHA for 371f17f - Browse repository at this point
Copy the full SHA 371f17fView commit details
Commits on May 5, 2020
-
prepare new
kvdb-
release (#386)* update changelogs and bump versions * update kvdb-web changelog * kvdb-rocksdb: mark second instance as breaking It added a public field to a public struct `DatabaseConfig`. * maybe today is the day?
Configuration menu - View commit details
-
Copy full SHA for 844f899 - Browse repository at this point
Copy the full SHA 844f899View commit details -
Configuration menu - View commit details
-
Copy full SHA for b3cc129 - Browse repository at this point
Copy the full SHA b3cc129View commit details
Commits on May 17, 2020
-
Implement codec for ethereum types (#393)
* Implement codec for ethereum types * Bump patch version * Update changelog for ethbloom and ethereum-types * Fix import order * Add CI test of --all-features for ethbloom and ethereum-types * Fix CI
Configuration menu - View commit details
-
Copy full SHA for a28452b - Browse repository at this point
Copy the full SHA a28452bView commit details
Commits on May 18, 2020
-
uint: simplify
Ord
impl (#389)* uint: simplify Ord impl * uint: fix u512_ord bench to not optimize it away * uint: fix u256_ord bench as well :/
Configuration menu - View commit details
-
Copy full SHA for a4a9745 - Browse repository at this point
Copy the full SHA a4a9745View commit details -
uint: manually implement
Eq
andHash
(#390)* uint: manually implement some traits * uint: remove unused attr and add Eq tests * uint: fix formatting * uint: add a comment why a manual impl is used * uint: simply Eq impl * uint: simplify Hash and add a regression test * uint: fmt and changelog update
Configuration menu - View commit details
-
Copy full SHA for 8e12159 - Browse repository at this point
Copy the full SHA 8e12159View commit details
Commits on Jun 8, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 3af0cb2 - Browse repository at this point
Copy the full SHA 3af0cb2View commit details
Commits on Jun 17, 2020
-
parity-util-mem: optimize MallocSizeOf for flat collections (#398)
* parity-util-mem: optimize MallocSizeOf for flat collections * parity-util-mem: obey Nikolay's suggestion to use fold * parity-util-mem: implement size_of_is_zero for more types * parity-util-mem: generalize 0 size to constant size
Configuration menu - View commit details
-
Copy full SHA for f3023c9 - Browse repository at this point
Copy the full SHA f3023c9View commit details
Commits on Jun 19, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 03e3d34 - Browse repository at this point
Copy the full SHA 03e3d34View commit details -
parity-util-mem: export MallocShallowSizeOf (#399)
* parity-util-mem: export MallocShallowSizeOf * parity-util-mem: cargo fmt
Configuration menu - View commit details
-
Copy full SHA for cf53731 - Browse repository at this point
Copy the full SHA cf53731View commit details
Commits on Jun 23, 2020
-
primitive-types: scale-info support (#312)
* primitive-types: type-metadata support * primitive-types: cargo fmt * switch to scale-info * primitive-types: use scale-info from crates.io * ci: remove duplicate test * primitive-types: fix compilation for test * primitive-types: fmt * primitive-types: update scale-info to 0.2
Configuration menu - View commit details
-
Copy full SHA for 7855f99 - Browse repository at this point
Copy the full SHA 7855f99View commit details
Commits on Jun 24, 2020
-
parity-util-mem: bump version and deps and update changelog (#402)
parity-util-mem: bump version and deps and update changelog
Configuration menu - View commit details
-
Copy full SHA for 1d08c66 - Browse repository at this point
Copy the full SHA 1d08c66View commit details
Commits on Jul 6, 2020
-
Changelog to publish kvdb-web 0.7.0 (#404)
* prepare publish * update date * missing pr number * Update kvdb-web/CHANGELOG.md Co-authored-by: Andronik Ordian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for de6545d - Browse repository at this point
Copy the full SHA de6545dView commit details
Commits on Jul 16, 2020
-
Port runtime to tokio-compat (#403)
* Port runtime to tokio-compat * Accept legacy IntoFutures
Configuration menu - View commit details
-
Copy full SHA for e4751ed - Browse repository at this point
Copy the full SHA e4751edView commit details
Commits on Jul 17, 2020
-
parity-runtime: bump to v0.1.2 (#405)
* parity-runtime: bump to v0.2.0 * Change release version to 0.1.2 instead of 0.2.0
Configuration menu - View commit details
-
Copy full SHA for bbdd089 - Browse repository at this point
Copy the full SHA bbdd089View commit details
Commits on Jul 27, 2020
-
plain_hasher/uint: remove some unsafe code and don't assume endianness (
#407) * patches * Apply suggestions from code review Co-authored-by: Andronik Ordian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 83f5a97 - Browse repository at this point
Copy the full SHA 83f5a97View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4a7afbb - Browse repository at this point
Copy the full SHA 4a7afbbView commit details -
kvdb-rocksdb: set format_version to 5 (#395)
* kvdb-rocksdb: set format_version to 5 * Update kvdb-rocksdb/src/lib.rs Co-authored-by: David <[email protected]> Co-authored-by: David <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c3d4d3d - Browse repository at this point
Copy the full SHA c3d4d3dView commit details
Commits on Jul 28, 2020
-
plain_hasher: remove std feature and unsafe code (#410)
* plain_hasher: remove unsafe and std feature, bump version * uint: update changelog * Update plain_hasher/src/lib.rs Co-authored-by: Nikolay Volf <[email protected]> Co-authored-by: Nikolay Volf <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b6cf436 - Browse repository at this point
Copy the full SHA b6cf436View commit details -
Add automatic methods to KeyValueDB which test for the existence of c…
…ertain objects (#409) Motivation: We have a use case in which we care about a large object's existence, but don't care to load megabytes of data from disc. We have only a `dyn KeyValueDB` handle available; whatever we use has to be part of the trait. By adding automatic implementations for the new methods, we avoid breaking existing code which is no worse than the existing strategy. Part 2 of this fix will be tracking down the concrete type in use and implementing specializations of those methods, so that we actually do save work, but that's dependent on this PR being merged.
Configuration menu - View commit details
-
Copy full SHA for 760447f - Browse repository at this point
Copy the full SHA 760447fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1c731db - Browse repository at this point
Copy the full SHA 1c731dbView commit details
Commits on Aug 3, 2020
-
* uint: Add checked_pow Similar to how 025a0c1 added `checked_{add,sub,mul,div,rem,neg}` add `checked_pow`. * uint/tests: Extend checked_pow tests - Port `pow` and `pow_overflow` tests. - Include overflow check in quickcheck suite. * CHANGELOG: Add entry * uint/tests: Add U256::MAX to the power of 2 test
Configuration menu - View commit details
-
Copy full SHA for d3a2f9c - Browse repository at this point
Copy the full SHA d3a2f9cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1880a8b - Browse repository at this point
Copy the full SHA 1880a8bView commit details
Commits on Aug 4, 2020
-
travis: pin geckodriver in wasm-pack tests (#419)
* travis: pin geckodriver and enable chrome tests * travis: use same workaround for linux * travis: disable chrome
Configuration menu - View commit details
-
Copy full SHA for 0431acb - Browse repository at this point
Copy the full SHA 0431acbView commit details
Commits on Aug 25, 2020
-
uint: make const matching work again (#421)
* uint: revert #390 partially * uint: add a regression test * uint: version bump * tomorrow, maybe?
Configuration menu - View commit details
-
Copy full SHA for c36aead - Browse repository at this point
Copy the full SHA c36aeadView commit details -
Configuration menu - View commit details
-
Copy full SHA for bc97844 - Browse repository at this point
Copy the full SHA bc97844View commit details
Commits on Aug 26, 2020
-
kvdb-rocksdb: bump rocksdb, version, update changelog (#424)
* kvdb-rocksdb: bump rocksdb, version, update changelog * Update kvdb-rocksdb/CHANGELOG.md
Configuration menu - View commit details
-
Copy full SHA for 8137204 - Browse repository at this point
Copy the full SHA 8137204View commit details -
Fix panic in FromStr implementation (#425)
* Remove duplicate tests * Fix panic in FromStr implementation The current implementation panics if the hex is too strong in `from_big_endian`.
Configuration menu - View commit details
-
Copy full SHA for adc85bf - Browse repository at this point
Copy the full SHA adc85bfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7ac4a94 - Browse repository at this point
Copy the full SHA 7ac4a94View commit details
Commits on Sep 10, 2020
-
rlp: impl Encodable for Box<Encodable> (#427)
* rlp: impl Encodable for Box<Encodable> * Add Decodable impl * Add changelog entry * Add Box import for alloc
Configuration menu - View commit details
-
Copy full SHA for c6fb644 - Browse repository at this point
Copy the full SHA c6fb644View commit details
Commits on Sep 29, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 2814417 - Browse repository at this point
Copy the full SHA 2814417View commit details
Commits on Oct 15, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 9d80e9b - Browse repository at this point
Copy the full SHA 9d80e9bView commit details
Commits on Oct 23, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 0b190c6 - Browse repository at this point
Copy the full SHA 0b190c6View commit details
Commits on Oct 26, 2020
-
Configuration menu - View commit details
-
Copy full SHA for fd1b178 - Browse repository at this point
Copy the full SHA fd1b178View commit details
Commits on Oct 27, 2020
-
Configuration menu - View commit details
-
Copy full SHA for a19cf1f - Browse repository at this point
Copy the full SHA a19cf1fView commit details
Commits on Oct 29, 2020
-
Add conversions U256 <-> f64 (#436)
* add conversions U256 <-> f64 * cargo fmt * implement to and from f64 lossy for U256 as suggested * use std library for powi * move conversion to own module as a feature * include feature test in TOML file as suggested
Configuration menu - View commit details
-
Copy full SHA for ac082b5 - Browse repository at this point
Copy the full SHA ac082b5View commit details
Commits on Nov 13, 2020
-
Bump secp256k1 to 0.19, use global context (#438)
* Bump secp256k1 to 0.19, use global context * fmt * Remove zero-sig infrastructure, fix tests * Update changelog
Configuration menu - View commit details
-
Copy full SHA for 539a279 - Browse repository at this point
Copy the full SHA 539a279View commit details
Commits on Nov 24, 2020
-
Configuration menu - View commit details
-
Copy full SHA for e1b6361 - Browse repository at this point
Copy the full SHA e1b6361View commit details -
build(deps): update console_log requirement from 0.1.2 to 0.2.0 (#443)
Updates the requirements on [console_log](https://github.com/iamcodemaker/console_log) to permit the latest version. - [Release notes](https://github.com/iamcodemaker/console_log/releases) - [Commits](https://github.com/iamcodemaker/console_log/commits) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 822e039 - Browse repository at this point
Copy the full SHA 822e039View commit details -
build(deps): update cfg-if requirement from 0.1.10 to 1.0.0 (#444)
Updates the requirements on [cfg-if](https://github.com/alexcrichton/cfg-if) to permit the latest version. - [Release notes](https://github.com/alexcrichton/cfg-if/releases) - [Commits](rust-lang/cfg-if@0.1.10...1.0.0) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 27bc11d - Browse repository at this point
Copy the full SHA 27bc11dView commit details -
* primitive-types: update the changelog * primitive-types: bump versions
Configuration menu - View commit details
-
Copy full SHA for 7719dc9 - Browse repository at this point
Copy the full SHA 7719dc9View commit details
Commits on Nov 25, 2020
-
build(deps): update hex-literal requirement from 0.2.1 to 0.3.1 (#449)
Updates the requirements on [hex-literal](https://github.com/RustCrypto/utils) to permit the latest version. - [Release notes](https://github.com/RustCrypto/utils/releases) - [Commits](RustCrypto/utils@hex-literal-v0.2.1...hex-literal-v0.3.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 773f4f8 - Browse repository at this point
Copy the full SHA 773f4f8View commit details -
build(deps): update lru requirement from 0.5 to 0.6 (#448)
Updates the requirements on [lru](https://github.com/jeromefroe/lru-rs) to permit the latest version. - [Release notes](https://github.com/jeromefroe/lru-rs/releases) - [Changelog](https://github.com/jeromefroe/lru-rs/blob/master/CHANGELOG.md) - [Commits](jeromefroe/lru-rs@0.5.0...0.6.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 14403e8 - Browse repository at this point
Copy the full SHA 14403e8View commit details -
build(deps): update sysinfo requirement from 0.11.7 to 0.15.3 (#447)
Updates the requirements on [sysinfo](https://github.com/GuillaumeGomez/sysinfo) to permit the latest version. - [Release notes](https://github.com/GuillaumeGomez/sysinfo/releases) - [Commits](https://github.com/GuillaumeGomez/sysinfo/commits) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for d6f3ccb - Browse repository at this point
Copy the full SHA d6f3ccbView commit details
Commits on Nov 26, 2020
-
build(deps): update num-bigint requirement from 0.2.3 to 0.3.1 (#451)
Updates the requirements on [num-bigint](https://github.com/rust-num/num-bigint) to permit the latest version. - [Release notes](https://github.com/rust-num/num-bigint/releases) - [Changelog](https://github.com/rust-num/num-bigint/blob/master/RELEASES.md) - [Commits](rust-num/num-bigint@num-bigint-0.2.3...num-bigint-0.3.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 356b74e - Browse repository at this point
Copy the full SHA 356b74eView commit details -
build(deps): update dlmalloc requirement from 0.1.3 to 0.2.1 (#452)
* build(deps): update dlmalloc requirement from 0.1.3 to 0.2.1 Updates the requirements on [dlmalloc](https://github.com/alexcrichton/dlmalloc-rs) to permit the latest version. - [Release notes](https://github.com/alexcrichton/dlmalloc-rs/releases) - [Commits](alexcrichton/dlmalloc-rs@0.1.3...0.2.1) Signed-off-by: dependabot[bot] <[email protected]> * update to changelog (breaking change) * hmm, actually no Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andronik Ordian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e07e7db - Browse repository at this point
Copy the full SHA e07e7dbView commit details
Commits on Nov 30, 2020
-
Configuration menu - View commit details
-
Copy full SHA for fce7315 - Browse repository at this point
Copy the full SHA fce7315View commit details -
rlp: Use BytesMut for RlpStream's backing buffer (#453)
* Use BufMut::put_u8 * Remove RlpStream::drain * Switch internal repr to BytesMut * Remove deprecated RlpStream::complete_unbounded_list * only pull bytes/std when std is enabled * RlpStream::new_with_buffer * redirect RlpStream::{new,new_list} * fix test
Configuration menu - View commit details
-
Copy full SHA for f985098 - Browse repository at this point
Copy the full SHA f985098View commit details -
build(deps): update hashbrown requirement from 0.8 to 0.9 (#456)
Updates the requirements on [hashbrown](https://github.com/rust-lang/hashbrown) to permit the latest version. - [Release notes](https://github.com/rust-lang/hashbrown/releases) - [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md) - [Commits](rust-lang/hashbrown@v0.8.0...v0.9.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 38627a6 - Browse repository at this point
Copy the full SHA 38627a6View commit details -
The time crate after 0.2 is unergonomic to use; just use chrono (#458)
The 0.2 series of `time` doesn't make it easy to "just" create a timestamp. The `chrono` crate uses `time` v0.1 and is, I believe, what users like us should be using. So let's just do that.
Configuration menu - View commit details
-
Copy full SHA for 903c06e - Browse repository at this point
Copy the full SHA 903c06eView commit details
Commits on Dec 1, 2020
-
build(deps): update send_wrapper requirement from 0.3.0 to 0.5.0 (#461)
Updates the requirements on [send_wrapper](https://github.com/thk1/send_wrapper) to permit the latest version. - [Release notes](https://github.com/thk1/send_wrapper/releases) - [Changelog](https://github.com/thk1/send_wrapper/blob/master/CHANGELOG.md) - [Commits](thk1/send_wrapper@v0.3.0...v0.5.0) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 6bdc113 - Browse repository at this point
Copy the full SHA 6bdc113View commit details -
Configuration menu - View commit details
-
Copy full SHA for 93ede8b - Browse repository at this point
Copy the full SHA 93ede8bView commit details
Commits on Dec 4, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 2394a11 - Browse repository at this point
Copy the full SHA 2394a11View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1a7fc68 - Browse repository at this point
Copy the full SHA 1a7fc68View commit details
Commits on Dec 7, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 85bcb11 - Browse repository at this point
Copy the full SHA 85bcb11View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4978bf0 - Browse repository at this point
Copy the full SHA 4978bf0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 64dd79e - Browse repository at this point
Copy the full SHA 64dd79eView commit details
Commits on Dec 8, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 54076a5 - Browse repository at this point
Copy the full SHA 54076a5View commit details
Commits on Dec 9, 2020
-
uint: optimize FromStr, make it no_std-compatible (#468)
* Add from_str bench * uint: optimize FromStr, make it no_std-compatible * custom error type * fmt::Display is actually available in core * Error::source for FromHexError * uppercase consts * additional tests
Configuration menu - View commit details
-
Copy full SHA for 7a54f5b - Browse repository at this point
Copy the full SHA 7a54f5bView commit details
Commits on Dec 10, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 129912c - Browse repository at this point
Copy the full SHA 129912cView commit details
Commits on Dec 13, 2020
-
chore(deps): cargo upgrade parking_lot --all (#470)
* chore(deps): cargo upgrade parking_lot --all * chore(deps): bump versions breaking change. * chore: update changelog * kvdb * kvdb-memorydb * kvdb-rocksdb * parity-util-mem * fix nits * fix: kvdb-web add missing changelog entry * fix: bad merge * fix more nits: use breaking label * [kvdb-memorydb]: add `wasm-bindgen` feature flag * grumbles: remove `wasm-bindgen` feature flag * Add hack only in `kvdb-web` * Remove feature flag `wasm-bindgen` from `kvdb-memorydb`
Configuration menu - View commit details
-
Copy full SHA for 763c967 - Browse repository at this point
Copy the full SHA 763c967View commit details
Commits on Dec 23, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 935a92c - Browse repository at this point
Copy the full SHA 935a92cView commit details
Commits on Dec 25, 2020
-
Configuration menu - View commit details
-
Copy full SHA for da4262d - Browse repository at this point
Copy the full SHA da4262dView commit details
Commits on Dec 28, 2020
-
parity-crypto: remove UB test (#484)
* parity-crypto: remove UB test * rlp: fix unused import
Configuration menu - View commit details
-
Copy full SHA for 6560949 - Browse repository at this point
Copy the full SHA 6560949View commit details -
Configuration menu - View commit details
-
Copy full SHA for f9d468e - Browse repository at this point
Copy the full SHA f9d468eView commit details
Commits on Dec 29, 2020
-
update some dev-dependencies (#493)
Signed-off-by: koushiro <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e64bf1a - Browse repository at this point
Copy the full SHA e64bf1aView commit details
Commits on Dec 30, 2020
-
fix: make from_str parse 0x-prefixed strings (#487)
* fix: make from_str parse 0x-prefixed strings * fix(uint): make from_str parse 0x-prefixed strings * chore: address review styling comments * fix: tabs instead of spaces * chore: cargo fmt * fix: use strip_prefix instead of starts_with
Configuration menu - View commit details
-
Copy full SHA for 0264ebf - Browse repository at this point
Copy the full SHA 0264ebfView commit details -
build(deps): update impl-trait-for-tuples requirement (#490)
Updates the requirements on [impl-trait-for-tuples](https://github.com/bkchr/impl-trait-for-tuples) to permit the latest version. - [Release notes](https://github.com/bkchr/impl-trait-for-tuples/releases) - [Commits](https://github.com/bkchr/impl-trait-for-tuples/commits/v0.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for b52051d - Browse repository at this point
Copy the full SHA b52051dView commit details
Commits on Jan 1, 2021
-
primitive-types: address nits of #480 (#485)
* primitive-types: address nits of #480 * fix ethereum-types
Configuration menu - View commit details
-
Copy full SHA for 36004c9 - Browse repository at this point
Copy the full SHA 36004c9View commit details
Commits on Jan 4, 2021
-
Remove deprecated FromStr/TryFrom impls for Secret (#495)
* Remove deprecated FromStr/TryFrom impls for Secret * update CHANGELOG
Configuration menu - View commit details
-
Copy full SHA for f98a93d - Browse repository at this point
Copy the full SHA f98a93dView commit details -
build(deps): update secp256k1 requirement from 0.19.0 to 0.20.0 (#496)
Updates the requirements on [secp256k1](https://github.com/rust-bitcoin/rust-secp256k1) to permit the latest version. - [Release notes](https://github.com/rust-bitcoin/rust-secp256k1/releases) - [Changelog](https://github.com/rust-bitcoin/rust-secp256k1/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-bitcoin/rust-secp256k1/commits) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andronik Ordian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e7a708a - Browse repository at this point
Copy the full SHA e7a708aView commit details -
build(deps): update smallvec requirement from 0.6.10 to 1.6.0 (#494)
Updates the requirements on [smallvec](https://github.com/servo/rust-smallvec) to permit the latest version. - [Release notes](https://github.com/servo/rust-smallvec/releases) - [Commits](https://github.com/servo/rust-smallvec/commits/v1.6.0) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andronik Ordian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a7003bc - Browse repository at this point
Copy the full SHA a7003bcView commit details -
build(deps): update rand requirement from 0.7.2 to 0.8.0 (#488)
* build(deps): update rand requirement from 0.7.2 to 0.8.0 Updates the requirements on [rand](https://github.com/rust-random/rand) to permit the latest version. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](rust-random/rand@0.7.3...0.8.0) Signed-off-by: dependabot[bot] <[email protected]> * Seed from u64 * uint: use rand 0.7 for quickcheck feature * kvdb-rocksdb: fix compilation for benches * parity-crypto: remove unused dep and fix a warning * cargo fmt and another unused dep Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andronik Ordian <[email protected]> Co-authored-by: David Palm <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 2c8cd78 - Browse repository at this point
Copy the full SHA 2c8cd78View commit details -
build(deps): update rand_xorshift requirement from 0.2.0 to 0.3.0 (#491)
Updates the requirements on [rand_xorshift](https://github.com/rust-random/rngs) to permit the latest version. - [Release notes](https://github.com/rust-random/rngs/releases) - [Commits](https://github.com/rust-random/rngs/commits/rand_xorshift-0.3.0) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for c2fab00 - Browse repository at this point
Copy the full SHA c2fab00View commit details
Commits on Jan 5, 2021
-
update changelogs and bump uint (#486)
* update changelogs and bump uint * update ethereum-types changelog * update uint changelog * tabs * fixed-hash: bump to 0.7 * bump keccak-hash to 0.6.0 * contract-address: bump keccak-hash to 0.6 * update changelogs after publishing
Configuration menu - View commit details
-
Copy full SHA for 6fc8030 - Browse repository at this point
Copy the full SHA 6fc8030View commit details
Commits on Jan 6, 2021
-
Configuration menu - View commit details
-
Copy full SHA for fd69e62 - Browse repository at this point
Copy the full SHA fd69e62View commit details
Commits on Jan 8, 2021
-
Configuration menu - View commit details
-
Copy full SHA for e1dfdce - Browse repository at this point
Copy the full SHA e1dfdceView commit details
Commits on Jan 18, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 24893ac - Browse repository at this point
Copy the full SHA 24893acView commit details
Commits on Jan 20, 2021
-
* add a test for #507 * CI: test uint on a big-endian platform * a workaround for gmp * grumbles * bump byteorder to 1.4.2
Configuration menu - View commit details
-
Copy full SHA for 1d3de9e - Browse repository at this point
Copy the full SHA 1d3de9eView commit details -
ethereum-types: fix wasm builds for serialize feature (#503)
* ethbloom: do not pull std for 'serialize' feature * ethereum-types: do not pull std for 'serialize' feature * CI: check wasm builds for ethbloom and ethereum-types * fix wasm target * CI: remove redundant check * CI: fix wasm target install * update changelogs
Configuration menu - View commit details
-
Copy full SHA for f627a42 - Browse repository at this point
Copy the full SHA f627a42View commit details
Commits on Jan 27, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 74c7b6d - Browse repository at this point
Copy the full SHA 74c7b6dView commit details -
Update codec and crates depending (#510)
Co-authored-by: Andronik Ordian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for bb7b437 - Browse repository at this point
Copy the full SHA bb7b437View commit details
Commits on Feb 8, 2021
-
parity-util-mem: use ios compilation conditions same as macos. (#522)
* parity-util-mem: use ios compilation conditions same as macos. * Fix fmt.
Configuration menu - View commit details
-
Copy full SHA for 3ad905d - Browse repository at this point
Copy the full SHA 3ad905dView commit details
Commits on Feb 16, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 98d62c1 - Browse repository at this point
Copy the full SHA 98d62c1View commit details -
build(deps): update sysinfo requirement from 0.15.3 to 0.16.3 (#526)
Updates the requirements on [sysinfo](https://github.com/GuillaumeGomez/sysinfo) to permit the latest version. - [Release notes](https://github.com/GuillaumeGomez/sysinfo/releases) - [Commits](https://github.com/GuillaumeGomez/sysinfo/commits) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 6e807e8 - Browse repository at this point
Copy the full SHA 6e807e8View commit details
Commits on Feb 17, 2021
-
build(deps): update scale-info requirement from 0.5 to 0.6 (#519)
* build(deps): update scale-info requirement from 0.5 to 0.6 Updates the requirements on [scale-info](https://github.com/paritytech/scale-info) to permit the latest version. - [Release notes](https://github.com/paritytech/scale-info/releases) - [Changelog](https://github.com/paritytech/scale-info/blob/master/CHANGELOG.md) - [Commits](https://github.com/paritytech/scale-info/commits/v0.6.0) Signed-off-by: dependabot[bot] <[email protected]> * make it compile * some comments never hurt * organize features properly, so that scale-info works with no_std * rename to scale-info-crate Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andronik Ordian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for db7c985 - Browse repository at this point
Copy the full SHA db7c985View commit details
Commits on Mar 1, 2021
-
build(deps): update arbitrary requirement from 0.4 to 1.0 (#530)
* build(deps): update arbitrary requirement from 0.4 to 1.0 Updates the requirements on [arbitrary](https://github.com/rust-fuzz/arbitrary) to permit the latest version. - [Release notes](https://github.com/rust-fuzz/arbitrary/releases) - [Changelog](https://github.com/rust-fuzz/arbitrary/blob/master/CHANGELOG.md) - [Commits](rust-fuzz/arbitrary@0.4.0...1.0.0) Signed-off-by: dependabot[bot] <[email protected]> * Add lifetime Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: David Palm <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0a7fe81 - Browse repository at this point
Copy the full SHA 0a7fe81View commit details
Commits on Mar 2, 2021
-
[kvdb-rocksdb] add DatabaseConfig max_total_wal_size (#528)
* Add DatabaseConfig max_total_wal_size * formatting * formatting * fixed test * Update kvdb-rocksdb/src/lib.rs Co-authored-by: Andronik Ordian <[email protected]> * carog fmt Co-authored-by: mdben1247 <[email protected]> Co-authored-by: Andronik Ordian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7ff438a - Browse repository at this point
Copy the full SHA 7ff438aView commit details -
build(deps): update pbkdf2 requirement from 0.6.0 to 0.7.3 (#523)
Updates the requirements on [pbkdf2](https://github.com/RustCrypto/password-hashes) to permit the latest version. - [Release notes](https://github.com/RustCrypto/password-hashes/releases) - [Commits](RustCrypto/password-hashes@scrypt-v0.6.0...pbkdf2-v0.7.3) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for f3b859a - Browse repository at this point
Copy the full SHA f3b859aView commit details
Commits on Mar 3, 2021
-
impl num_traits::sign::Unsigned (#531)
Implements the `Unsigned` marker trait for the uint types created in `primitive-types`.
Configuration menu - View commit details
-
Copy full SHA for 6a4ce4b - Browse repository at this point
Copy the full SHA 6a4ce4bView commit details
Commits on Mar 8, 2021
-
build(deps): update num-bigint requirement from 0.3.1 to 0.4.0 (#532)
Updates the requirements on [num-bigint](https://github.com/rust-num/num-bigint) to permit the latest version. - [Release notes](https://github.com/rust-num/num-bigint/releases) - [Changelog](https://github.com/rust-num/num-bigint/blob/master/RELEASES.md) - [Commits](rust-num/num-bigint@num-bigint-0.3.1...num-bigint-0.4.0) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 50fcd23 - Browse repository at this point
Copy the full SHA 50fcd23View commit details
Commits on Apr 9, 2021
-
build(deps): update sysinfo requirement from 0.16.3 to 0.17.0 (#536)
Updates the requirements on [sysinfo](https://github.com/GuillaumeGomez/sysinfo) to permit the latest version. - [Release notes](https://github.com/GuillaumeGomez/sysinfo/releases) - [Commits](https://github.com/GuillaumeGomez/sysinfo/commits) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 61fc474 - Browse repository at this point
Copy the full SHA 61fc474View commit details
Commits on Apr 19, 2021
-
build(deps): update rocksdb requirement from 0.15 to 0.16 (#537)
Updates the requirements on [rocksdb](https://github.com/rust-rocksdb/rust-rocksdb) to permit the latest version. - [Release notes](https://github.com/rust-rocksdb/rust-rocksdb/releases) - [Changelog](https://github.com/rust-rocksdb/rust-rocksdb/blob/master/CHANGELOG.md) - [Commits](rust-rocksdb/rust-rocksdb@v0.15.0...v0.16.0) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for bce6c33 - Browse repository at this point
Copy the full SHA bce6c33View commit details
Commits on May 3, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 0867e48 - Browse repository at this point
Copy the full SHA 0867e48View commit details
Commits on May 24, 2021
-
primitive-types: add U128 full_mul (#546)
* primitive-types: add U128 full_mul * primitive-types: update the changelog * Apply suggestions from code review Co-authored-by: David <[email protected]> Co-authored-by: David <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0ac86ef - Browse repository at this point
Copy the full SHA 0ac86efView commit details
Commits on Jun 11, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 7c2a9b2 - Browse repository at this point
Copy the full SHA 7c2a9b2View commit details
Commits on Jun 28, 2021
-
parity-util-mem: fix for FreeBSD (#553)
* parity-util-mem: fix for FreeBSD * update the changelog
Configuration menu - View commit details
-
Copy full SHA for 96909f3 - Browse repository at this point
Copy the full SHA 96909f3View commit details
Commits on Jun 30, 2021
-
uint: implement integer_sqrt (#554)
* uint: implement integer_sqrt * uint: remove wrong assertion * go brrrrrrrrrrrrrr * we don't need to move anymore * impl-num-traits: add integer-sqrt trait support * add missing test * fmt * bump uint
Configuration menu - View commit details
-
Copy full SHA for 828a5d6 - Browse repository at this point
Copy the full SHA 828a5d6View commit details -
build(deps): update hashbrown requirement from 0.9 to 0.11 (#533)
Updates the requirements on [hashbrown](https://github.com/rust-lang/hashbrown) to permit the latest version. - [Release notes](https://github.com/rust-lang/hashbrown/releases) - [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md) - [Commits](rust-lang/hashbrown@v0.9.0...v0.11.0) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 52d50c7 - Browse repository at this point
Copy the full SHA 52d50c7View commit details
Commits on Jul 1, 2021
-
primitive-types: update to
scale-info
0.9 (#556)* Bump scale-info * Bump to 0.9.0 * Bump related crate versions * Revert rlp version bump, and related bumps * Update CHANGELOGs * review: revert unnecessary triehash bump Co-authored-by: Andronik Ordian <[email protected]> * review: remove date Co-authored-by: Andronik Ordian <[email protected]> * Remove dates from releases * More dates from releases removed * Update parity-util-mem/CHANGELOG.md Co-authored-by: Andronik Ordian <[email protected]> * Expand scale-info requirement to include future 1.* releases * Fix scale_info tests Co-authored-by: Andronik Ordian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5ac8cdb - Browse repository at this point
Copy the full SHA 5ac8cdbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 075a34e - Browse repository at this point
Copy the full SHA 075a34eView commit details -
* fix no-default-features tests * github actions * remove appveyor and travis configs * fmt * try to fix windows * try single quotes? * try resolver=2 ??? * update the badge * hmmmm * use use-cross * Revert "hmmmm" This reverts commit e909926. * final boss * Revert "final boss" This reverts commit c1ac1d3. * listen * if you had * one shot * one opportunity * 5G * run CI on push to master as well * review feedback * cache cargo check Co-authored-by: Denis Pisarev <[email protected]> Co-authored-by: Denis Pisarev <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9e0e53a - Browse repository at this point
Copy the full SHA 9e0e53aView commit details
Commits on Jul 2, 2021
-
* remove deprecated crates * improve windows CI * ok, not all features
Configuration menu - View commit details
-
Copy full SHA for 84a7d26 - Browse repository at this point
Copy the full SHA 84a7d26View commit details -
primitive-types/impl-codec: Bump to include new `parity_scale_codec::…
…MaxEncodedLen` impls (#552) * impl-codec: Use new parity-scale-codec 2.2.0 with `max-encoded-len` feature * impl-codec: Bump to parity-scale-codec is not breaking * Bump primitive-types to 0.10.1 in order to bump impl-codec to 0.5.1
Configuration menu - View commit details
-
Copy full SHA for a05ef25 - Browse repository at this point
Copy the full SHA a05ef25View commit details
Commits on Jul 5, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 2d571df - Browse repository at this point
Copy the full SHA 2d571dfView commit details
Commits on Jul 30, 2021
-
rlp: fix bool encoding/decoding (#572)
* rlp: fix bool encoding/decoding * rlp: update the changelog
Configuration menu - View commit details
-
Copy full SHA for a9dbe62 - Browse repository at this point
Copy the full SHA a9dbe62View commit details -
update rustfmt config to match substrate (#570)
* update the rustfmt to the substrate one * apply rustfmt * go back to 120 limit
Configuration menu - View commit details
-
Copy full SHA for faad8b6 - Browse repository at this point
Copy the full SHA faad8b6View commit details -
Configuration menu - View commit details
-
Copy full SHA for bd6bb46 - Browse repository at this point
Copy the full SHA bd6bb46View commit details
Commits on Jul 31, 2021
-
release rlp 0.5.1 and kvdb-rocksdb 0.12.1 (#575)
* rlp: release 0.5.1 * kvdb-rocksdb: release 0.12.1
Configuration menu - View commit details
-
Copy full SHA for 916a382 - Browse repository at this point
Copy the full SHA 916a382View commit details
Commits on Aug 4, 2021
-
add to kvdb-rocksdb create_if_missing config option (#576)
* add to kvdb-rocksdb create_if_missing config option * add #[non_exhaustive] above the DatabaseConfig * update the changelog * fix the date Co-authored-by: Andronik Ordian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8a1739a - Browse repository at this point
Copy the full SHA 8a1739aView commit details
Commits on Aug 5, 2021
-
kvdb api uses now template argument
P: AsRef<Path>
instead of&str
(#579) * update kvdb_rocksdb to 0.14 and use P: AsRef Path instead of str and Path as Database function arguments * remove duplicate import of PathBuf on linux
Configuration menu - View commit details
-
Copy full SHA for c031b09 - Browse repository at this point
Copy the full SHA c031b09View commit details
Commits on Sep 15, 2021
-
Move memory stats gathering from
polkadot
toparity-util-mem
(#588)* Move memory stats gathering from `polkadot` to `parity-util-mem` * Bump version to 0.10.1 * Update the CHANGELOG
Configuration menu - View commit details
-
Copy full SHA for 3030a6d - Browse repository at this point
Copy the full SHA 3030a6dView commit details
Commits on Sep 20, 2021
-
Switch from
jemallocator
totikv-jemallocator
(#589)* Switch from `jemallocator` to `tikv-jemallocator` * Bump `parity-util-mem` version to 0.10.2
Configuration menu - View commit details
-
Copy full SHA for 6f186f1 - Browse repository at this point
Copy the full SHA 6f186f1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8e990ac - Browse repository at this point
Copy the full SHA 8e990acView commit details
Commits on Sep 30, 2021
-
Combine
scale-info
feature intocodec
, and wire it through `ether……eum-types` (#593) * Start with Cargo.toml * better features, version, and ethbloom * feature * better feature * do bloom * hack H64 * remaining ethereum hash types * fix crate name in tests * revert breaking changes to primitive-types * Update primitive-types/tests/scale_info.rs Co-authored-by: Andronik Ordian <[email protected]> Co-authored-by: Andronik Ordian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for df638ab - Browse repository at this point
Copy the full SHA df638abView commit details
Commits on Nov 10, 2021
-
feat(primitive-types, serde): deserialize hex strings without 0x pref…
…ix (#598) * feat(primitive-types): deserialize hex strings without 0x prefix * change both to stripped * Revert "change both to stripped" This reverts commit 9d8d532. * accept only stripped to from_hex_raw * cargo fmt * fix tests * oneliner for (v, stripped) * bump ethereum-types impl-serde version * remove unused lifetime * update changelog * allow deprecate * fix changelog date format (god bless america)
Configuration menu - View commit details
-
Copy full SHA for aa58883 - Browse repository at this point
Copy the full SHA aa58883View commit details -
Configuration menu - View commit details
-
Copy full SHA for 235a010 - Browse repository at this point
Copy the full SHA 235a010View commit details
Commits on Nov 12, 2021
-
build(deps): update sysinfo requirement from 0.17.0 to 0.21.1 (#600)
* build(deps): update sysinfo requirement from 0.17.0 to 0.21.1 Updates the requirements on [sysinfo](https://github.com/GuillaumeGomez/sysinfo) to permit the latest version. - [Release notes](https://github.com/GuillaumeGomez/sysinfo/releases) - [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md) - [Commits](https://github.com/GuillaumeGomez/sysinfo/commits) --- updated-dependencies: - dependency-name: sysinfo dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * Fix tests Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Keith Yeung <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for eebf04b - Browse repository at this point
Copy the full SHA eebf04bView commit details
Commits on Nov 21, 2021
-
* move to rust 2021 * rust-version = "1.56.1" * Update CHANGELOG for 2021 and MSRV 1.56.1 * delete fuzz changelog Co-authored-by: Andronik Ordian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c3ef97d - Browse repository at this point
Copy the full SHA c3ef97dView commit details
Commits on Nov 27, 2021
-
Stop calling
state.finish()
for fixed hashes (#602)Calling [`state.finish();`][Hasher::finish] is a no-op. At call site, `state` is read-only and the return value is ignored. The call and may be removed. [Hasher::finish]: https://doc.rust-lang.org/std/hash/trait.Hasher.html#tymethod.finish
Jacob Lee authoredNov 27, 2021 Configuration menu - View commit details
-
Copy full SHA for 5fe7924 - Browse repository at this point
Copy the full SHA 5fe7924View commit details
Commits on Dec 15, 2021
-
build(deps): update sysinfo requirement from 0.21.1 to 0.22.0 (#609)
Updates the requirements on [sysinfo](https://github.com/GuillaumeGomez/sysinfo) to permit the latest version. - [Release notes](https://github.com/GuillaumeGomez/sysinfo/releases) - [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md) - [Commits](https://github.com/GuillaumeGomez/sysinfo/commits) --- updated-dependencies: - dependency-name: sysinfo dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for d8c6320 - Browse repository at this point
Copy the full SHA d8c6320View commit details
Commits on Jan 17, 2022
-
feat(rlp): add optional derive feature (#613)
* feat(rlp): add optional derive feature Signed-off-by: koushiro <[email protected]> * Update changelog Signed-off-by: koushiro <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 71fbb39 - Browse repository at this point
Copy the full SHA 71fbb39View commit details
Commits on Jan 18, 2022
-
build(deps): update sysinfo requirement from 0.22.0 to 0.23.0 (#614)
Updates the requirements on [sysinfo](https://github.com/GuillaumeGomez/sysinfo) to permit the latest version. - [Release notes](https://github.com/GuillaumeGomez/sysinfo/releases) - [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md) - [Commits](https://github.com/GuillaumeGomez/sysinfo/commits) --- updated-dependencies: - dependency-name: sysinfo dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for a855f4d - Browse repository at this point
Copy the full SHA a855f4dView commit details
Commits on Jan 27, 2022
-
Display formatting support (#584) (#603)
* Display formatting support (#584) * Update uint/src/uint.rs Co-authored-by: Niklas Adolfsson <[email protected]> Co-authored-by: Andronik <[email protected]> Co-authored-by: Niklas Adolfsson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8f5bf54 - Browse repository at this point
Copy the full SHA 8f5bf54View commit details
Commits on Feb 4, 2022
-
Configuration menu - View commit details
-
Copy full SHA for aa0e838 - Browse repository at this point
Copy the full SHA aa0e838View commit details -
build(deps): update lru requirement from 0.6 to 0.7 (#595)
Updates the requirements on [lru](https://github.com/jeromefroe/lru-rs) to permit the latest version. - [Release notes](https://github.com/jeromefroe/lru-rs/releases) - [Changelog](https://github.com/jeromefroe/lru-rs/blob/master/CHANGELOG.md) - [Commits](jeromefroe/lru-rs@0.6.0...0.7.0) --- updated-dependencies: - dependency-name: lru dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 502533e - Browse repository at this point
Copy the full SHA 502533eView commit details -
build(deps): update parking_lot requirement from 0.11.1 to 0.12.0 (#619)
Updates the requirements on [parking_lot](https://github.com/Amanieu/parking_lot) to permit the latest version. - [Release notes](https://github.com/Amanieu/parking_lot/releases) - [Changelog](https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md) - [Commits](Amanieu/parking_lot@0.11.1...0.12.0) --- updated-dependencies: - dependency-name: parking_lot dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 73bfa40 - Browse repository at this point
Copy the full SHA 73bfa40View commit details -
Configuration menu - View commit details
-
Copy full SHA for b88b13b - Browse repository at this point
Copy the full SHA b88b13bView commit details -
build(deps): update hashbrown requirement from 0.11 to 0.12 (#612)
Updates the requirements on [hashbrown](https://github.com/rust-lang/hashbrown) to permit the latest version. - [Release notes](https://github.com/rust-lang/hashbrown/releases) - [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md) - [Commits](rust-lang/hashbrown@v0.11.0...v0.12.0) --- updated-dependencies: - dependency-name: hashbrown dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 88cc592 - Browse repository at this point
Copy the full SHA 88cc592View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2d7f7e2 - Browse repository at this point
Copy the full SHA 2d7f7e2View commit details -
uint: Fix overflowing_neg by implementing two's complement (#611)
* uint: Fix overflowing_neg with two's complement The operation `overflowing_neg` on the primitive integer types in the Rust standard library computes the negation of the integer value using two's complement, i.e., it returns `!self + 1`. The previous implementation of the uint library implemented `overflowing_neg` using `!self` for non-zero values which is bit-wise negation (NOT). This lead to behavior where 0 - 1 != -1 for U256 with the `overflowing_neg` and `overflow_sub` operations. This patch adapts the `uint_overflowing_binop` macro to implement the two's complement correctly: Starting from the least significant word we apply `u64::overflowing_neg` until we have seen the first one-bit in the original integer, i.e., until `overflowing_neg` reports an overflow. Then we use bit-wise NOT for the remaining words. * Update uint/src/uint.rs * Update uint/src/uint.rs Co-authored-by: Andronik <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b37d0b3 - Browse repository at this point
Copy the full SHA b37d0b3View commit details -
New releases preparation (#623)
* minor bump uint * major bump parity-util-mem * major bump kvdb * major bump kvdb-rocksdb * major bump kvdb-memorydb * who cares about tests * major bump impl-codec * major bump primitive-types * major bump keccak-hash * major bump parity-util-mem (again) * major bump ethereum-types * major bump parity-util-mem (again II) * major bump ethbloom * major bump ethereum-types (again) * changelog typo fix
Configuration menu - View commit details
-
Copy full SHA for 1d3a3d5 - Browse repository at this point
Copy the full SHA 1d3a3d5View commit details
Commits on Feb 7, 2022
-
Configuration menu - View commit details
-
Copy full SHA for f2bbf51 - Browse repository at this point
Copy the full SHA f2bbf51View commit details -
Configuration menu - View commit details
-
Copy full SHA for bcb2e48 - Browse repository at this point
Copy the full SHA bcb2e48View commit details
Commits on Feb 18, 2022
-
* update rocksdb to 0.18 * prepare for release * enable jemalloc feature * update the changelog
Configuration menu - View commit details
-
Copy full SHA for 70a745a - Browse repository at this point
Copy the full SHA 70a745aView commit details
Commits on Mar 20, 2022
-
Disable jemalloc on OpenBSD and MSVC where it is not working (#633)
* Disable jemalloc on OpenBSD and MSVC where it is not working * Update kvdb-rocksdb/CHANGELOG.md Co-authored-by: Andronik <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for dbc740b - Browse repository at this point
Copy the full SHA dbc740bView commit details
Commits on Apr 4, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 8d99ffa - Browse repository at this point
Copy the full SHA 8d99ffaView commit details
Commits on Apr 28, 2022
-
docs: improves
overflowing_add
documentation (#641)The proposed change makes this function's documentation more consistent with others already present in this file.
Configuration menu - View commit details
-
Copy full SHA for 436cb08 - Browse repository at this point
Copy the full SHA 436cb08View commit details
Commits on Jun 2, 2022
-
Add GHA to dependabot and CODEOWNERS (#646)
* add CODEOWNERS * add gha to dependabot
Configuration menu - View commit details
-
Copy full SHA for f6ed7ba - Browse repository at this point
Copy the full SHA f6ed7baView commit details
Commits on Jun 3, 2022
-
build(deps): bump actions/checkout from 2 to 3 (#648)
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for b3717a0 - Browse repository at this point
Copy the full SHA b3717a0View commit details -
build(deps): bump Swatinem/rust-cache from 1.3.0 to 1.4.0 (#647)
Bumps [Swatinem/rust-cache](https://github.com/Swatinem/rust-cache) from 1.3.0 to 1.4.0. - [Release notes](https://github.com/Swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/v1/CHANGELOG.md) - [Commits](Swatinem/rust-cache@v1.3.0...v1.4.0) --- updated-dependencies: - dependency-name: Swatinem/rust-cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 3dd1eed - Browse repository at this point
Copy the full SHA 3dd1eedView commit details
Commits on Jun 6, 2022
-
build(deps): update sysinfo requirement from 0.23.0 to 0.24.1 (#649)
Updates the requirements on [sysinfo](https://github.com/GuillaumeGomez/sysinfo) to permit the latest version. - [Release notes](https://github.com/GuillaumeGomez/sysinfo/releases) - [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md) - [Commits](https://github.com/GuillaumeGomez/sysinfo/commits) --- updated-dependencies: - dependency-name: sysinfo dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for f48cfcd - Browse repository at this point
Copy the full SHA f48cfcdView commit details
Commits on Jun 15, 2022
-
uint: make fn one const (#650)
* Add one test * uint: Make `fn one` const * Test multiplicative inverse property of one * Update uint/CHANGELOG.md Co-authored-by: Andronik <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3cc2bcb - Browse repository at this point
Copy the full SHA 3cc2bcbView commit details
Commits on Jun 17, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 6a7bf78 - Browse repository at this point
Copy the full SHA 6a7bf78View commit details
Commits on Jul 18, 2022
-
build(deps): bump Swatinem/rust-cache from 1.4.0 to 2.0.0 (#654)
Bumps [Swatinem/rust-cache](https://github.com/Swatinem/rust-cache) from 1.4.0 to 2.0.0. - [Release notes](https://github.com/Swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md) - [Commits](Swatinem/rust-cache@v1.4.0...v2.0.0) --- updated-dependencies: - dependency-name: Swatinem/rust-cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for b16db49 - Browse repository at this point
Copy the full SHA b16db49View commit details
Commits on Aug 1, 2022
-
build(deps): update sysinfo requirement from 0.24.1 to 0.25.1 (#657)
Updates the requirements on [sysinfo](https://github.com/GuillaumeGomez/sysinfo) to permit the latest version. - [Release notes](https://github.com/GuillaumeGomez/sysinfo/releases) - [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md) - [Commits](https://github.com/GuillaumeGomez/sysinfo/commits) --- updated-dependencies: - dependency-name: sysinfo dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 55d5fe5 - Browse repository at this point
Copy the full SHA 55d5fe5View commit details
Commits on Aug 14, 2022
-
uint: make max_value const, test, simplify (#652)
* Make max_value const, test and simplify * Deprecate max_value * Test ::MAX * Update uint/src/uint.rs Co-authored-by: Andronik <[email protected]> * Apply suggestions from code review Co-authored-by: Andronik <[email protected]> Co-authored-by: Andronik <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6153693 - Browse repository at this point
Copy the full SHA 6153693View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6ed3110 - Browse repository at this point
Copy the full SHA 6ed3110View commit details -
rocksdb: remove and simplify a bunch of stuff (#662)
* rocksdb: remove and simplify a bunch of stuff * update changelogs * Update kvdb/CHANGELOG.md Co-authored-by: cheme <[email protected]> Co-authored-by: cheme <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8941d3f - Browse repository at this point
Copy the full SHA 8941d3fView commit details
Commits on Aug 15, 2022
-
Streamline kvdb API and upgrade rocksdb to 0.19 (#661)
* upgrade kvdb to 0.19 and tikv-jemallocator to 0.5 * EndOnErrorIterator * fmt * add a warning * exhaustive match * kvdb: more consistent API * kvdb: expose KeyValuePair and fmt * kvdb: changelog amends * kvdb: change DBKeyValue * kvdb-rocksdb: return an error on column OOB * no warn in size_of as before * small cleanup
Configuration menu - View commit details
-
Copy full SHA for 26d712d - Browse repository at this point
Copy the full SHA 26d712dView commit details
Commits on Aug 16, 2022
-
Configuration menu - View commit details
-
Copy full SHA for df78257 - Browse repository at this point
Copy the full SHA df78257View commit details -
Configuration menu - View commit details
-
Copy full SHA for 77ddc33 - Browse repository at this point
Copy the full SHA 77ddc33View commit details
Commits on Aug 30, 2022
-
build(deps): update sysinfo requirement from 0.25.1 to 0.26.0 (#670)
Updates the requirements on [sysinfo](https://github.com/GuillaumeGomez/sysinfo) to permit the latest version. - [Release notes](https://github.com/GuillaumeGomez/sysinfo/releases) - [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md) - [Commits](https://github.com/GuillaumeGomez/sysinfo/commits) --- updated-dependencies: - dependency-name: sysinfo dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 076ba7a - Browse repository at this point
Copy the full SHA 076ba7aView commit details
Commits on Aug 31, 2022
-
Support deserializing from borrowed or owned bytes, too (#668)
* Support deserializing from borrowed or owned bytes, too * cargo fmt * Fix comments * H256 et al can deserialize u8 sequences, too * add changelog entry and bump version ready for release * propagate the bump Co-authored-by: Andronik <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 706c989 - Browse repository at this point
Copy the full SHA 706c989View commit details
Commits on Sep 2, 2022
-
Allow deserializing from newtype structs too (#672)
* Allow deserializing from newtype structs too * update changelog * cargo fmt * Update changelog date Co-authored-by: Andronik <[email protected]> Co-authored-by: Andronik <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for aeca7d6 - Browse repository at this point
Copy the full SHA aeca7d6View commit details -
Configuration menu - View commit details
-
Copy full SHA for f16979b - Browse repository at this point
Copy the full SHA f16979bView commit details -
Upgrade quickcheck in uint, fixed-hash (#674)
* Upgrade uint:quickcheck * Upgrade fixed-hash:quickcheck * cargo fmt * Generate a probability for len of an Arbitrary in a more fancy way * Get rid of quickcheck->qc renaming * Fix %0 in arbitrary for $uint Co-authored-by: Andronik <[email protected]> Co-authored-by: Andronik <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9642a0e - Browse repository at this point
Copy the full SHA 9642a0eView commit details -
ethereum-types: make ethbloom optional (#625)
* ethereum-types: make ethbloom optional * Apply suggestions from code review Co-authored-by: Andronik <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7a9cc3b - Browse repository at this point
Copy the full SHA 7a9cc3bView commit details
Commits on Sep 5, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 62aa409 - Browse repository at this point
Copy the full SHA 62aa409View commit details
Commits on Sep 12, 2022
-
build(deps): update criterion requirement from 0.3.0 to 0.4.0 (#676)
Updates the requirements on [criterion](https://github.com/bheisler/criterion.rs) to permit the latest version. - [Release notes](https://github.com/bheisler/criterion.rs/releases) - [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md) - [Commits](bheisler/criterion.rs@0.3.0...0.4.0) --- updated-dependencies: - dependency-name: criterion dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 6e5fe50 - Browse repository at this point
Copy the full SHA 6e5fe50View commit details
Commits on Sep 19, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 4d799dc - Browse repository at this point
Copy the full SHA 4d799dcView commit details -
build(deps): update lru requirement from 0.7 to 0.8 (#675)
Updates the requirements on [lru](https://github.com/jeromefroe/lru-rs) to permit the latest version. - [Release notes](https://github.com/jeromefroe/lru-rs/releases) - [Changelog](https://github.com/jeromefroe/lru-rs/blob/master/CHANGELOG.md) - [Commits](jeromefroe/lru-rs@0.7.0...0.8.0) --- updated-dependencies: - dependency-name: lru dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andronik <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 738e7a3 - Browse repository at this point
Copy the full SHA 738e7a3View commit details
Commits on Sep 20, 2022
-
* parity-util-mem: bump version and update changelog * prepare for more releases * update kvdb-rocksdb * moar updates * publish kvdb-shared-tests too * Back to the future * fix compilation
Configuration menu - View commit details
-
Copy full SHA for 6aa58bf - Browse repository at this point
Copy the full SHA 6aa58bfView commit details
Commits on Sep 30, 2022
-
Configuration menu - View commit details
-
Copy full SHA for baebea7 - Browse repository at this point
Copy the full SHA baebea7View commit details
Commits on Oct 17, 2022
-
build(deps): bump Swatinem/rust-cache from 2.0.0 to 2.0.1 (#683)
* build(deps): bump Swatinem/rust-cache from 2.0.0 to 2.0.1 Bumps [Swatinem/rust-cache](https://github.com/Swatinem/rust-cache) from 2.0.0 to 2.0.1. - [Release notes](https://github.com/Swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md) - [Commits](Swatinem/rust-cache@v2.0.0...v2.0.1) --- updated-dependencies: - dependency-name: Swatinem/rust-cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * add hash Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sergejs Kostjucenko <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7b10e2b - Browse repository at this point
Copy the full SHA 7b10e2bView commit details
Commits on Oct 21, 2022
-
* rlp: release 0.5.2 * Revert "rlp: release 0.5.2" This reverts commit 86676b0. * rlp: release 0.5.2 without 2021 edition changes
Configuration menu - View commit details
-
Copy full SHA for 3c807b5 - Browse repository at this point
Copy the full SHA 3c807b5View commit details
Commits on Oct 27, 2022
-
add
H384
andH768
hash types (#684)* add H384 and H768 hash types * implement `impl-serde`, `impl-codec`, `impl-rlp` for `H384` and `H768` types. * remove redundant double impl of serde for H384
Configuration menu - View commit details
-
Copy full SHA for 26c1423 - Browse repository at this point
Copy the full SHA 26c1423View commit details -
Configuration menu - View commit details
-
Copy full SHA for 09371a1 - Browse repository at this point
Copy the full SHA 09371a1View commit details
Commits on Nov 4, 2022
-
build(deps): bump Swatinem/rust-cache from 2.0.1 to 2.0.2 (#689)
Bumps [Swatinem/rust-cache](https://github.com/Swatinem/rust-cache) from 2.0.1 to 2.0.2. - [Release notes](https://github.com/Swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md) - [Commits](Swatinem/rust-cache@22c9328...b5ec9ed) --- updated-dependencies: - dependency-name: Swatinem/rust-cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 0373dec - Browse repository at this point
Copy the full SHA 0373decView commit details
Commits on Nov 7, 2022
-
Uint: Add support for bit and,or,xor assign traits (#690)
* Uint: Add support for bit and,or,xor assign traits * Add tests for bit-assign * satisfy rustfmt
Configuration menu - View commit details
-
Copy full SHA for 82b2147 - Browse repository at this point
Copy the full SHA 82b2147View commit details
Commits on Nov 8, 2022
-
build(deps): bump Swatinem/rust-cache from 2.0.2 to 2.1.0 (#692)
Bumps [Swatinem/rust-cache](https://github.com/Swatinem/rust-cache) from 2.0.2 to 2.1.0. - [Release notes](https://github.com/Swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md) - [Commits](Swatinem/rust-cache@b5ec9ed...b894d59) --- updated-dependencies: - dependency-name: Swatinem/rust-cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for bb5c7f1 - Browse repository at this point
Copy the full SHA bb5c7f1View commit details
Commits on Nov 10, 2022
-
build(deps): bump Swatinem/rust-cache from 2.1.0 to 2.2.0 (#694)
Bumps [Swatinem/rust-cache](https://github.com/Swatinem/rust-cache) from 2.1.0 to 2.2.0. - [Release notes](https://github.com/Swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md) - [Commits](Swatinem/rust-cache@b894d59...359a70e) --- updated-dependencies: - dependency-name: Swatinem/rust-cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for fc75eaa - Browse repository at this point
Copy the full SHA fc75eaaView commit details
Commits on Nov 29, 2022
-
* Remove `parity-util-mem` * Remove reference to `parity-util-mem` from CI
Configuration menu - View commit details
-
Copy full SHA for 806ca48 - Browse repository at this point
Copy the full SHA 806ca48View commit details -
* update ethereum-types and uint changelogs * purge parity-util-mem * cargo set-version --bump minor -p kvdb * cargo set-version --bump patch -p uint * cargo set-version --bump patch -p ethereum-types * kvdb-rocksdb: rm unused path field * kvdb-rocksdb: rm unused method * update kvdb&co * rm extra newline
Configuration menu - View commit details
-
Copy full SHA for c41d51d - Browse repository at this point
Copy the full SHA c41d51dView commit details
Commits on Jan 11, 2023
-
build(deps): update sysinfo requirement from 0.26.0 to 0.27.5 (#706)
Updates the requirements on [sysinfo](https://github.com/GuillaumeGomez/sysinfo) to permit the latest version. - [Release notes](https://github.com/GuillaumeGomez/sysinfo/releases) - [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md) - [Commits](https://github.com/GuillaumeGomez/sysinfo/commits) --- updated-dependencies: - dependency-name: sysinfo dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 78ec931 - Browse repository at this point
Copy the full SHA 78ec931View commit details
Commits on Jan 26, 2023
-
Add bounded-collections crate (#708)
* Add bounded-collections crate This new crate contains the bounded types that we see in Substrate, and traits that are used to support the implementation of such types. * cargo fmt * Fixes * Only run tests when std is enabled * Rename bounded-collections to core-types * Rename core-types back to bounded-collections * Fixes
Configuration menu - View commit details
-
Copy full SHA for 8ed1307 - Browse repository at this point
Copy the full SHA 8ed1307View commit details -
Configuration menu - View commit details
-
Copy full SHA for 528e5e7 - Browse repository at this point
Copy the full SHA 528e5e7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5ba1db5 - Browse repository at this point
Copy the full SHA 5ba1db5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0e53fd9 - Browse repository at this point
Copy the full SHA 0e53fd9View commit details
Commits on Jan 27, 2023
-
Ensure bounded-collections compiles under no_std (#712)
* Ensure bounded-collections compiles under no_std * Add README.md * Fixes * Add CHANGELOG.md to bounded-collections * Add CI check for bounded-collections
Configuration menu - View commit details
-
Copy full SHA for b9123ad - Browse repository at this point
Copy the full SHA b9123adView commit details -
Remove non-existent bounded mod reference (#715)
* Remove non-existent bounded mod reference * Bump version
Configuration menu - View commit details
-
Copy full SHA for 854e68b - Browse repository at this point
Copy the full SHA 854e68bView commit details
Commits on Feb 1, 2023
-
* Add support for checked num traits * import traits
Configuration menu - View commit details
-
Copy full SHA for c2da3b9 - Browse repository at this point
Copy the full SHA c2da3b9View commit details -
bounded_vec: Avoid unnecessary allocation when decoding (#713)
* bounded_vec: Avoid unnecessary allocation when decoding * Fix unnecessary alloc for other types; add `Hash` derive * bounded-collections: Update version to 0.1.4 * Cargo fmt * bounded-collections: add some missing encoding tests
Configuration menu - View commit details
-
Copy full SHA for 07127b6 - Browse repository at this point
Copy the full SHA 07127b6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0eb011b - Browse repository at this point
Copy the full SHA 0eb011bView commit details -
Uint: Fix clippy warnings (#707)
- In the uint crate - When using the uint crate
Configuration menu - View commit details
-
Copy full SHA for 223af1d - Browse repository at this point
Copy the full SHA 223af1dView commit details
Commits on Feb 16, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 2fb72ee - Browse repository at this point
Copy the full SHA 2fb72eeView commit details
Commits on Feb 27, 2023
-
build(deps): update sysinfo requirement from 0.27.5 to 0.28.1 (#724)
Updates the requirements on [sysinfo](https://github.com/GuillaumeGomez/sysinfo) to permit the latest version. - [Release notes](https://github.com/GuillaumeGomez/sysinfo/releases) - [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md) - [Commits](https://github.com/GuillaumeGomez/sysinfo/commits) --- updated-dependencies: - dependency-name: sysinfo dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 108da26 - Browse repository at this point
Copy the full SHA 108da26View commit details -
build(deps): bump Swatinem/rust-cache from 2.2.0 to 2.2.1 (#725)
Bumps [Swatinem/rust-cache](https://github.com/Swatinem/rust-cache) from 2.2.0 to 2.2.1. - [Release notes](https://github.com/Swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md) - [Commits](Swatinem/rust-cache@359a70e...6fd3edf) --- updated-dependencies: - dependency-name: Swatinem/rust-cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 27b17c0 - Browse repository at this point
Copy the full SHA 27b17c0View commit details
Commits on Apr 21, 2023
-
build(deps): update hex-literal requirement from 0.3.1 to 0.4.1 (#739)
Updates the requirements on [hex-literal](https://github.com/RustCrypto/utils) to permit the latest version. - [Release notes](https://github.com/RustCrypto/utils/releases) - [Commits](RustCrypto/utils@hex-literal-v0.3.1...hex-literal-v0.4.1) --- updated-dependencies: - dependency-name: hex-literal dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 2fa111d - Browse repository at this point
Copy the full SHA 2fa111dView commit details -
upgrade
rocksdb
to 0.20.1 (#743)* kvdb-rocksdb: update to 0.20.1 and fix test * update changelog * bump version
Configuration menu - View commit details
-
Copy full SHA for dbfbbde - Browse repository at this point
Copy the full SHA dbfbbdeView commit details
Commits on Apr 22, 2023
-
fixed-hash: Derive PartialEq and Eq instead of implementing them manu…
…ally (#742) * derive PartialEq and Eq instead of implementing them manually * add unit test * cargo fmt
Configuration menu - View commit details
-
Copy full SHA for 910097e - Browse repository at this point
Copy the full SHA 910097eView commit details
Commits on Apr 28, 2023
-
Make
Const*
typesClone+Default
and fixDebug
(#744)* Impl Default, Clone and Debug Signed-off-by: Oliver Tale-Yazdi <[email protected]> * Add tests Signed-off-by: Oliver Tale-Yazdi <[email protected]> * Bump to 0.1.6 Signed-off-by: Oliver Tale-Yazdi <[email protected]> * std-guard 'format' test Signed-off-by: Oliver Tale-Yazdi <[email protected]> --------- Signed-off-by: Oliver Tale-Yazdi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4bcc5b2 - Browse repository at this point
Copy the full SHA 4bcc5b2View commit details
Commits on May 8, 2023
-
* serde feature added Support for serde derivations in no_std. Part of: paritytech/substrate#12994 * fixes * CI tests for serde, CHANGELOG updated * version changed to 0.1.7 * fix for ci command * Update bounded-collections/Cargo.toml Co-authored-by: Bastian Köcher <[email protected]> --------- Co-authored-by: Bastian Köcher <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3401582 - Browse repository at this point
Copy the full SHA 3401582View commit details -
Configuration menu - View commit details
-
Copy full SHA for bd9d3e0 - Browse repository at this point
Copy the full SHA bd9d3e0View commit details
Commits on May 10, 2023
-
* Update rockdb to 0.21 * Fix a compilation error * Bump version and update changelog
Configuration menu - View commit details
-
Copy full SHA for 9fa489c - Browse repository at this point
Copy the full SHA 9fa489cView commit details -
build(deps): update sysinfo requirement from 0.28.1 to 0.29.0 (#747)
Updates the requirements on [sysinfo](https://github.com/GuillaumeGomez/sysinfo) to permit the latest version. - [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md) - [Commits](https://github.com/GuillaumeGomez/sysinfo/commits) --- updated-dependencies: - dependency-name: sysinfo dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for aea11e8 - Browse repository at this point
Copy the full SHA aea11e8View commit details
Commits on Jun 12, 2023
-
Fallible element pushers should return unused element (#758)
* Fallible element pushers should return unused element * 0.1.7 release prep * Fixes --------- Co-authored-by: Keith Yeung <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a5ef730 - Browse repository at this point
Copy the full SHA a5ef730View commit details
Commits on Jul 10, 2023
-
Configuration menu - View commit details
-
Copy full SHA for db9940d - Browse repository at this point
Copy the full SHA db9940dView commit details
Commits on Jul 12, 2023
-
Configuration menu - View commit details
-
Copy full SHA for dce4bbd - Browse repository at this point
Copy the full SHA dce4bbdView commit details -
build(deps): update criterion requirement from 0.4.0 to 0.5.1 (#757)
Updates the requirements on [criterion](https://github.com/bheisler/criterion.rs) to permit the latest version. - [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md) - [Commits](bheisler/criterion.rs@0.4.0...0.5.1) --- updated-dependencies: - dependency-name: criterion dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 0f96b34 - Browse repository at this point
Copy the full SHA 0f96b34View commit details -
build(deps): bump Swatinem/rust-cache from 2.2.1 to 2.5.1 (#763)
Bumps [Swatinem/rust-cache](https://github.com/swatinem/rust-cache) from 2.2.1 to 2.5.1. - [Release notes](https://github.com/swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md) - [Commits](Swatinem/rust-cache@6fd3edf...dd05243) --- updated-dependencies: - dependency-name: Swatinem/rust-cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for b0c12c2 - Browse repository at this point
Copy the full SHA b0c12c2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7194def - Browse repository at this point
Copy the full SHA 7194defView commit details -
Configuration menu - View commit details
-
Copy full SHA for d3a9327 - Browse repository at this point
Copy the full SHA d3a9327View commit details
Commits on Aug 22, 2023
-
build(deps): bump Swatinem/rust-cache from 2.5.1 to 2.6.2 (#778)
Bumps [Swatinem/rust-cache](https://github.com/swatinem/rust-cache) from 2.5.1 to 2.6.2. - [Release notes](https://github.com/swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md) - [Commits](Swatinem/rust-cache@dd05243...e207df5) --- updated-dependencies: - dependency-name: Swatinem/rust-cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for f9cfc79 - Browse repository at this point
Copy the full SHA f9cfc79View commit details
Commits on Aug 31, 2023
-
Deserialize boundedbtreeset (#781)
* deserialize for btreeset * tests added * run tests under std for bounded-btree-set * insert after bound check, new tests for bound check
Configuration menu - View commit details
-
Copy full SHA for a8a85a4 - Browse repository at this point
Copy the full SHA a8a85a4View commit details
Commits on Sep 17, 2023
-
bounded-collections: fix build for no_std + serde (#789)
* bounded-collections: fix build for no_std + serde * put serde test under feature * try something * try something else * try without
Configuration menu - View commit details
-
Copy full SHA for 7b41a04 - Browse repository at this point
Copy the full SHA 7b41a04View commit details
Commits on Sep 19, 2023
-
build(deps): bump Swatinem/rust-cache from 2.6.2 to 2.7.0 (#787)
Bumps [Swatinem/rust-cache](https://github.com/swatinem/rust-cache) from 2.6.2 to 2.7.0. - [Release notes](https://github.com/swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md) - [Commits](Swatinem/rust-cache@e207df5...a95ba19) --- updated-dependencies: - dependency-name: Swatinem/rust-cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 6ba5669 - Browse repository at this point
Copy the full SHA 6ba5669View commit details
Commits on Oct 9, 2023
-
feat(schema): added json schema to support schema on xcm messages (#785)
* schemars * comment * clean up, aligned version of schema with CosmWasm for now * Update bounded-collections/src/bounded_vec.rs Co-authored-by: ordian <[email protected]> --------- Co-authored-by: ordian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 97973e5 - Browse repository at this point
Copy the full SHA 97973e5View commit details
Commits on Oct 10, 2023
-
build(deps): bump actions/checkout from 3 to 4 (#783)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 400398a - Browse repository at this point
Copy the full SHA 400398aView commit details -
release primitive-types and bounded-collections (#794)
* primitive-types: release 0.12.2 * bounded-collections: release 0.1.9
Configuration menu - View commit details
-
Copy full SHA for b4e1516 - Browse repository at this point
Copy the full SHA b4e1516View commit details
Commits on Nov 28, 2023
-
Add
BoundedVec::try_rotate_{left,right}
(#800)* Add BoundedVec::try_rotate_{left,right} Signed-off-by: Oliver Tale-Yazdi <[email protected]> * Update changelog Signed-off-by: Oliver Tale-Yazdi <[email protected]> --------- Signed-off-by: Oliver Tale-Yazdi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3a35610 - Browse repository at this point
Copy the full SHA 3a35610View commit details
Commits on Dec 5, 2023
-
improvement(primitive-types): better json-schema, allow to build for …
…serde_no_std/json-schema feature/targets combinations (#801) * more std * fixes of std and improvement of schema * better alloc support
Configuration menu - View commit details
-
Copy full SHA for 4da96ae - Browse repository at this point
Copy the full SHA 4da96aeView commit details -
build(deps): bump Swatinem/rust-cache from 2.7.0 to 2.7.1 (#795)
Bumps [Swatinem/rust-cache](https://github.com/swatinem/rust-cache) from 2.7.0 to 2.7.1. - [Release notes](https://github.com/swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md) - [Commits](Swatinem/rust-cache@a95ba19...3cf7f8c) --- updated-dependencies: - dependency-name: Swatinem/rust-cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 8384f5f - Browse repository at this point
Copy the full SHA 8384f5fView commit details -
imp: in
fixed-hash
allow opting outrand
whenstd
enabled (#804)* imp: fixed-hash allow opting out rand when std enabled * Update fixed-hash/Cargo.toml * fix: cargo test --no-default-features * Update fixed-hash/Cargo.toml Co-authored-by: Bastian Köcher <[email protected]> --------- Co-authored-by: Bastian Köcher <[email protected]> Co-authored-by: ordian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8723455 - Browse repository at this point
Copy the full SHA 8723455View commit details
Commits on Jan 2, 2024
-
`mips64-unknown-linux-muslabi64 target` (used to test bigendian) was removed in 1.75.0. The workaround for now is to pin the toolchain to 1.74.0. We could try using `cross` instead in the future.
Configuration menu - View commit details
-
Copy full SHA for 422471a - Browse repository at this point
Copy the full SHA 422471aView commit details -
rlp: tests: fix 32-bit overflow (#808)
the overflow behaviour depends on the width of usize, conditionalize accordingly. Fixes: #802 Signed-off-by: Fabian Grünbichler <[email protected]> Co-authored-by: ordian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 31e7719 - Browse repository at this point
Copy the full SHA 31e7719View commit details
Commits on Jan 11, 2024
-
build(deps): bump Swatinem/rust-cache from 2.7.1 to 2.7.2 (#823)
Bumps [Swatinem/rust-cache](https://github.com/swatinem/rust-cache) from 2.7.1 to 2.7.2. - [Release notes](https://github.com/swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md) - [Commits](Swatinem/rust-cache@3cf7f8c...a226033) --- updated-dependencies: - dependency-name: Swatinem/rust-cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 2241f64 - Browse repository at this point
Copy the full SHA 2241f64View commit details
Commits on Jan 15, 2024
-
build(deps): bump Swatinem/rust-cache from 2.7.2 to 2.7.3 (#824)
Bumps [Swatinem/rust-cache](https://github.com/swatinem/rust-cache) from 2.7.2 to 2.7.3. - [Release notes](https://github.com/swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md) - [Commits](Swatinem/rust-cache@a226033...23bce25) --- updated-dependencies: - dependency-name: Swatinem/rust-cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 314bda6 - Browse repository at this point
Copy the full SHA 314bda6View commit details
Commits on Jan 29, 2024
-
* Release 0.2.0 Signed-off-by: Oliver Tale-Yazdi <[email protected]> * CHANGELOG release date Signed-off-by: Oliver Tale-Yazdi <[email protected]> --------- Signed-off-by: Oliver Tale-Yazdi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for dbf46ba - Browse repository at this point
Copy the full SHA dbf46baView commit details
Commits on Feb 5, 2024
-
* Add more comment * Apply suggestions from code review Co-authored-by: Bastian Köcher <[email protected]> --------- Co-authored-by: ordian <[email protected]> Co-authored-by: Bastian Köcher <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d5e9c1d - Browse repository at this point
Copy the full SHA d5e9c1dView commit details
Commits on Aug 10, 2024
-
primitive-types: add repository URL to Cargo.toml (#844)
This adds the repository URL to the Cargo manifest of `primitive-types`, so that the crate published on crates.io can be automatically linked back to the source repository.
Configuration menu - View commit details
-
Copy full SHA for 757e2bd - Browse repository at this point
Copy the full SHA 757e2bdView commit details -
fix compile errors with new Rust (#854)
* fix compile errors with new Rust * try fixing rug compilation error
Configuration menu - View commit details
-
Copy full SHA for 9ff9316 - Browse repository at this point
Copy the full SHA 9ff9316View commit details -
Upgrade rocksdb to 0.22 (#853)
Co-authored-by: ordian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 2f1866d - Browse repository at this point
Copy the full SHA 2f1866dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 701148e - Browse repository at this point
Copy the full SHA 701148eView commit details
Commits on Sep 10, 2024
-
Remove From [u8; n] impl for uint types (#859)
* update uint and deps * Fix uppercase * Apply suggestions from code review Co-authored-by: Alexander Theißen <[email protected]> * Update changelogs * Apply suggestions from code review * Apply suggestions from code review --------- Co-authored-by: Alexander Theißen <[email protected]> Co-authored-by: ordian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0db43ee - Browse repository at this point
Copy the full SHA 0db43eeView commit details
Commits on Sep 11, 2024
-
* Bump versions * Update rlp changelog * adjust the date --------- Co-authored-by: ordian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 63c5afb - Browse repository at this point
Copy the full SHA 63c5afbView commit details -
bump rlp-derive version (#861)
* bump rlp-derive version * fix rlp version
Configuration menu - View commit details
-
Copy full SHA for ab7a762 - Browse repository at this point
Copy the full SHA ab7a762View commit details
Commits on Sep 12, 2024
-
another missing bump (impl-codec) (#863)
* bump impl-codec * fix rlp changelog * bump dep * ethereum-types too * ethbloom too
Configuration menu - View commit details
-
Copy full SHA for 7c701c6 - Browse repository at this point
Copy the full SHA 7c701c6View commit details
Commits on Oct 8, 2024
-
Serde Serialize & Deserialize for BoundedBTreeMap (#870)
* implementation * Changelog * Move tests down * Remove clone bound * Set date to Monday Co-authored-by: ordian <[email protected]> * Fix match that's always okay Co-authored-by: Bastian Köcher <[email protected]> * Update Cargo.toml * Move serde tests behind feature flag * Add ToString * Remove underscore * Update bounded-collections/CHANGELOG.md * fmt --------- Co-authored-by: ordian <[email protected]> Co-authored-by: Bastian Köcher <[email protected]> Co-authored-by: ordian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 366a95c - Browse repository at this point
Copy the full SHA 366a95cView commit details
Commits on Oct 10, 2024
-
fixed-hash: remove
byteorder
feature (#872)* fixed-hash: remove byteorder features * fix fixed-hash part of CI * fix tests * update readme
Configuration menu - View commit details
-
Copy full SHA for 85f813a - Browse repository at this point
Copy the full SHA 85f813aView commit details
Commits on Oct 16, 2024
-
build(deps): bump Swatinem/rust-cache from 2.7.3 to 2.7.5 (#876)
Bumps [Swatinem/rust-cache](https://github.com/swatinem/rust-cache) from 2.7.3 to 2.7.5. - [Release notes](https://github.com/swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md) - [Commits](Swatinem/rust-cache@23bce25...82a92a6) --- updated-dependencies: - dependency-name: Swatinem/rust-cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 6a5bff1 - Browse repository at this point
Copy the full SHA 6a5bff1View commit details -
build(deps): update jsonschema requirement from 0.17 to 0.23 (#875)
Updates the requirements on [jsonschema](https://github.com/Stranger6667/jsonschema-rs) to permit the latest version. - [Release notes](https://github.com/Stranger6667/jsonschema-rs/releases) - [Changelog](https://github.com/Stranger6667/jsonschema-rs/blob/master/CHANGELOG.md) - [Commits](Stranger6667/jsonschema@rust-v0.17.0...rust-v0.23.0) --- updated-dependencies: - dependency-name: jsonschema dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 6afa783 - Browse repository at this point
Copy the full SHA 6afa783View commit details
Commits on Nov 4, 2024
-
* bump rust msrv to 1.75 * bump CI rust to 1.75 * remove big-endian tests
Configuration menu - View commit details
-
Copy full SHA for 315299d - Browse repository at this point
Copy the full SHA 315299dView commit details -
bounded-collections: Add Const(Int|Uint) for generic const getter sup…
…port (#878) * bounded-collections: Add Const(Int|Uint) for generic const getter support * bounded-collections: Update changelog * bounded-collections: Clean up helper types for ConstUint * bounded-collections: Fix broken compile-time check * bounded-collections: Add compile_fail doc test for overflown ConstUint * bounded-collections: Address review comments --------- Co-authored-by: ordian <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 31ae234 - Browse repository at this point
Copy the full SHA 31ae234View commit details
Commits on Nov 8, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e3787dc - Browse repository at this point
Copy the full SHA e3787dcView commit details
Commits on Dec 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 8082691 - Browse repository at this point
Copy the full SHA 8082691View commit details
Commits on Dec 9, 2024
-
Add
is_full
API to all bounded collections (#887)* add `is_full` api to all bounded collections * Update bounded-collections/src/weak_bounded_vec.rs Co-authored-by: Bastian Köcher <[email protected]> --------- Co-authored-by: Bastian Köcher <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d54ac84 - Browse repository at this point
Copy the full SHA d54ac84View commit details