-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
33 lines (28 loc) · 864 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
[package]
name = "uuid-simd"
version = "0.9.0-dev"
edition = "2021"
description = "SIMD-accelerated UUID operations"
license = "MIT"
repository = "https://github.com/Nugine/simd"
keywords = ["uuid", "guid", "simd"]
categories = ["no-std", "parser-implementations"]
readme = "README.md"
rust-version = "1.63"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[features]
default = ["std", "detect", "uuid"]
alloc = ["vsimd/alloc"]
std = ["alloc", "vsimd/std"]
detect = ["vsimd/detect"]
unstable = ["vsimd/unstable", "hex-simd/unstable"]
[dependencies]
outref = "0.5.1"
vsimd = { path = "../vsimd", version = "0.9.0-dev" }
uuid = { version = "1.3.0", optional = true }
[dev-dependencies]
hex-simd = { path = "../hex-simd", version = "0.9.0-dev" }
[target.'cfg(target_arch="wasm32")'.dev-dependencies]
wasm-bindgen-test = "0.3.34"