aboutsummaryrefslogtreecommitdiff
path: root/src/base62.rs
diff options
context:
space:
mode:
authortilpner2020-09-10 22:04:26 +0200
committertilpner2020-09-10 22:05:25 +0200
commit124e48e238a19c03d7434f7f0e6fe3ef1cfdcfa6 (patch)
treefef0a4b71e40537d01c41df78e62dfa712b69fa0 /src/base62.rs
parent30d8303badb0718c35ecc97334b9d7a4fc264ce6 (diff)
downloadrpb-s3-124e48e238a19c03d7434f7f0e6fe3ef1cfdcfa6.tar.gz
rpb-s3-124e48e238a19c03d7434f7f0e6fe3ef1cfdcfa6.tar.xz
rpb-s3-124e48e238a19c03d7434f7f0e6fe3ef1cfdcfa6.zip
Update to async, smol 1.0
Diffstat (limited to 'src/base62.rs')
-rw-r--r--src/base62.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/base62.rs b/src/base62.rs
index a556b13..a87503f 100644
--- a/src/base62.rs
+++ b/src/base62.rs
@@ -24,7 +24,6 @@ where I: Iterator<Item=u8> {
pub fn digits_to_string<'a, I>(x: I, alphabet: &'a [u8]) -> String
where I: Iterator<Item=u8> {
x.map(|d| alphabet[d as usize] as char).collect()
-
}
#[cfg(test)]