iadb-api 0.1.2

Wrapper for Band of England's Statistical Interactive Database (IADB)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# shell.nix
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
    packages = with pkgs;
    [
        # Rust Dependencies
        rustup
        gcc
        openssl
        pkg-config
    ];
    
    # Environment variables
    # RUST_BACKTRACE = 1;
}