File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " base64"
3
- version = " 0.21.6 "
3
+ version = " 0.21.7 "
4
4
authors = [" Alice Maz <alice@alicemaz.com>" , " Marshall Pierce <marshall@mpierce.org>" ]
5
5
description = " encodes and decodes base64 as bytes or utf8"
6
6
repository = " https://github.com/marshallpierce/rust-base64"
Original file line number Diff line number Diff line change
1
+ # 0.21.7
2
+
3
+ - Support getting an alphabet's contents as a str via ` Alphabet::as_str() `
4
+
1
5
# 0.21.6
2
6
3
7
- Improved introductory documentation and example
Original file line number Diff line number Diff line change 1
1
//! Provides [Alphabet] and constants for alphabets commonly used in the wild.
2
2
3
3
use crate :: PAD_BYTE ;
4
- use core:: { convert, fmt, primitive :: str } ;
4
+ use core:: { convert, fmt} ;
5
5
#[ cfg( any( feature = "std" , test) ) ]
6
6
use std:: error;
7
7
You can’t perform that action at this time.
0 commit comments