Log for src
-
Use Error trait from core 💬 by Caio 2 years ago
This patch gets rid of the `anyhow` dependency in favor of `core::error::Error` and sets the MSRV to 1.81.0
-
Adjust to new clippy lints by Caio 2 years ago
-
Don't add custom broadcasts to TurnUndead messages by Caio 2 years ago
-
Only compile TrivialID for codecs 💬 by Caio 2 years ago
Only used for roundtrip tests
-
Ignore messages from known old identities 💬 by Caio 2 years ago
In a scenario where traffic is buffered and/or replayed this could lead to noisy cluster behaviour
-
Don't request indirect ping to same addr 💬 by Caio 2 years ago
If a member changed its identity while being probed there was a chance foca would try to ask the new identity to ping the old one on its behalf
-
Introduces Config::periodic_announce_to_down_members 💬 by Caio 2 years ago
New feature to (try to) recorver from network partitions
-
Ensure member_buf / send_buf aren't used while taken 💬 by Caio 2 years ago
`is_empty()` wouldn't catch use-then-clear cases
-
Fix a few comment and doc typos by Caio 2 years ago
-
Add docs to the new Identity trait methods by Caio 2 years ago
-
Update BroadcastHandler docs by Caio 2 years ago
-
Add docs for AccumulatingRuntime by Caio 2 years ago
-
Notification::Rename is better than Renamed at least by Caio 2 years ago
-
add_broadcast signals when the data enters the backlog by Caio 2 years ago
-
Explicit field traces instead of magic 💬 by Caio 2 years ago
Tired of rustfmt randomly breaking
-
promote AccumulatingRuntime to supported 💬 by Caio 2 years ago
It's useful enough, lets me get rid of yet another dummy runtime impl and allows examples to be smaller
-
send_buf can be a Vec<u8> 💬 by Caio 2 years ago
Limit works with Vec, so all that's needed is a mem::take dance
-
Yield MalformedPacket on bad add_broadcast input 💬 by Caio 2 years ago
Over-used and lossy error. Should add more discriminants
-
New custom broadcast wire format 💬 by Caio 2 years ago
re-enable tests custom broadcasts are always length-prefixed now
-
Adjust comment: members do disappear now by Caio 2 years ago
-
lint fix when tracing is off by Caio 2 years ago
-
no tracing inside members 💬 by Caio 2 years ago
i want less of this thing, not more
-
New Notification::Rename for addr conflict resolution by Caio 2 years ago
-
Don't accept messages from our own address by Caio 2 years ago
-
conflict resolution within Members via Identity 💬 by Caio 2 years ago
I really don't like the `win_addr_conflict` name ... not like `has_same_prefix` was any better
-
wip conflict management sketch 💬 by Caio 2 years ago
sweet. looks like simple conflict mgmt will be a go
-
Stable addr for testing ID 💬 by Caio 2 years ago
huh it wasn't a proper breakage
-
use addr equality instead of has_same_prefix 💬 by Caio 2 years ago
finally something broke proper. soon i'll know if this will actually go somewhere
-
ignore broken custom broadcasts for now by Caio 2 years ago