I have two Rust threads; to send a struct from one thread to another I would use a channel. Now I want to split these threads into two OS processes.
Is there a simpler way than using a TCP socket and serializing to JSON back and forth?
I'm fairly new to all of this so I don't even know what terms to Google.