-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (32 loc) · 909 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
[package]
name = "squint"
version = "0.1.4"
description = "Encode sequential integer ids as random looking strings"
authors = ["Stanislav Stoyanov <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.72"
readme = "README.md"
documentation = "https://docs.rs/squint"
repository = "https://github.com/grimerssy/squint"
keywords = ["sql", "id", "encode", "obfuscate"]
categories = ["cryptography", "encoding", "no-std"]
[features]
default = ["std", "tag"]
std = []
tag = ["dep:const-fnv1a-hash"]
zeroize = ["aes/zeroize"]
[dependencies]
aes = "0.8.4"
const-fnv1a-hash = { version = "1.1.0", optional = true }
[dev-dependencies]
prop-test = "0.1.1"
criterion = "0.5.1"
clap = "=4.4.18" # pin criterion sub-dep to compile with Rust 1.72
[[bench]]
name = "main"
harness = false
[profile.test.package.proptest]
opt-level = 3
[profile.test.package.rand_chacha]
opt-level = 3