offset
offset copied to clipboard
Offset payment engine
Bumps [futures-task](https://github.com/rust-lang/futures-rs) from 0.3.5 to 0.3.21. Release notes Sourced from futures-task's releases. 0.3.21 Fix potential data race in FlattenUnordered that introduced in 0.3.20 (#2566) 0.3.20 Fix stacked borrows violations when...
Bumps [futures-util](https://github.com/rust-lang/futures-rs) from 0.3.5 to 0.3.21. Release notes Sourced from futures-util's releases. 0.3.21 Fix potential data race in FlattenUnordered that introduced in 0.3.20 (#2566) 0.3.20 Fix stacked borrows violations when...
Bumps [im](https://github.com/bodil/im-rs) from 14.3.0 to 15.1.0. Changelog Sourced from im's changelog. [15.1.0] - 2022-04-29 Added HashSet now implements From<Vector<A>> and From<&Vector<A>> where A: Clone. Fixed Fixed a long standing crash...
Bumps [socket2](https://github.com/rust-lang/socket2) from 0.3.12 to 0.3.19. Changelog Sourced from socket2's changelog. 0.4.5 Changed Replace winapi dependency with windows-sys (rust-lang/socket2#303). Added Socket::join_ssm_v4 and Socket::leave_ssm_v4 (rust-lang/socket2#298). Socket::set_recv_tos and Socket::recv_tos (rust-lang/socket2#299). Fixed Fix...
Bumps [generic-array](https://github.com/fizyk20/generic-array) from 0.12.3 to 0.12.4. Changelog Sourced from generic-array's changelog. 0.12.4 Fix unsoundness in the arr! macro. 0.12.0 Allow trailing commas in arr! macro. BREAKING: Serialize GenericArray using serde...
Bumps [zeroize_derive](https://github.com/RustCrypto/utils) from 1.0.0 to 1.3.2. Changelog Sourced from zeroize_derive's changelog. Changelog All notable changes to this project will be documented in this file. The format is based on Keep...
We are currently using serialization to json file (using `serde`) and writing to disk using the `atomicwrites` crate. Cons of the current design: - Very inefficient, as the whole database...
The code at https://github.com/freedomlayer/offst/blob/master/components/crypto/src/rand.rs is very repetitive. Example: ```rust impl RandGen for Salt { fn rand_gen(crypt_rng: &impl CryptoRandom) -> Self { let mut res = Self::default(); crypt_rng.fill(&mut res).unwrap(); res }...