-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 773 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 773 Bytes
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 = "prefixed-api-key"
description = "A Rust module for generating a Prefixed API Key"
authors = ["Brahm Lower <contact@brahmlower.io>"]
homepage = "https://github.com/brahmlower/prefixed-api-key"
repository = "https://github.com/brahmlower/prefixed-api-key"
documentation = "https://docs.rs/prefixed-api-key"
license = "MIT"
readme = "README.md"
version = "0.3.0"
edition = "2021"
[package.metadata]
msrv = "1.61.0"
[package.metadata.docs.rs]
# Enable all feature flags so that their docs are included
all-features = true
[features]
sha2 = ["dep:sha2"]
all = ["sha2"]
[dependencies]
digest = "0.10.3"
bs58 = "0.4.0"
rand = "0.8.5"
hex = "0.4.3"
sha2 = { version = "0.10.2", optional = true }
constant_time_eq = "0.2.5"
[dev-dependencies]
sha2 = "0.10.2"