Server-side Swift. The Perfect core toolset and framework for Swift Developers. (For mobile back-end development, website and API development, and more…)
UUID in Utilities.swift has been deprecated, but it's still impossible to build on a system that doesn't have uuid-dev installed.
The recommended solution of installing it with apt-get isn't always possible. For example, Netlify Docker images run unprivileged as a security policy and do not have it installed.
Perhaps gating it with #if swift(<5.0) and using __has_include in the C headers would work?
UUID
inUtilities.swift
has been deprecated, but it's still impossible to build on a system that doesn't haveuuid-dev
installed.The recommended solution of installing it with
apt-get
isn't always possible. For example, Netlify Docker images run unprivileged as a security policy and do not have it installed.Perhaps gating it with
#if swift(<5.0)
and using__has_include
in the C headers would work?