-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (34 loc) · 822 Bytes
/
Cargo.toml
File metadata and controls
47 lines (34 loc) · 822 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "webtoken"
edition = "2024"
[lib]
name = "_webtoken"
crate-type = ["cdylib"]
[dependencies]
# Main Crypto BE
aws-lc-rs = { version = "=1.16.1" }
# Aux Crypto
graviola = "0.3"
blake2b_simd = "1.0.2"
chacha20 = "0.9"
argon2 = "0.5"
flate2 = "1.1"
subtle = "2.6"
base64 = "0.22"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
serde_bytes = "0.11"
time = { version = "0.3", features = ["serde", "formatting", "parsing"] }
num-bigint = "0.4"
num-traits = "0.2"
num-integer = "0.1"
pythonize = "0.28"
[dependencies.pyo3]
version = "0.28"
features = ["extension-module", "abi3-py312", "py-clone", "time"]
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true