// SPDX-License-Identifier: MPL-2.0
// When building with the OpenSSL QUIC backend (fork), alias the renamed crates
// back to the standard names so all downstream code using `quinn::` and
// `quinn_proto::` works transparently. LTO strips the unused mainstream quinn
// symbols from the release-small binary.
extern crate quinn_openssl as quinn;
extern crate quinn_proto_openssl as quinn_proto;