We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Vec
1 parent d441ccd commit 3725549Copy full SHA for 3725549
src/policy/mod.rs
@@ -23,7 +23,9 @@ pub use self::semantic::Policy as Semantic;
23
use crate::descriptor::Descriptor;
24
use crate::miniscript::{Miniscript, ScriptContext};
25
use crate::sync::Arc;
26
-use crate::{Error, MiniscriptKey, Terminal, Vec};
+use crate::{Error, MiniscriptKey, Terminal};
27
+#[cfg(all(not(feature = "std"), not(test)))]
28
+use crate::Vec;
29
30
/// Policy entailment algorithm maximum number of terminals allowed.
31
const ENTAILMENT_MAX_TERMINALS: usize = 20;
0 commit comments