소스 검색

lock scnlib's fast_float dependency to below 7.0.0 (#6328)

Currently, scnlib failed to compile and run with fast_float 7.0.0 and above. See [their issue](https://github.com/eliaskosunen/scnlib/pull/136). We hereby manually limit the version of fast_float in scnlib's dependencies.
vspefs 7 달 전
부모
커밋
f2df3e7c7b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/s/scnlib/xmake.lua

+ 1 - 1
packages/s/scnlib/xmake.lua

@@ -18,7 +18,7 @@ package("scnlib")
     add_configs("rtti", {description = "Enable rtti", default = true, type = "boolean"})
     add_configs("regex", {description = "Regex backend to use", type = "string", values = {"std", "boost", "re2"}})
 
-    add_deps("fast_float")
+    add_deps("fast_float <7.0.0")
 
     on_check("windows", function (package)
         import("core.tool.toolchain")