-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (36 loc) · 874 Bytes
/
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
[package]
name = "euid"
version = "0.1.7"
edition = "2018"
description = "Reference implementation for EUID"
authors = ["Ardika Rommy Sanjaya <contact@ardikars.com>"]
categories = ["encoding"]
keywords = ["euid"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/ardikars/euid"
repository = "https://github.com/ardikars/euid"
documentation = "https://docs.rs/uuid"
[dependencies]
getrandom = "0.2"
[dev-dependencies]
rand = "0.8.5"
criterion = "0.3"
[lib]
name = "euid"
crate-type = ["rlib"]
path = "src/lib.rs"
edition = "2018"
[features]
default = ["std"]
std = []
# reference implementation for language that doesn't support 128 bit integer natively.
euid_64 = []
# reference implementation for non binary base32 encoding
non_binary = []
[[bench]]
name = "euid_create"
harness = false
[[bench]]
name = "euid_create_with_extension"
harness = false