summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authordependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>2020-12-25 18:08:07 +0000
committerGitHub <noreply@github.com>2020-12-25 18:08:07 +0000
commitdf5a7994c6b612c9861cd5d85f40730d5bb1a544 (patch)
treeb0f1c3d86688a76ff15580da4973117aad63e13e /src/main.rs
parent85de6dfe50078b7463eb94ae74377a4adad0ca41 (diff)
build(deps): bump rand from 0.7.3 to 0.8.0 (#2016)
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 2dd9208f0..a31294098 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -205,6 +205,7 @@ fn main() {
rand::thread_rng()
.sample_iter(&Alphanumeric)
.take(16)
+ .map(char::from)
.collect::<String>()
),
(command, _) => unreachable!("Invalid subcommand: {}", command),