From cb5b22d0886a0a8c19cf1afeef55a8245357cf20 Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Sun, 6 Jan 2019 00:20:04 +0100 Subject: Add the base32 crate in version 0.4.0 as a dependency To parse OTP secrets in base32 representation, we need a new dependency: the base32 crate. Import subrepo base32/:base32 at a74cd9246fc0e08d6f5cfcb644bfdf76dd438613 --- base32/Cargo.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 base32/Cargo.toml (limited to 'base32/Cargo.toml') diff --git a/base32/Cargo.toml b/base32/Cargo.toml new file mode 100644 index 0000000..ff63bbe --- /dev/null +++ b/base32/Cargo.toml @@ -0,0 +1,16 @@ +[package] + +name = "base32" +version = "0.4.0" +authors = [ "Andreas Ots ", "Tim Dumol " ] +license = "MIT OR Apache-2.0" +repository = "https://github.com/andreasots/base32" +description = "Base32 encoder/decoder for Rust" + +[lib] + +name = "base32" + +[dev-dependencies] +quickcheck = "0.7.1" +rand = "0.5.5" -- cgit v1.2.1