You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21-1Lines changed: 21 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,26 @@
1
1
## Bitcoin Cap'n Proto Rust Client
2
2
3
-
This project auto-generates the client code to interact with Bitcoin Core in Rust using interprocess communication. To build the code locally, you will need to have the [`capnp`](https://capnproto.org/install.html) compiler installed on your system.
3
+
This project auto-generates the client code to interact with Bitcoin Core in Rust using interprocess communication.
4
+
5
+
## Build prerequisites
6
+
7
+
Building this crate requires the [`capnp`](https://capnproto.org/install.html)
8
+
compiler.
9
+
10
+
macOS:
11
+
12
+
```sh
13
+
brew install capnp
14
+
```
15
+
16
+
Debian / Ubuntu:
17
+
18
+
```sh
19
+
sudo apt-get install capnproto libcapnp-dev
20
+
```
21
+
22
+
If `/capnp/c++.capnp` cannot be found during `cargo build`, install the
23
+
platform's Cap'n Proto development package in addition to the compiler.
0 commit comments