ccdata-api 1.0.0

Wrapper for CoinDesk REST API endpoints (Fomerly CCData REST API).
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;
}