File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
crates/nostr-sdk/src/client Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 40
40
* mls: add new crate for implementing MLS messaging ([ JeffG] at https://github.com/rust-nostr/nostr/pull/843 )
41
41
* sdk: add ` Options::pool ` ([ Yuki Kishimoto] )
42
42
43
+ ### Deprecated
44
+
45
+ * sdk: deprecate ` Options::notification_channel_size ` ([ Yuki Kishimoto] )
46
+
43
47
## v0.41.0 - 2025/04/15
44
48
45
49
### Breaking changes
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ impl Options {
96
96
}
97
97
98
98
/// Notification channel size (default: [`DEFAULT_NOTIFICATION_CHANNEL_SIZE`])
99
- #[ inline ]
99
+ #[ deprecated ( since = "0.42.0" , note = "Use `Options::pool` instead." ) ]
100
100
pub fn notification_channel_size ( mut self , size : usize ) -> Self {
101
101
self . pool = self . pool . notification_channel_size ( size) ;
102
102
self
You can’t perform that action at this time.
0 commit comments