What's the recommended way to solve LP problems with `BigFloat` constraints and no

What’s the recommended way to solve LP problems with BigFloat constraints and no objective function? Tulip+ JuMP? Cosmo + Convex? Something else?

Note that the original poster on Slack cannot see your response here on Discourse. Consider transcribing the appropriate answer back to Slack, or pinging the poster here on Discourse so they can follow this thread.
(Original message :slack:) (More Info)

Answer is Tulip+ Convex. The syntax ends up being

problem = minimize(BigFloat(0), [LBs<A*c, A*c<UBs], numeric_type=BigFloat)
solve!(problem, Tulip.Optimizer{BigFloat})