Include "state" for each change.
Dependencies
- [2]
YNZMKRJDinclude more information in log - [3]
D467LQZ6Load identities - [4]
ATRA7XTTRIIR: factor out Repository struct - [5]
W7HZ5VFMRIIR: list changes - [6]
RVRUZGHUFactor out load_channel function - [*]
TQBJZLD7RIIR: hello, world
Change contents
- edit in rust/src/repo.rs at line 18
use libpijul::Base32; - replacement in rust/src/repo.rs at line 28
pub hash: String,pub hash: libpijul::Hash,pub state: libpijul::Merkle, - replacement in rust/src/repo.rs at line 158
let (_, (h, _)) = pr?;let (_, (h, mrk)) = pr?; - replacement in rust/src/repo.rs at line 168
hash: hash.to_base32(),hash,state: mrk.into(), - edit in rust/src/main.rs at line 4
use libpijul::Base32; - replacement in rust/src/main.rs at line 22
println!("{}", c.hash);println!("{}", c.hash.to_base32());println!("{}", c.state.to_base32());