lib.rsarrow-up-right
We will also declare these dependencies in our share src/lib.rs library.
src/lib.rs
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 6 years ago