-
Notifications
You must be signed in to change notification settings - Fork 196
/
Copy pathCargo.toml
46 lines (40 loc) · 1.14 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "uuid"
version = "0.6.3"
authors = [
"Ashley Mannix<[email protected]>",
"Christopher Armstrong",
"Dylan DPC<[email protected]>",
"Hunar Roop Kahlon<[email protected]>"
]
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 }
cfg-if = "0.1"
[dev-dependencies]
serde_test = "1.0.19"
[features]
default = ["std"]
std = []
use_std = ["std"] # Compatibility shim for 0.5 and earlier
v1 = []
v3 = ["md5", "rand"]
v4 = ["rand"]
v5 = ["sha1", "rand"]
# Get features picked up by the Integer 32 playground. Not public API.
#
# https://play.rust-lang.org
playground = ["serde", "v1", "v3", "v4", "v5"]