- `use standard;` (bring in a set of standard and external dependencies)
- `use common;` (bring in a low-level subset of this crate; basically anything that itself requires only `use standard;`)
And, from an external create:
- `use ethcore_util::*;` (bring in the entirety of this module and the standard dependencies)