Skip to content

Commit 030a114

Browse files
nepetcdecker
authored andcommitted
rs: Export NotificationStream
Services that want to wrap the server implementation will need access to the `NotificationStream` struct in order to pass the stream through. Changelog-Added: `cln-grpc` Exposed NotificationStream in the server module Signed-off-by: Peter Neuroth <[email protected]>
1 parent b8c39bb commit 030a114

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cln-grpc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cln-grpc"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
edition = "2021"
55
license = "MIT"
66
description = "The Core Lightning API as grpc primitives. Provides the bindings used to expose the API over the network."

cln-grpc/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ cfg_if::cfg_if! {
88
mod convert;
99
mod server;
1010
pub use server::Server;
11+
pub use server::NotificationStream;
1112
}
1213
}
1314

0 commit comments

Comments
 (0)