uuid 0.6.1

A library to generate and parse UUIDs.
Documentation
[package]

name = "uuid"
version = "0.6.1"
authors = [
        "Ashley Mannix<ashleymannix@live.com.au>",
        "Christopher Armstrong",
        "Dylan DPC<dylan.dpc@gmail.com>",
        "Hunar Roop Kahlon<hunar.roop@gmail.com>"
        ]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/uuid-rs/uuid"
homepage = "https://github.com/uuid-rs/uuid"
documentation = "https://docs.rs/uuid"
description = """
A library to generate and parse UUIDs.
"""

[package.metadata.docs.rs]
all-features = true

[dependencies]
serde = { version = "1.0.16", optional = true, default-features = false }
rand = { version = "0.4", optional = true }
sha1 = { version = "0.6", optional = true }
md5 = { version = "0.3", optional = true }
slog = { version = "2", optional = true }

[dev-dependencies]
serde_test = "1.0.19"

[features]
default = ["std"]
std = []
use_std = ["std"] # Compatibility shim for 0.5 and earlier
v1 = []
v3 = ["md5"]
v4 = ["rand"]
v5 = ["sha1"]