We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a251444 commit 6636122Copy full SHA for 6636122
src/lib.rs
@@ -80,6 +80,8 @@
80
//! ```
81
//!
82
83
+#![allow(bare_trait_objects)]
84
+
85
#![cfg_attr(all(test, feature = "unstable"), feature(test))]
86
pub extern crate bitcoin;
87
#[cfg(feature = "serde")]
src/miniscript/mod.rs
@@ -300,7 +300,7 @@ where
300
use std::marker::PhantomData;
301
use std::str::FromStr;
302
303
- struct StrVisitor<Qk>(PhantomData<(Qk)>);
+ struct StrVisitor<Qk>(PhantomData<Qk>);
304
305
impl<'de, Qk> de::Visitor<'de> for StrVisitor<Qk>
306
where
0 commit comments