rustls/Cargo.toml

29 lines
523 B
TOML
Raw Permalink Normal View History

[workspace]
members = [
2023-08-24 10:09:46 +00:00
# CI benchmarks
"ci-bench",
# Network-based tests
"connect-tests",
2022-08-27 13:43:59 +00:00
# tests and example code
"examples",
2024-03-15 17:46:11 +00:00
# Tests that require OpenSSL
"openssl-tests",
# example of custom provider
"provider-example",
2024-03-15 17:46:11 +00:00
# the main library and tests
"rustls",
# experimental post-quantum algorithm support
"rustls-post-quantum",
]
2023-08-24 10:09:46 +00:00
default-members = [
"examples",
"rustls",
"rustls-post-quantum",
2023-08-24 10:09:46 +00:00
]
2021-03-22 13:02:06 +00:00
exclude = ["admin/rustfmt"]
resolver = "2"
[profile.bench]
codegen-units = 1
lto = true