fuel-indexer-lib 0.25.0

Fuel Indexer Library
docs.rs failed to build fuel-indexer-lib-0.25.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: fuel-indexer-lib-0.24.3

fuel-indexer-lib

A collection of utilities used by the various fuel-indexer-* crates.

use fuel_indexer_lib::utils::trim_opt_env_key;

fn main() {
    let a = "${ENV_VAR_KEY}";
    assert_eq!(trim_opt_env_key(a), "ENV_VAR_KEY");
}