diff --git a/waku-bindings/README.md b/waku-bindings/README.md index b7621ab..d5352c1 100644 --- a/waku-bindings/README.md +++ b/waku-bindings/README.md @@ -7,6 +7,17 @@ Rust api on top of [`waku-sys`](https://crates.io/crates/waku-sys) bindgen bindings to [c ffi bindings](https://github.com/status-im/go-waku/blob/v0.2.2/library/README.md). + +## Usage + +Add this to your `Cargo.toml`: + +```toml +[dependencies] +waku-bindings = "0.1.0" +``` + + ## About [Waku](https://waku.org/) Waku is the communication layer for Web3. Decentralized communication that scales. diff --git a/waku-sys/README.md b/waku-sys/README.md index a33fed3..941efbc 100644 --- a/waku-sys/README.md +++ b/waku-sys/README.md @@ -7,6 +7,17 @@ Rust layer on top of [`go-waku`](https://github.com/status-im/go-waku) [c ffi bindings](https://github.com/status-im/go-waku/blob/v0.2.2/library/README.md). +## Usage + +This are autogenerated, if you are looking for a proper Rust API version check on [`waku-bindings`](https://crates.io/crates/waku-bindings) + +Add this to your `Cargo.toml`: + +```toml +[dependencies] +waku-sys = "0.1.0" +``` + ## About [Waku](https://waku.org/)