-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (22 loc) · 610 Bytes
/
Cargo.toml
File metadata and controls
27 lines (22 loc) · 610 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
# SPDX-License-Identifier: PMPL-1.0-or-later
# SPDX-FileCopyrightText: 2026 Jonathan D.A. Jewell
[workspace]
members = ["crates/reversible-core", "crates/januskey-cli"]
resolver = "2"
[workspace.package]
edition = "2021"
license = "MIT OR PMPL-1.0-or-later"
repository = "https://github.com/hyperpolymath/januskey"
authors = ["Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>"]
[workspace.dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
tempfile = "3"
hex = "0.4"
sha2 = "0.10"
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
[profile.bench]
opt-level = 3
lto = true