forked from uuid-rs/uuid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
83 lines (69 loc) · 1.48 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[package]
authors = [
"Ashley Mannix<[email protected]>",
"Christopher Armstrong",
"Dylan DPC<[email protected]>",
"Hunar Roop Kahlon<[email protected]>"
]
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.6.5"
[package.metadata.docs.rs]
all-features = true
[package.metadata.playground]
features = ["serde", "u128", "v1", "v3", "v4", "v5"]
[dependencies.byteorder]
default-features = false
features = ["i128"]
optional = true
version = "1"
[dependencies.cfg-if]
version = "0.1.2"
[dependencies.md5]
optional = true
version = "0.3"
[dependencies.rand]
optional = true
version = "0.4"
[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.serde_test]
version = "1.0.56"
[features]
default = ["std"]
std = []
v1 = []
v3 = ["md5", "rand"]
v4 = ["rand"]
v5 = ["sha1", "rand"]
# deprecated
#------------------------
# Use `"std"` instead
use_std = ["std"]
# since rust 1.26.0
u128 = ["byteorder"]
# nightly rust
#------------------------
# Allow using `const fn`s
const_fn = ["nightly"]
# Nightly marker feature gate
nightly = []