tox_core/state_format/
mod.rs

1/*! State format – for saving / loading data across restarts.
2
3*Currently there's only supported old, custom binary format used by toxcore. At
4some point it will be deprecated in favour of something better.*
5
6*After deprecation of the old format there will be a period where it still will
7be supported. After deprecation period code for handling old format will be
8moved out of toxcore into a separate library and maintained there.*
9
10https://zetok.github.io/tox-spec/#state-format
11*/
12
13
14// FIXME: use new dht code instead of old
15pub mod old;