Section IV - library
The lib.rs
file is our centralized library file. This file is where globally shared functions, constants and variables are located. It is also where we include modules that make up the library.
Remove the test module section of code at the bottom of the file. This is where your integrated testing (module dependencies) would be tested to ensure the library if working as expected. However, we will be ignoring this level of testing for the purpose of this workshop.
At the very top of the file, add declarations of dependencies to the external web service crates (packages) we will be using.
In top portion of the file (where the global variables would be located after the extern crates
), add the following global variable.
At the bottom of the file, add the following module as part of the library.
NOTE: If you build the code right now, it would raise an error that the module cannot be found.
Last updated
Was this helpful?