where that Proto. prefix depends on the location of the .proto definition usingAny, as well as the precise way that protoc was invoked. Proper support for Any will probably require patching proto-lens-protoc (and possibly even requiring explicit support from protoc?).
See https://protobuf.dev/programming-guides/proto3/#any . Note that the status of
Any
is reported here as "Currently the runtime libraries for working with Any types are under development".Supporting this is a bit awkward; following the spec exactly
currently results in Haskell code that imports
where that
Proto.
prefix depends on the location of the.proto
definition usingAny
, as well as the precise way thatprotoc
was invoked. Proper support forAny
will probably require patching proto-lens-protoc (and possibly even requiring explicit support fromprotoc
?).