Skip to content

Instantly share code, notes, and snippets.

@kinggoesgaming
Created February 10, 2018 20:26
Show Gist options
  • Save kinggoesgaming/9d92f34fd5f8005c754c92a21ea3c6a6 to your computer and use it in GitHub Desktop.
Save kinggoesgaming/9d92f34fd5f8005c754c92a21ea3c6a6 to your computer and use it in GitHub Desktop.
Try this, with v5 and std, and sha1 will not have std::error::Error will not be implemented for sha1::DigestParseError
[package]
name = "uuid"
version = "0.6.0-beta"
authors = ["The Rust Project Developers"]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/rust-lang/uuid"
homepage = "https://github.com/rust-lang/uuid"
documentation = "https://docs.rs/uuid"
description = """
A library to generate and parse UUIDs.
"""
[package.metadata.docs.rs]
all-features = true
[dependencies.md5]
optional = true
version = "0.3"
[dependencies.rand]
optional = true
version = "0.4"
[dependencies.serde]
default-features = false
optional = true
version = "1.0.16"
[dependencies.sha1]
optional = true
version = "0.5"
[dev-dependencies]
serde_test = "1.0.19"
[features]
default = ["std"]
std = []
v1 = []
v3 = ["md5"]
v4 = ["rand"]
v5 = ["sha1"]
[target."cfg(all(feature = \"rand\", feature = \"std\"))".features]
std = ["rand/std"]
[target."cfg(all(feature = \"serde\", feature = \"std\"))".features]
std = ["serde/std"]
[target."cfg(all(feature = \"v5\", feature = \"std\"))".features]
std = ["sha1/std"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment