single bytes are not supported
`
;; this is ok
(-> (float 10) fress/write fress/read) ;=> 10.0
;; this breaks
(-> (byte 10) fress/write fress/read)
;; IllegalArgumentException Cannot write 10 as tag null org.fressian.handlers.WriteHandlerLookup.requireWriteHandler
;; white this works
(-> (byte-array [(byte 10)]) fress/write fress/read) ;;=> [10]
`