Currently im on small project which includes RFID reader. Reader is ready module communicating with arduino by serial interface. Reader is not configurable in any way so im only reading from it. Because of much pin-eating elements in project (like LCD) i have to think twice on each pin usage.
So, is there a way to use SoftwareSerial with only rx pin?
It's probably OK, although it isn't completely correct because the code does a few things the may end in strange behavior. I just checked the code and in your case (TX not needed) it's better to use this:
SoftwareSerial mySerial(8,8);
The TX pin is initialized before the RX pin, so the complete initialization of the TX pin will be overwritten before the object gets into use. Whatever initialization method you use, you'll probably get unexpected behaviour if you ever go to write to such an object.