├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── CODEOWNERS ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE-APACHE2 ├── LICENSE-MIT ├── README.md ├── bounded-collections ├── CHANGELOG.md ├── Cargo.toml ├── README.md └── src │ ├── bounded_btree_map.rs │ ├── bounded_btree_set.rs │ ├── bounded_vec.rs │ ├── codec_utils.rs │ ├── const_int.rs │ ├── lib.rs │ ├── test.rs │ └── weak_bounded_vec.rs ├── ethbloom ├── CHANGELOG.md ├── Cargo.toml ├── benches │ ├── bloom.rs │ └── unrolling.rs └── src │ └── lib.rs ├── ethereum-types ├── CHANGELOG.md ├── Cargo.toml ├── src │ ├── hash.rs │ ├── lib.rs │ └── uint.rs └── tests │ └── serde.rs ├── fixed-hash ├── CHANGELOG.md ├── Cargo.toml ├── README.md ├── benches │ └── cmp.rs └── src │ ├── hash.rs │ ├── lib.rs │ └── tests.rs ├── keccak-hash ├── CHANGELOG.md ├── Cargo.toml ├── README.md ├── benches │ └── keccak_256.rs └── src │ └── lib.rs ├── kvdb-memorydb ├── CHANGELOG.md ├── Cargo.toml └── src │ └── lib.rs ├── kvdb-rocksdb ├── CHANGELOG.md ├── Cargo.toml ├── benches │ ├── .gitignore │ └── bench_read_perf.rs ├── examples │ └── memtest.rs └── src │ ├── iter.rs │ ├── lib.rs │ └── stats.rs ├── kvdb-shared-tests ├── CHANGELOG.md ├── Cargo.toml └── src │ └── lib.rs ├── kvdb ├── CHANGELOG.md ├── Cargo.toml └── src │ ├── io_stats.rs │ └── lib.rs ├── license-header ├── parity-bytes ├── CHANGELOG.md ├── Cargo.toml ├── README.md └── src │ └── lib.rs ├── primitive-types ├── CHANGELOG.md ├── Cargo.toml ├── impls │ ├── codec │ │ ├── CHANGELOG.md │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── num-traits │ │ ├── CHANGELOG.md │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── rlp │ │ ├── CHANGELOG.md │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── serde │ │ ├── CHANGELOG.md │ │ ├── Cargo.toml │ │ ├── benches │ │ ├── impl_serde.rs │ │ └── input.rs │ │ └── src │ │ ├── lib.rs │ │ └── serialize.rs ├── src │ ├── fp_conversion.rs │ ├── json_schema.rs │ └── lib.rs └── tests │ ├── fp_conversion.rs │ ├── num_traits.rs │ └── scale_info.rs ├── rlp-derive ├── CHANGELOG.md ├── Cargo.toml ├── src │ ├── de.rs │ ├── en.rs │ └── lib.rs └── tests │ └── rlp.rs ├── rlp ├── CHANGELOG.md ├── Cargo.toml ├── README.md ├── benches │ └── rlp.rs ├── src │ ├── error.rs │ ├── impls.rs │ ├── lib.rs │ ├── rlpin.rs │ ├── stream.rs │ └── traits.rs └── tests │ └── tests.rs ├── rustfmt.toml └── uint ├── CHANGELOG.md ├── Cargo.toml ├── README.md ├── benches └── bigint.rs ├── examples └── modular.rs ├── fuzz ├── .gitignore ├── Cargo.toml ├── README.md └── fuzz_targets │ ├── div_mod.rs │ ├── div_mod_word.rs │ └── isqrt.rs ├── src ├── lib.rs └── uint.rs └── tests └── uint_tests.rs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/LICENSE-APACHE2 -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/README.md -------------------------------------------------------------------------------- /bounded-collections/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/bounded-collections/CHANGELOG.md -------------------------------------------------------------------------------- /bounded-collections/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/bounded-collections/Cargo.toml -------------------------------------------------------------------------------- /bounded-collections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/bounded-collections/README.md -------------------------------------------------------------------------------- /bounded-collections/src/bounded_btree_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/bounded-collections/src/bounded_btree_map.rs -------------------------------------------------------------------------------- /bounded-collections/src/bounded_btree_set.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/bounded-collections/src/bounded_btree_set.rs -------------------------------------------------------------------------------- /bounded-collections/src/bounded_vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/bounded-collections/src/bounded_vec.rs -------------------------------------------------------------------------------- /bounded-collections/src/codec_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/bounded-collections/src/codec_utils.rs -------------------------------------------------------------------------------- /bounded-collections/src/const_int.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/bounded-collections/src/const_int.rs -------------------------------------------------------------------------------- /bounded-collections/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/bounded-collections/src/lib.rs -------------------------------------------------------------------------------- /bounded-collections/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/bounded-collections/src/test.rs -------------------------------------------------------------------------------- /bounded-collections/src/weak_bounded_vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/bounded-collections/src/weak_bounded_vec.rs -------------------------------------------------------------------------------- /ethbloom/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/ethbloom/CHANGELOG.md -------------------------------------------------------------------------------- /ethbloom/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/ethbloom/Cargo.toml -------------------------------------------------------------------------------- /ethbloom/benches/bloom.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/ethbloom/benches/bloom.rs -------------------------------------------------------------------------------- /ethbloom/benches/unrolling.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/ethbloom/benches/unrolling.rs -------------------------------------------------------------------------------- /ethbloom/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/ethbloom/src/lib.rs -------------------------------------------------------------------------------- /ethereum-types/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/ethereum-types/CHANGELOG.md -------------------------------------------------------------------------------- /ethereum-types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/ethereum-types/Cargo.toml -------------------------------------------------------------------------------- /ethereum-types/src/hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/ethereum-types/src/hash.rs -------------------------------------------------------------------------------- /ethereum-types/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/ethereum-types/src/lib.rs -------------------------------------------------------------------------------- /ethereum-types/src/uint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/ethereum-types/src/uint.rs -------------------------------------------------------------------------------- /ethereum-types/tests/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/ethereum-types/tests/serde.rs -------------------------------------------------------------------------------- /fixed-hash/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/fixed-hash/CHANGELOG.md -------------------------------------------------------------------------------- /fixed-hash/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/fixed-hash/Cargo.toml -------------------------------------------------------------------------------- /fixed-hash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/fixed-hash/README.md -------------------------------------------------------------------------------- /fixed-hash/benches/cmp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/fixed-hash/benches/cmp.rs -------------------------------------------------------------------------------- /fixed-hash/src/hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/fixed-hash/src/hash.rs -------------------------------------------------------------------------------- /fixed-hash/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/fixed-hash/src/lib.rs -------------------------------------------------------------------------------- /fixed-hash/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/fixed-hash/src/tests.rs -------------------------------------------------------------------------------- /keccak-hash/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/keccak-hash/CHANGELOG.md -------------------------------------------------------------------------------- /keccak-hash/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/keccak-hash/Cargo.toml -------------------------------------------------------------------------------- /keccak-hash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/keccak-hash/README.md -------------------------------------------------------------------------------- /keccak-hash/benches/keccak_256.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/keccak-hash/benches/keccak_256.rs -------------------------------------------------------------------------------- /keccak-hash/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/keccak-hash/src/lib.rs -------------------------------------------------------------------------------- /kvdb-memorydb/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/kvdb-memorydb/CHANGELOG.md -------------------------------------------------------------------------------- /kvdb-memorydb/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/kvdb-memorydb/Cargo.toml -------------------------------------------------------------------------------- /kvdb-memorydb/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/kvdb-memorydb/src/lib.rs -------------------------------------------------------------------------------- /kvdb-rocksdb/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/kvdb-rocksdb/CHANGELOG.md -------------------------------------------------------------------------------- /kvdb-rocksdb/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/kvdb-rocksdb/Cargo.toml -------------------------------------------------------------------------------- /kvdb-rocksdb/benches/.gitignore: -------------------------------------------------------------------------------- 1 | _rocksdb_bench_get 2 | -------------------------------------------------------------------------------- /kvdb-rocksdb/benches/bench_read_perf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/kvdb-rocksdb/benches/bench_read_perf.rs -------------------------------------------------------------------------------- /kvdb-rocksdb/examples/memtest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/kvdb-rocksdb/examples/memtest.rs -------------------------------------------------------------------------------- /kvdb-rocksdb/src/iter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/kvdb-rocksdb/src/iter.rs -------------------------------------------------------------------------------- /kvdb-rocksdb/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/kvdb-rocksdb/src/lib.rs -------------------------------------------------------------------------------- /kvdb-rocksdb/src/stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/kvdb-rocksdb/src/stats.rs -------------------------------------------------------------------------------- /kvdb-shared-tests/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/kvdb-shared-tests/CHANGELOG.md -------------------------------------------------------------------------------- /kvdb-shared-tests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/kvdb-shared-tests/Cargo.toml -------------------------------------------------------------------------------- /kvdb-shared-tests/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/kvdb-shared-tests/src/lib.rs -------------------------------------------------------------------------------- /kvdb/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/kvdb/CHANGELOG.md -------------------------------------------------------------------------------- /kvdb/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/kvdb/Cargo.toml -------------------------------------------------------------------------------- /kvdb/src/io_stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/kvdb/src/io_stats.rs -------------------------------------------------------------------------------- /kvdb/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/kvdb/src/lib.rs -------------------------------------------------------------------------------- /license-header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/license-header -------------------------------------------------------------------------------- /parity-bytes/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/parity-bytes/CHANGELOG.md -------------------------------------------------------------------------------- /parity-bytes/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/parity-bytes/Cargo.toml -------------------------------------------------------------------------------- /parity-bytes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/parity-bytes/README.md -------------------------------------------------------------------------------- /parity-bytes/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/parity-bytes/src/lib.rs -------------------------------------------------------------------------------- /primitive-types/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/CHANGELOG.md -------------------------------------------------------------------------------- /primitive-types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/Cargo.toml -------------------------------------------------------------------------------- /primitive-types/impls/codec/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/impls/codec/CHANGELOG.md -------------------------------------------------------------------------------- /primitive-types/impls/codec/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/impls/codec/Cargo.toml -------------------------------------------------------------------------------- /primitive-types/impls/codec/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/impls/codec/src/lib.rs -------------------------------------------------------------------------------- /primitive-types/impls/num-traits/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/impls/num-traits/CHANGELOG.md -------------------------------------------------------------------------------- /primitive-types/impls/num-traits/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/impls/num-traits/Cargo.toml -------------------------------------------------------------------------------- /primitive-types/impls/num-traits/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/impls/num-traits/src/lib.rs -------------------------------------------------------------------------------- /primitive-types/impls/rlp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/impls/rlp/CHANGELOG.md -------------------------------------------------------------------------------- /primitive-types/impls/rlp/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/impls/rlp/Cargo.toml -------------------------------------------------------------------------------- /primitive-types/impls/rlp/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/impls/rlp/src/lib.rs -------------------------------------------------------------------------------- /primitive-types/impls/serde/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/impls/serde/CHANGELOG.md -------------------------------------------------------------------------------- /primitive-types/impls/serde/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/impls/serde/Cargo.toml -------------------------------------------------------------------------------- /primitive-types/impls/serde/benches/impl_serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/impls/serde/benches/impl_serde.rs -------------------------------------------------------------------------------- /primitive-types/impls/serde/benches/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/impls/serde/benches/input.rs -------------------------------------------------------------------------------- /primitive-types/impls/serde/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/impls/serde/src/lib.rs -------------------------------------------------------------------------------- /primitive-types/impls/serde/src/serialize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/impls/serde/src/serialize.rs -------------------------------------------------------------------------------- /primitive-types/src/fp_conversion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/src/fp_conversion.rs -------------------------------------------------------------------------------- /primitive-types/src/json_schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/src/json_schema.rs -------------------------------------------------------------------------------- /primitive-types/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/src/lib.rs -------------------------------------------------------------------------------- /primitive-types/tests/fp_conversion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/tests/fp_conversion.rs -------------------------------------------------------------------------------- /primitive-types/tests/num_traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/tests/num_traits.rs -------------------------------------------------------------------------------- /primitive-types/tests/scale_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/primitive-types/tests/scale_info.rs -------------------------------------------------------------------------------- /rlp-derive/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/rlp-derive/CHANGELOG.md -------------------------------------------------------------------------------- /rlp-derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/rlp-derive/Cargo.toml -------------------------------------------------------------------------------- /rlp-derive/src/de.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/rlp-derive/src/de.rs -------------------------------------------------------------------------------- /rlp-derive/src/en.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/rlp-derive/src/en.rs -------------------------------------------------------------------------------- /rlp-derive/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/rlp-derive/src/lib.rs -------------------------------------------------------------------------------- /rlp-derive/tests/rlp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/rlp-derive/tests/rlp.rs -------------------------------------------------------------------------------- /rlp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/rlp/CHANGELOG.md -------------------------------------------------------------------------------- /rlp/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/rlp/Cargo.toml -------------------------------------------------------------------------------- /rlp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/rlp/README.md -------------------------------------------------------------------------------- /rlp/benches/rlp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/rlp/benches/rlp.rs -------------------------------------------------------------------------------- /rlp/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/rlp/src/error.rs -------------------------------------------------------------------------------- /rlp/src/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/rlp/src/impls.rs -------------------------------------------------------------------------------- /rlp/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/rlp/src/lib.rs -------------------------------------------------------------------------------- /rlp/src/rlpin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/rlp/src/rlpin.rs -------------------------------------------------------------------------------- /rlp/src/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/rlp/src/stream.rs -------------------------------------------------------------------------------- /rlp/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/rlp/src/traits.rs -------------------------------------------------------------------------------- /rlp/tests/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/rlp/tests/tests.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /uint/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/uint/CHANGELOG.md -------------------------------------------------------------------------------- /uint/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/uint/Cargo.toml -------------------------------------------------------------------------------- /uint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/uint/README.md -------------------------------------------------------------------------------- /uint/benches/bigint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/uint/benches/bigint.rs -------------------------------------------------------------------------------- /uint/examples/modular.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/uint/examples/modular.rs -------------------------------------------------------------------------------- /uint/fuzz/.gitignore: -------------------------------------------------------------------------------- 1 | Cargo.lock 2 | target 3 | corpus 4 | artifacts 5 | -------------------------------------------------------------------------------- /uint/fuzz/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/uint/fuzz/Cargo.toml -------------------------------------------------------------------------------- /uint/fuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/uint/fuzz/README.md -------------------------------------------------------------------------------- /uint/fuzz/fuzz_targets/div_mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/uint/fuzz/fuzz_targets/div_mod.rs -------------------------------------------------------------------------------- /uint/fuzz/fuzz_targets/div_mod_word.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/uint/fuzz/fuzz_targets/div_mod_word.rs -------------------------------------------------------------------------------- /uint/fuzz/fuzz_targets/isqrt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/uint/fuzz/fuzz_targets/isqrt.rs -------------------------------------------------------------------------------- /uint/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/uint/src/lib.rs -------------------------------------------------------------------------------- /uint/src/uint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/uint/src/uint.rs -------------------------------------------------------------------------------- /uint/tests/uint_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/parity-common/HEAD/uint/tests/uint_tests.rs --------------------------------------------------------------------------------