Opis is a big integer, in little endian order, arithmetic library written in Rust.
In Cargo.toml ```
[dependencies] opis = "0.3.0"
```
In your rust file ```
use opis::Int;
```
```
let integer: Int = Int::from_str("6747", 10);
```
```
let sum: Int = int1.add(&int2);
```
```
let binarystr: String = integer.tostr(2);
```
Pull requests, bug reports and any kind of suggestion are welcome.
2021-10-08