Skip to content

Commit

Permalink
analysis: feature-gate an import
Browse files Browse the repository at this point in the history
Avoids a warning with --no-default-features.
  • Loading branch information
apoelstra committed Jul 13, 2023
1 parent 68d726a commit 07ac274
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/analysis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@

use crate::jet::Jet;
use crate::Value;
use std::{cmp, fmt, io};
use std::{cmp, fmt};

#[cfg(feature = "elements")]
use std::io;

#[cfg(feature = "elements")]
use elements::encode::Encodable;
Expand Down

0 comments on commit 07ac274

Please sign in to comment.