33 releases (stable)

5.0.0 Aug 5, 2022
4.1.0 Aug 4, 2022
4.0.1 Mar 18, 2022
3.1.0 Aug 26, 2021
0.0.1 Dec 5, 2015

#319 in Data structures

Download history 1583/week @ 2023-12-14 536/week @ 2023-12-21 780/week @ 2023-12-28 1752/week @ 2024-01-04 1992/week @ 2024-01-11 2855/week @ 2024-01-18 3537/week @ 2024-01-25 3326/week @ 2024-02-01 3967/week @ 2024-02-08 6399/week @ 2024-02-15 5605/week @ 2024-02-22 6168/week @ 2024-02-29 5919/week @ 2024-03-07 4984/week @ 2024-03-14 6879/week @ 2024-03-21 5678/week @ 2024-03-28

25,749 downloads per month
Used in 34 crates (27 directly)

MIT OR BSD-3-Clause

48KB
1K SLoC

xor_name

XorName is an array that is useful for calculations in DHT

MaidSafe website SAFE Network Forum

Serialization

XorName and Prefix are serialized into a human-readable hex string, instead of as a u8 array. This is enabled by default, with the serialize-hex feature. This also allows for these structures to be serialised when used as a key in a map like HashMap, because most formats only allow keys to be strings, instead of more complex types.

A struct like this:

#[derive(Serialize, Deserialize)]
struct MyStruct {
    prefix: Prefix,
    xor_name: XorName,
}

Will yield this JSON

{
  "prefix": "10001101110001111100101000111001101101111101111010011001",
  "xor_name": "8dc7ca39b7de990eb943fd64854776dd85aa82c33a4269693c57b36e0749ed8f"
}

instead of

{
    "prefix": {
        "bit_count": 56,
        "name": [141,199,202,57,183,222,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
    },
    "xor_name": [141,199,202,57,183,222,153,14,185,67,253,100,133,71,118,221,133,170,130,195,58,66,105,105,60,87,179,110,7,73,237,143]
}

License

This SAFE Network library is dual-licensed under the Modified BSD (LICENSE-BSD https://opensource.org/licenses/BSD-3-Clause) or the MIT license (LICENSE-MIT https://opensource.org/licenses/MIT) at your option.

Contributing

Want to contribute? Great 🎉

There are many ways to give back to the project, whether it be writing new code, fixing bugs, or just reporting errors. All forms of contributions are encouraged!

For instructions on how to contribute, see our Guide to contributing.

Dependencies

~1–1.8MB
~38K SLoC