mirror of
https://github.com/NixOS/nix
synced 2025-06-25 23:11:16 +02:00
Add base32 encoder/decoder
This commit is contained in:
parent
a1ff43045b
commit
cce218f950
9 changed files with 349 additions and 4 deletions
|
@ -1,5 +1,16 @@
|
|||
#![feature(await_macro, async_await)]
|
||||
|
||||
#[macro_use]
|
||||
extern crate lazy_static;
|
||||
|
||||
#[cfg(test)]
|
||||
#[macro_use]
|
||||
extern crate assert_matches;
|
||||
|
||||
#[cfg(test)]
|
||||
#[macro_use]
|
||||
extern crate proptest;
|
||||
|
||||
mod c;
|
||||
mod error;
|
||||
mod foreign;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue