Rearrange cfg_attr in relaycell::msg

docsrs wants to find its `cfg_attr(docsrs...)` line after the
`cfg()` line.
This commit is contained in:
Nick Mathewson 2023-02-16 08:13:53 -05:00 committed by Ian Jackson
parent be8f483acc
commit c1fbcb34f6
1 changed files with 2 additions and 2 deletions

View File

@ -17,14 +17,14 @@ use tor_llcrypto::pk::rsa::RsaIdentity;
use bitflags::bitflags;
#[cfg_attr(docsrs, doc(cfg(feature = "onion-service")))]
#[cfg(feature = "onion-service")]
#[cfg_attr(docsrs, doc(cfg(feature = "onion-service")))]
pub use super::hs::{
est_intro::EstablishIntro, EstablishRendezvous, IntroEstablished, Introduce1, Introduce2,
IntroduceAck, Rendezvous1, Rendezvous2, RendezvousEstablished,
};
#[cfg_attr(docsrs, doc(cfg(feature = "experimental-udp")))]
#[cfg(feature = "experimental-udp")]
#[cfg_attr(docsrs, doc(cfg(feature = "experimental-udp")))]
pub use super::udp::{ConnectUdp, ConnectedUdp, Datagram};
crate::restrict::restricted_msg! {