I am trying to marshal a type map[uint64]*somestruct, but cannot do so, as I get the error messags unsupported map key type "uint64". This is really unfortunate, because one of the great things about cbor is that I can use numbers as keys in maps.
Code that throws the error: https://github.com/polydawn/refmt/blob/master/obj/marshalMapWildcard.go#L24-L55