Skip to content
This repository has been archived by the owner on Jul 12, 2022. It is now read-only.

Fix deprecated duplicate macro exports #2

Merged
merged 1 commit into from
May 18, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/der/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ pub mod length;
/// The Intermediate Type
pub mod intermediate;

#[cfg(test)]
mod test;

/// DER Trait
pub mod der;
#[doc(hidden)]
#[macro_use]
pub mod macros;

#[cfg(test)]
mod test;

pub use self::tag::*;
pub use self::length::*;
pub use self::intermediate::Intermediate;
Expand Down
2 changes: 0 additions & 2 deletions src/der/test.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
use super::*;

include!("macros.rs");

#[test]
fn decode_tag_bytes() {
for i in 0..32000 {
Expand Down