rawtx-rs 0.1.20

Makes information about Bitcoin transactions accessible.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs ? import <nixpkgs> {} }:

pkgs.mkShell {
  hardeningDisable = [ "stackprotector" "fortify" ];
    nativeBuildInputs = [
      pkgs.clippy
      pkgs.cargo
      pkgs.rustfmt
      pkgs.rustc
      pkgs.clang_15
    ];
}