mirror of
https://github.com/Noratrieb/cluelessh.git
synced 2026-01-14 08:25:05 +01:00
21 lines
443 B
TOML
21 lines
443 B
TOML
[workspace]
|
|
members = [
|
|
"lib/*",
|
|
"bin/*"
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.lints.clippy]
|
|
type_complexity = "allow"
|
|
too_many_arguments = "allow"
|
|
new_without_default = "allow"
|
|
useless_format = "allow"
|
|
|
|
[workspace.dependencies]
|
|
tracing = "0.1.40"
|
|
eyre = "0.6.12"
|
|
|
|
# Blowfish (bcrypt) is the critical path for private key encryption (KDF),
|
|
# and not optimizing it makes the test suite a lot slower.
|
|
[profile.dev.package.blowfish]
|
|
opt-level = 3
|