-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
20 lines (17 loc) · 719 Bytes
/
Copy pathCargo.toml
File metadata and controls
20 lines (17 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "uuidv6"
version = "0.1.6"
edition = "2021"
authors = ["Frank Denis <github@pureftpd.org>"]
description = "UUIDv6 implementation"
license = "MIT"
repository = "https://github.com/jedisct1/rust-uuidv6"
homepage = "https://github.com/jedisct1/rust-uuidv6"
readme = "README.md"
keywords = ["uid", "uuid", "v6", "uuidv6"]
[target.'cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))'.dependencies]
getrandom = { version = "0.3", optional = false, features = ["wasm_js"] }
[target.'cfg(not(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown")))'.dependencies]
getrandom = { version = "0.3", optional = false }
[dependencies]
coarsetime = "0.1"