diff options
author | Winter <winter@winter.cafe> | 2024-03-26 22:36:17 -0400 |
---|---|---|
committer | Winter <winter@winter.cafe> | 2024-03-27 21:04:00 -0400 |
commit | 80405d06264f0de1c16ee2646388ab501df20628 (patch) | |
tree | b90d7a475e059552ebdde80ebb8b390a79b8d571 /src/libexpr/primops | |
parent | edba570664b952facde43fd0414e60f0a42851da (diff) |
Stop vendoring toml11
We don't apply any patches to it, and vendoring it locks users into
bugs (it hasn't been updated since its introduction in late 2021).
Closes https://git.lix.systems/lix-project/lix/issues/164
Change-Id: Ied071c841fc30b0dfb575151afd1e7f66970fdb9
Diffstat (limited to 'src/libexpr/primops')
-rw-r--r-- | src/libexpr/primops/fromTOML.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libexpr/primops/fromTOML.cc b/src/libexpr/primops/fromTOML.cc index 94be7960a..c51683df7 100644 --- a/src/libexpr/primops/fromTOML.cc +++ b/src/libexpr/primops/fromTOML.cc @@ -1,9 +1,8 @@ #include "primops.hh" #include "eval-inline.hh" -#include "../../toml11/toml.hpp" - #include <sstream> +#include <toml.hpp> namespace nix { |