├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benches └── bigint.rs ├── examples └── modular.rs └── src ├── lib.rs └── uint.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | .idea 3 | Cargo.lock 4 | *.swp 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/bigint/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/bigint/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/bigint/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/bigint/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/bigint/HEAD/README.md -------------------------------------------------------------------------------- /benches/bigint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/bigint/HEAD/benches/bigint.rs -------------------------------------------------------------------------------- /examples/modular.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/bigint/HEAD/examples/modular.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/bigint/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/uint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/bigint/HEAD/src/uint.rs --------------------------------------------------------------------------------