lnsocket

A minimal C library for connecting to the lightning network
git clone git://jb55.com/lnsocket
Log | Files | Refs | Submodules | README | LICENSE

commit e91a16617b77efbebffdd3d21e93b7af65b14286
parent b996fb8d1d7a6b578f48ce85fc951450a853bcdf
Author: William Casarin <jb55@jb55.com>
Date:   Thu, 30 Jun 2022 12:05:09 -0700

readme: mention rust

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
MREADME.md | 4++++
Mshell.nix | 2+-
2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md @@ -87,6 +87,10 @@ You can import it via: It is currently used in fiatjaf's makeinvoice go library[^4] if you want an example of its usage. +### Rust + +There are some initial rust bindings which you can build via: `make rust` + ## C Examples * See [test.c](test.c) for a ping/pong example diff --git a/shell.nix b/shell.nix @@ -1,5 +1,5 @@ { pkgs ? import <nixpkgs> {} }: pkgs.mkShell { buildInputs = [ ]; - nativeBuildInputs = with pkgs; [ gdb autoreconfHook emscripten wabt go ]; + nativeBuildInputs = with pkgs; [ gdb autoreconfHook emscripten wabt go pkgconfig ]; }