@@ -57,19 +57,21 @@ assert_eq!(variant, Variant::Bech32);
57
57
#![ cfg_attr( feature = "strict" , deny( warnings) ) ]
58
58
#![ cfg_attr( all( not( feature = "std" ) , not( test) ) , no_std) ]
59
59
60
- #[ cfg( all ( not ( feature = "std" ) , not ( test ) ) ) ]
60
+ #[ cfg( feature = "alloc" ) ]
61
61
extern crate alloc;
62
62
63
63
#[ cfg( any( test, feature = "std" ) ) ]
64
64
extern crate core;
65
65
66
- #[ cfg( all( not ( feature = "std" ) , not( test ) ) ) ]
66
+ #[ cfg( all( feature = "alloc" , not( feature = "std" ) ) ) ]
67
67
use alloc:: borrow:: Cow ;
68
- #[ cfg( all( not ( feature = "std" ) , not( test ) ) ) ]
68
+ #[ cfg( all( feature = "alloc" , not( feature = "std" ) ) ) ]
69
69
use alloc:: { string:: String , vec:: Vec } ;
70
- use core:: convert:: { Infallible , TryFrom } ;
70
+ #[ cfg( feature = "alloc" ) ]
71
+ use core:: convert:: Infallible ;
72
+ use core:: convert:: TryFrom ;
71
73
use core:: { fmt, mem} ;
72
- #[ cfg( any ( feature = "std" , test ) ) ]
74
+ #[ cfg( feature = "std" ) ]
73
75
use std:: borrow:: Cow ;
74
76
75
77
/// Integer in the range `0..32`
@@ -220,6 +222,7 @@ pub trait FromBase32: Sized {
220
222
fn from_base32 ( b32 : & [ u5 ] ) -> Result < Self , Self :: Err > ;
221
223
}
222
224
225
+ #[ cfg( feature = "alloc" ) ]
223
226
impl WriteBase32 for Vec < u5 > {
224
227
type Err = Infallible ;
225
228
@@ -234,6 +237,7 @@ impl WriteBase32 for Vec<u5> {
234
237
}
235
238
}
236
239
240
+ #[ cfg( feature = "alloc" ) ]
237
241
impl FromBase32 for Vec < u8 > {
238
242
type Err = Error ;
239
243
@@ -243,6 +247,7 @@ impl FromBase32 for Vec<u8> {
243
247
}
244
248
245
249
/// A trait for converting a value to a type `T` that represents a `u5` slice.
250
+ #[ cfg( feature = "alloc" ) ]
246
251
pub trait ToBase32 {
247
252
/// Convert `Self` to base32 vector
248
253
fn to_base32 ( & self ) -> Vec < u5 > {
@@ -257,11 +262,13 @@ pub trait ToBase32 {
257
262
}
258
263
259
264
/// Interface to calculate the length of the base32 representation before actually serializing
265
+ #[ cfg( feature = "alloc" ) ]
260
266
pub trait Base32Len : ToBase32 {
261
267
/// Calculate the base32 serialized length
262
268
fn base32_len ( & self ) -> usize ;
263
269
}
264
270
271
+ #[ cfg( feature = "alloc" ) ]
265
272
impl < T : AsRef < [ u8 ] > > ToBase32 for T {
266
273
fn write_base32 < W : WriteBase32 > ( & self , writer : & mut W ) -> Result < ( ) , <W as WriteBase32 >:: Err > {
267
274
// Amount of bits left over from last round, stored in buffer.
@@ -306,6 +313,7 @@ impl<T: AsRef<[u8]>> ToBase32 for T {
306
313
}
307
314
}
308
315
316
+ #[ cfg( feature = "alloc" ) ]
309
317
impl < T : AsRef < [ u8 ] > > Base32Len for T {
310
318
fn base32_len ( & self ) -> usize {
311
319
let bits = self . as_ref ( ) . len ( ) * 8 ;
@@ -327,6 +335,7 @@ pub trait CheckBase32<T: AsRef<[u5]>> {
327
335
fn check_base32 ( self ) -> Result < T , Self :: Err > ;
328
336
}
329
337
338
+ #[ cfg( feature = "alloc" ) ]
330
339
impl < T : AsRef < [ u8 ] > > CheckBase32 < Vec < u5 > > for T {
331
340
type Err = Error ;
332
341
@@ -336,6 +345,7 @@ impl<T: AsRef<[u8]>> CheckBase32<Vec<u5>> for T {
336
345
}
337
346
338
347
#[ derive( Clone , Copy , PartialEq , Eq ) ]
348
+ #[ cfg( feature = "alloc" ) ]
339
349
enum Case {
340
350
Upper ,
341
351
Lower ,
@@ -348,6 +358,7 @@ enum Case {
348
358
/// * **MixedCase**: If the HRP contains both uppercase and lowercase characters.
349
359
/// * **InvalidChar**: If the HRP contains any non-ASCII characters (outside 33..=126).
350
360
/// * **InvalidLength**: If the HRP is outside 1..83 characters long.
361
+ #[ cfg( feature = "alloc" ) ]
351
362
fn check_hrp ( hrp : & str ) -> Result < Case , Error > {
352
363
if hrp. is_empty ( ) || hrp. len ( ) > 83 {
353
364
return Err ( Error :: InvalidLength ) ;
@@ -387,6 +398,7 @@ fn check_hrp(hrp: &str) -> Result<Case, Error> {
387
398
/// * If [check_hrp] returns an error for the given HRP.
388
399
/// # Deviations from standard
389
400
/// * No length limits are enforced for the data part
401
+ #[ cfg( feature = "alloc" ) ]
390
402
pub fn encode_to_fmt < T : AsRef < [ u5 ] > > (
391
403
fmt : & mut fmt:: Write ,
392
404
hrp : & str ,
@@ -416,6 +428,7 @@ pub fn encode_to_fmt<T: AsRef<[u5]>>(
416
428
/// * If [check_hrp] returns an error for the given HRP.
417
429
/// # Deviations from standard
418
430
/// * No length limits are enforced for the data part
431
+ #[ cfg( feature = "alloc" ) ]
419
432
pub fn encode_without_checksum_to_fmt < T : AsRef < [ u5 ] > > (
420
433
fmt : & mut fmt:: Write ,
421
434
hrp : & str ,
@@ -454,6 +467,7 @@ const BECH32M_CONST: u32 = 0x2bc8_30a3;
454
467
455
468
impl Variant {
456
469
// Produce the variant based on the remainder of the polymod operation
470
+ #[ cfg( feature = "alloc" ) ]
457
471
fn from_remainder ( c : u32 ) -> Option < Self > {
458
472
match c {
459
473
BECH32_CONST => Some ( Variant :: Bech32 ) ,
@@ -476,6 +490,7 @@ impl Variant {
476
490
/// * If [check_hrp] returns an error for the given HRP.
477
491
/// # Deviations from standard
478
492
/// * No length limits are enforced for the data part
493
+ #[ cfg( feature = "alloc" ) ]
479
494
pub fn encode < T : AsRef < [ u5 ] > > ( hrp : & str , data : T , variant : Variant ) -> Result < String , Error > {
480
495
let mut buf = String :: new ( ) ;
481
496
encode_to_fmt ( & mut buf, hrp, data, variant) ?. unwrap ( ) ;
@@ -488,6 +503,7 @@ pub fn encode<T: AsRef<[u5]>>(hrp: &str, data: T, variant: Variant) -> Result<St
488
503
/// * If [check_hrp] returns an error for the given HRP.
489
504
/// # Deviations from standard
490
505
/// * No length limits are enforced for the data part
506
+ #[ cfg( feature = "alloc" ) ]
491
507
pub fn encode_without_checksum < T : AsRef < [ u5 ] > > ( hrp : & str , data : T ) -> Result < String , Error > {
492
508
let mut buf = String :: new ( ) ;
493
509
encode_without_checksum_to_fmt ( & mut buf, hrp, data) ?. unwrap ( ) ;
@@ -497,6 +513,7 @@ pub fn encode_without_checksum<T: AsRef<[u5]>>(hrp: &str, data: T) -> Result<Str
497
513
/// Decode a bech32 string into the raw HRP and the data bytes.
498
514
///
499
515
/// Returns the HRP in lowercase, the data with the checksum removed, and the encoding.
516
+ #[ cfg( feature = "alloc" ) ]
500
517
pub fn decode ( s : & str ) -> Result < ( String , Vec < u5 > , Variant ) , Error > {
501
518
let ( hrp_lower, mut data) = split_and_decode ( s) ?;
502
519
if data. len ( ) < CHECKSUM_LENGTH {
@@ -518,9 +535,11 @@ pub fn decode(s: &str) -> Result<(String, Vec<u5>, Variant), Error> {
518
535
/// Decode a bech32 string into the raw HRP and the data bytes, assuming no checksum.
519
536
///
520
537
/// Returns the HRP in lowercase and the data.
538
+ #[ cfg( feature = "alloc" ) ]
521
539
pub fn decode_without_checksum ( s : & str ) -> Result < ( String , Vec < u5 > ) , Error > { split_and_decode ( s) }
522
540
523
541
/// Decode a bech32 string into the raw HRP and the `u5` data.
542
+ #[ cfg( feature = "alloc" ) ]
524
543
fn split_and_decode ( s : & str ) -> Result < ( String , Vec < u5 > ) , Error > {
525
544
// Split at separator and check for two pieces
526
545
let ( raw_hrp, raw_data) = match s. rfind ( SEP ) {
@@ -577,12 +596,14 @@ fn split_and_decode(s: &str) -> Result<(String, Vec<u5>), Error> {
577
596
Ok ( ( hrp_lower, data) )
578
597
}
579
598
599
+ #[ cfg( feature = "alloc" ) ]
580
600
fn verify_checksum ( hrp : & [ u8 ] , data : & [ u5 ] ) -> Option < Variant > {
581
601
let mut exp = hrp_expand ( hrp) ;
582
602
exp. extend_from_slice ( data) ;
583
603
Variant :: from_remainder ( polymod ( & exp) )
584
604
}
585
605
606
+ #[ cfg( feature = "alloc" ) ]
586
607
fn hrp_expand ( hrp : & [ u8 ] ) -> Vec < u5 > {
587
608
let mut v: Vec < u5 > = Vec :: new ( ) ;
588
609
for b in hrp {
@@ -595,6 +616,7 @@ fn hrp_expand(hrp: &[u8]) -> Vec<u5> {
595
616
v
596
617
}
597
618
619
+ #[ cfg( feature = "alloc" ) ]
598
620
fn polymod ( values : & [ u5 ] ) -> u32 {
599
621
let mut chk: u32 = 1 ;
600
622
let mut b: u8 ;
@@ -623,6 +645,7 @@ const CHARSET: [char; 32] = [
623
645
] ;
624
646
625
647
/// Reverse character set. Maps ASCII byte -> CHARSET index on [0,31]
648
+ #[ cfg( feature = "alloc" ) ]
626
649
const CHARSET_REV : [ i8 ; 128 ] = [
627
650
-1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 ,
628
651
-1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 , -1 ,
@@ -697,6 +720,7 @@ impl std::error::Error for Error {
697
720
/// let base5 = convert_bits(&[0xff], 8, 5, true);
698
721
/// assert_eq!(base5.unwrap(), vec![0x1f, 0x1c]);
699
722
/// ```
723
+ #[ cfg( feature = "alloc" ) ]
700
724
pub fn convert_bits < T > ( data : & [ T ] , from : u32 , to : u32 , pad : bool ) -> Result < Vec < u8 > , Error >
701
725
where
702
726
T : Into < u8 > + Copy ,
@@ -732,6 +756,7 @@ where
732
756
}
733
757
734
758
#[ cfg( test) ]
759
+ #[ cfg( feature = "alloc" ) ] // Note, all the unit tests currently require an allocator.
735
760
mod tests {
736
761
use super :: * ;
737
762
0 commit comments