We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61d1c63 commit 64885acCopy full SHA for 64885ac
src/impl_ops_add.rs
@@ -2,6 +2,7 @@
2
//!
3
4
use super::*;
5
+use stdlib::borrow::ToOwned;
6
7
8
impl Add<BigDecimal> for BigDecimal {
src/with_std.rs
@@ -25,4 +25,5 @@ mod stdlib {
25
pub use std::collections::hash_map::DefaultHasher;
26
27
pub use std::vec::Vec;
28
+ pub use std::borrow;
29
}
src/without_std.rs
@@ -33,6 +33,7 @@ mod stdlib {
33
#[cfg(test)]
34
pub use siphasher::sip::SipHasher as DefaultHasher;
35
36
+ pub use alloc::borrow;
37
pub use alloc::string;
38
pub use alloc::vec::Vec;
39
0 commit comments