I see that there are a few approaches to doing Binary I/O with Haskell, and the one I'm currently looking at using is Data.Binary from Hackage.  I was just wondering what folks were choosing for building networked applications and doing Binary I/O.

The approach I was about to take was to use Data.Binary to create ByteString for Network calls with a standard I/O package.  Are there other good options?

Dave