parity-common icon indicating copy to clipboard operation
parity-common copied to clipboard

Collection of crates used in Parity projects

Results 63 parity-common issues
Sort by recently updated
recently updated
newest added

Updates the requirements on [rocksdb](https://github.com/rust-rocksdb/rust-rocksdb) to permit the latest version. Release notes Sourced from rocksdb's releases. v0.22.0 What's Changed Fix memory leak when calling get_writebatch and avoid unnecessary clones by...

A2-insubstantial
M5-dependencies

https://github.com/paritytech/parity-common/actions/runs/7699796181/job/20982219165 https://docs.rs/rug/latest/rug/struct.Integer.html#method.to_digits

Updates the requirements on [sysinfo](https://github.com/GuillaumeGomez/sysinfo) to permit the latest version. Changelog Sourced from sysinfo's changelog. 0.30.5 Windows: Correctly retrieve processes name on 32 bits platforms. Windows: Fix swap memory computation....

A2-insubstantial
M5-dependencies

**Is there an existing issue?** - [x] I have searched the existing issues. There is no such request yet, but here's a request with the most similar vibe: #691 **Experiencing...

Types like `U256` could easily impl https://docs.rs/num-traits/latest/num_traits/cast/trait.FromPrimitive.html when the `num-traits` feature is enabled. Happy to submit a PR adding this if you agree it would be desirable.

### Is there an existing issue? - [X] I have searched the existing issues ### Experiencing problems? Have you tried our Stack Exchange first? - [X] This is not a...

F8-enhancement

### Is there an existing issue? - [X] I have searched the existing issues ### Experiencing problems? Have you tried our Stack Exchange first? - [X] This is not a...

Three examples that should be rejected ```rust let invalid_rlp = [193, 4, 4]; let rlp = rlp::Rlp::new(&invalid_rlp); let item_count = rlp.item_count().unwrap(); // this should fail assert_eq!(item_count, 2); // wrong. invalid...

Unsure if this a bug or an api shortcoming. When decoding bytes that have extra data, I would expect one of: 1. an error on decoding 2. a way to...