27 lines
869 B
TOML
27 lines
869 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", default-features = false }
|
|
boring-sys = { version = "4", default-features = false }
|
|
rustls = { version = "=0.22.0-alpha.5", default-features = false }
|
|
rustls-pemfile = { version = "=2.0.0-alpha.2" }
|
|
rustls-pki-types = { version = "=0.2.2" }
|
|
tokio-rustls = { version = "0.25.0-alpha.3" }
|
|
webpki = { package = "rustls-webpki", version = "0.102.0-alpha.7", default-features = false, features = ["alloc", "std"] }
|
|
webpki-roots = { version = "=0.26.0-alpha.2" }
|