22 lines
567 B
TOML
22 lines
567 B
TOML
[workspace]
|
|
members = [
|
|
# things that should probably be in boring crate
|
|
"boring-additions",
|
|
# things that should probably be in boring-sys crate
|
|
"boring-sys-additions",
|
|
# the main library and tests
|
|
"boring-rustls-provider",
|
|
# tests and example code
|
|
"examples",
|
|
]
|
|
default-members = [
|
|
"examples",
|
|
"boring-rustls-provider",
|
|
]
|
|
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
boring = { version = "4.0", default-features = false }
|
|
boring-sys = { version = "4.0", default-features = false }
|
|
rustls = { version = "=0.22.0-alpha.4", default-features = false }
|