RFC 3339 in standard library?

I require RFC 3339 when calling an external API. Is there a way to do this with the standard DateTime library that I’m not seeing, or do I need to pull in an external dependency e.g. Calendar? Thanks!

What do you need exactly? The elixir DateTime has to_iso8601 which is also valid RFC 3339

Ah. Thanks for the clarification!