Section II - library

lib.rs

We will also declare these dependencies in our share src/lib.rs library.

extern crate base64;
extern crate roadrunner;

To add the daas module to our library, we declare it at the bottom of our src/lib.rs file, (after the daas module).

pub mod couchdb;

Last updated