uuid 0.7.4

A library to generate and parse UUIDs.
Documentation
[package]
authors = [
    "Ashley Mannix<ashleymannix@live.com.au>",
    "Christopher Armstrong",
    "Dylan DPC<dylan.dpc@gmail.com>",
    "Hunar Roop Kahlon<hunar.roop@gmail.com>"
]
description = "A library to generate and parse UUIDs."
documentation = "https://docs.rs/uuid"
exclude = [
    ".github/**",
    ".travis.yml",
    "appveyor.yml",
    "bors.toml"
]
license = "Apache-2.0 OR MIT"
homepage = "https://github.com/uuid-rs/uuid"
name = "uuid"
readme = "README.md"
repository = "https://github.com/uuid-rs/uuid"
version = "0.7.4" # remember to update html_root_url in lib.rs

[package.metadata.docs.rs]
features = [ "guid", "serde", "slog", "v1", "v3", "v4", "v5" ]
default-target = "x86_64-pc-windows-msvc"

[package.metadata.playground]
features = ["serde", "u128", "v1", "v3", "v4", "v5"]

[badges.appveyor]
repository = "uuid-rs/uuid"

[badges.is-it-maintained-issue-resolution]
repository = "uuid-rs/uuid"

[badges.is-it-maintained-open-issues]
repository = "uuid-rs/uuid"

[badges.maintenance]
status = "actively-developed"

[badges.travis-ci]
repository = "uuid-rs/uuid"

[dependencies.byteorder]
default-features = false
features = ["i128"]
optional = true
version = "1"

[dependencies.md5]
optional = true
version = "0.6"

[dependencies.rand]
optional = true
version = "0.6"

[dependencies.serde]
default-features = false
optional = true
version = "1.0.56"

[dependencies.sha1]
optional = true
version = "0.6"

[dependencies.slog]
optional = true
version = "2"

[dev-dependencies.bincode]
version = "1.0"

[dev-dependencies.serde_derive]
version = "1.0.79"

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.serde_test]
version = "1.0.56"

[features]
default = ["std"]
guid = ["winapi"]
std = []
v1 = []
v3 = ["md5"]
v4 = ["rand"]
v5 = ["sha1"]
stdweb = ["rand/stdweb"]
wasm-bindgen = ["rand/wasm-bindgen"]

# since rust 1.26.0
u128 = ["byteorder"]

# nightly rust
#------------------------
# Allow using `const fn`s
const_fn = ["nightly"]
# Nightly marker feature gate
nightly = []

[target.'cfg(windows)'.dependencies.winapi]
optional = true
version = "0.3"