The notification actor

The notification actor is actually a handler of WebScoket connections, but it performs only one function—sending a NewComment value, serialized to JSON, to clients.

Since we need a JSON serializer, add the serde_json crate to dependencies:

serde_json = "1.0"

Then, add the src/notify.rs module and start implementing the actor.