Closed dubek closed 2 years ago
Use the latest version of the uuid crate, and modify simple-kbs code accordingly:
uuid
as_hyphenated()
to_hyphenated()
to_bytes_le()
uuid!
Signed-off-by: Dov Murik dov.murik1@il.ibm.com
I tested this by slowly replacing the implementations (first in the unit-tests, then in the body, then in both), while verifying the unit-tests keep passing. This ensures the new implementations are byte-by-byte identical to the old one.
Use the latest version of the
uuid
crate, and modify simple-kbs code accordingly:as_hyphenated()
instead ofto_hyphenated()
to_bytes_le()
instead of our own implementationuuid!
macro to define SECRET_GUIDSigned-off-by: Dov Murik dov.murik1@il.ibm.com
I tested this by slowly replacing the implementations (first in the unit-tests, then in the body, then in both), while verifying the unit-tests keep passing. This ensures the new implementations are byte-by-byte identical to the old one.