diff --git a/.github/update.log b/.github/update.log
index eb56a0a029..f3c1830ade 100644
--- a/.github/update.log
+++ b/.github/update.log
@@ -766,3 +766,4 @@ Update On Fri Sep 13 20:34:47 CEST 2024
Update On Sat Sep 14 20:32:28 CEST 2024
Update On Sun Sep 15 20:33:53 CEST 2024
Update On Mon Sep 16 20:36:05 CEST 2024
+Update On Tue Sep 17 20:34:06 CEST 2024
diff --git a/clash-meta/adapter/outbound/vless.go b/clash-meta/adapter/outbound/vless.go
index 43b4aa214a..b18bf4dac6 100644
--- a/clash-meta/adapter/outbound/vless.go
+++ b/clash-meta/adapter/outbound/vless.go
@@ -505,17 +505,14 @@ func NewVless(option VlessOption) (*Vless, error) {
var addons *vless.Addons
if option.Network != "ws" && len(option.Flow) >= 16 {
option.Flow = option.Flow[:16]
- switch option.Flow {
- case vless.XRV:
- log.Warnln("To use %s, ensure your server is upgrade to Xray-core v1.8.0+", vless.XRV)
- addons = &vless.Addons{
- Flow: option.Flow,
- }
- case vless.XRO, vless.XRD, vless.XRS:
- log.Fatalln("Legacy XTLS protocol %s is deprecated and no longer supported", option.Flow)
- default:
+ if option.Flow != vless.XRV {
return nil, fmt.Errorf("unsupported xtls flow type: %s", option.Flow)
}
+
+ log.Warnln("To use %s, ensure your server is upgrade to Xray-core v1.8.0+", vless.XRV)
+ addons = &vless.Addons{
+ Flow: option.Flow,
+ }
}
switch option.PacketEncoding {
diff --git a/clash-nyanpasu/backend/Cargo.lock b/clash-nyanpasu/backend/Cargo.lock
index ee448d0b30..336780e2f6 100644
--- a/clash-nyanpasu/backend/Cargo.lock
+++ b/clash-nyanpasu/backend/Cargo.lock
@@ -696,7 +696,7 @@ dependencies = [
"bitflags 2.6.0",
"cexpr",
"clang-sys",
- "itertools 0.12.1",
+ "itertools 0.11.0",
"lazy_static",
"lazycell",
"log",
@@ -7322,9 +7322,9 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
[[package]]
name = "tauri"
-version = "2.0.0-rc.14"
+version = "2.0.0-rc.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2fa32e2741bda64c1da02d93252a466893180052fc6de61c8803b0356504b70d"
+checksum = "eb3c3b1c7ac5b72d59da307b84af900a0098c74c9d7369f65018cd8ec0eb50fb"
dependencies = [
"anyhow",
"bytes",
@@ -7360,7 +7360,7 @@ dependencies = [
"tauri-macros",
"tauri-runtime",
"tauri-runtime-wry",
- "tauri-utils 2.0.0-rc.11",
+ "tauri-utils 2.0.0-rc.12",
"thiserror",
"tokio",
"tray-icon",
@@ -7374,9 +7374,9 @@ dependencies = [
[[package]]
name = "tauri-build"
-version = "2.0.0-rc.11"
+version = "2.0.0-rc.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "148441d64674b2885c1ba5baf3ae61662bb8753859ffcfb541962cbc6b847f39"
+checksum = "6ff5713e81e02e0b99f5219b275abbd7d2c0cc0f30180e25b1b650e08feeac63"
dependencies = [
"anyhow",
"cargo_toml",
@@ -7388,7 +7388,7 @@ dependencies = [
"semver 1.0.23",
"serde",
"serde_json",
- "tauri-utils 2.0.0-rc.11",
+ "tauri-utils 2.0.0-rc.12",
"tauri-winres",
"toml 0.8.2",
"walkdir",
@@ -7396,9 +7396,9 @@ dependencies = [
[[package]]
name = "tauri-codegen"
-version = "2.0.0-rc.11"
+version = "2.0.0-rc.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "72a15c3f9282c82871c69ddb65d02ae552738bbac848c8adcab521bf14d8b9e6"
+checksum = "5370f2591dcc93d4ff08d9dd168f5097f79b34e859883586a409c627544190e3"
dependencies = [
"base64 0.22.1",
"brotli",
@@ -7413,7 +7413,7 @@ dependencies = [
"serde_json",
"sha2 0.10.8",
"syn 2.0.77",
- "tauri-utils 2.0.0-rc.11",
+ "tauri-utils 2.0.0-rc.12",
"thiserror",
"time",
"url",
@@ -7423,16 +7423,16 @@ dependencies = [
[[package]]
name = "tauri-macros"
-version = "2.0.0-rc.10"
+version = "2.0.0-rc.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f12d1aa317bec56f78388cf6012d788876d838595a48f95cbd7835642db356a0"
+checksum = "19442dc8ee002ab1926586f6aecb90114f3a1226766008b0c9ac2d9fec9eeb7e"
dependencies = [
"heck 0.5.0",
"proc-macro2",
"quote",
"syn 2.0.77",
"tauri-codegen",
- "tauri-utils 2.0.0-rc.11",
+ "tauri-utils 2.0.0-rc.12",
]
[[package]]
@@ -7447,7 +7447,7 @@ dependencies = [
"schemars",
"serde",
"serde_json",
- "tauri-utils 2.0.0-rc.11",
+ "tauri-utils 2.0.0-rc.12",
"toml 0.8.2",
"walkdir",
]
@@ -7627,9 +7627,9 @@ dependencies = [
[[package]]
name = "tauri-runtime"
-version = "2.0.0-rc.11"
+version = "2.0.0-rc.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "389f78c8e8e6eff3897d8d9581087943b5976ea96a0ab5036be691f28c2b0df0"
+checksum = "c5f38d8aaa1e81d20e8e208e3e317f81b59fb75c530fbae8a90e72d02001d687"
dependencies = [
"dpi",
"gtk",
@@ -7638,7 +7638,7 @@ dependencies = [
"raw-window-handle",
"serde",
"serde_json",
- "tauri-utils 2.0.0-rc.11",
+ "tauri-utils 2.0.0-rc.12",
"thiserror",
"url",
"windows 0.58.0",
@@ -7646,9 +7646,9 @@ dependencies = [
[[package]]
name = "tauri-runtime-wry"
-version = "2.0.0-rc.12"
+version = "2.0.0-rc.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e17625b7cf63958d53945e199391d11c9f195fb3d1cb8aeb64dc3084d0091b92"
+checksum = "cf1ef5171e14c8fe3b5a63e75004c20d057747bc3e7fdc5f8ded625f0b29f5c7"
dependencies = [
"gtk",
"http 1.1.0",
@@ -7662,7 +7662,7 @@ dependencies = [
"softbuffer",
"tao",
"tauri-runtime",
- "tauri-utils 2.0.0-rc.11",
+ "tauri-utils 2.0.0-rc.12",
"url",
"webkit2gtk",
"webview2-com",
@@ -7697,9 +7697,9 @@ dependencies = [
[[package]]
name = "tauri-utils"
-version = "2.0.0-rc.11"
+version = "2.0.0-rc.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3019641087c9039b57ebfca95fa42a93c07056845b7d8d57c8966061bcee83b4"
+checksum = "31fe4c9148e1b35225e1c00753f24b517ce00041d02eb4b4d6fd10613a47736c"
dependencies = [
"brotli",
"cargo_metadata",
diff --git a/clash-nyanpasu/frontend/interface/package.json b/clash-nyanpasu/frontend/interface/package.json
index 74d3d59dd7..0b581a69d1 100644
--- a/clash-nyanpasu/frontend/interface/package.json
+++ b/clash-nyanpasu/frontend/interface/package.json
@@ -11,7 +11,7 @@
"build": "tsc"
},
"dependencies": {
- "@tauri-apps/api": "2.0.0-rc.4",
+ "@tauri-apps/api": "2.0.0-rc.5",
"ahooks": "3.8.1",
"ofetch": "1.3.4",
"react": "rc",
diff --git a/clash-nyanpasu/frontend/nyanpasu/package.json b/clash-nyanpasu/frontend/nyanpasu/package.json
index 7573ad841d..6ed1267281 100644
--- a/clash-nyanpasu/frontend/nyanpasu/package.json
+++ b/clash-nyanpasu/frontend/nyanpasu/package.json
@@ -16,12 +16,12 @@
"@generouted/react-router": "1.19.6",
"@juggle/resize-observer": "3.4.0",
"@material/material-color-utilities": "0.3.0",
- "@mui/icons-material": "6.0.2",
+ "@mui/icons-material": "6.1.0",
"@mui/lab": "6.0.0-beta.9",
- "@mui/material": "6.0.2",
+ "@mui/material": "6.1.0",
"@nyanpasu/interface": "workspace:^",
"@nyanpasu/ui": "workspace:^",
- "@tauri-apps/api": "2.0.0-rc.4",
+ "@tauri-apps/api": "2.0.0-rc.5",
"@types/json-schema": "7.0.15",
"ahooks": "3.8.1",
"allotment": "1.20.2",
@@ -76,7 +76,7 @@
"unplugin-auto-import": "0.18.3",
"unplugin-icons": "0.19.3",
"validator": "13.12.0",
- "vite": "5.4.5",
+ "vite": "5.4.6",
"vite-plugin-monaco-editor": "1.1.3",
"vite-plugin-sass-dts": "1.3.29",
"vite-plugin-svgr": "4.2.0",
diff --git a/clash-nyanpasu/frontend/ui/package.json b/clash-nyanpasu/frontend/ui/package.json
index 208a3163c8..126ba82492 100644
--- a/clash-nyanpasu/frontend/ui/package.json
+++ b/clash-nyanpasu/frontend/ui/package.json
@@ -17,12 +17,12 @@
},
"dependencies": {
"@material/material-color-utilities": "0.3.0",
- "@mui/icons-material": "6.0.2",
+ "@mui/icons-material": "6.1.0",
"@mui/lab": "6.0.0-beta.9",
- "@mui/material": "6.0.2",
+ "@mui/material": "6.1.0",
"@radix-ui/react-portal": "1.1.1",
"@radix-ui/react-scroll-area": "1.1.0",
- "@tauri-apps/api": "2.0.0-rc.4",
+ "@tauri-apps/api": "2.0.0-rc.5",
"@types/d3": "7.4.3",
"@types/react": "18.3.5",
"@vitejs/plugin-react": "4.3.1",
@@ -34,7 +34,7 @@
"react-error-boundary": "4.0.13",
"react-i18next": "15.0.2",
"react-use": "17.5.1",
- "vite": "5.4.5",
+ "vite": "5.4.6",
"vite-tsconfig-paths": "5.0.1"
},
"devDependencies": {
diff --git a/clash-nyanpasu/package.json b/clash-nyanpasu/package.json
index 4acbd27b05..46c34f7439 100644
--- a/clash-nyanpasu/package.json
+++ b/clash-nyanpasu/package.json
@@ -59,7 +59,7 @@
"@commitlint/cli": "19.4.1",
"@commitlint/config-conventional": "19.4.1",
"@ianvs/prettier-plugin-sort-imports": "4.3.1",
- "@tauri-apps/cli": "2.0.0-rc.15",
+ "@tauri-apps/cli": "2.0.0-rc.16",
"@types/fs-extra": "11.0.4",
"@types/lodash-es": "4.17.12",
"@types/node": "22.5.4",
diff --git a/clash-nyanpasu/pnpm-lock.yaml b/clash-nyanpasu/pnpm-lock.yaml
index 33ec373eef..ad7df14290 100644
--- a/clash-nyanpasu/pnpm-lock.yaml
+++ b/clash-nyanpasu/pnpm-lock.yaml
@@ -30,8 +30,8 @@ importers:
specifier: 4.3.1
version: 4.3.1(prettier@3.3.3)
'@tauri-apps/cli':
- specifier: 2.0.0-rc.15
- version: 2.0.0-rc.15
+ specifier: 2.0.0-rc.16
+ version: 2.0.0-rc.16
'@types/fs-extra':
specifier: 11.0.4
version: 11.0.4
@@ -162,20 +162,20 @@ importers:
frontend/interface:
dependencies:
'@tauri-apps/api':
- specifier: 2.0.0-rc.4
- version: 2.0.0-rc.4
+ specifier: 2.0.0-rc.5
+ version: 2.0.0-rc.5
ahooks:
specifier: 3.8.1
- version: 3.8.1(react@19.0.0-rc-206df66e-20240912)
+ version: 3.8.1(react@19.0.0-rc-f2df5694-20240916)
ofetch:
specifier: 1.3.4
version: 1.3.4
react:
specifier: rc
- version: 19.0.0-rc-206df66e-20240912
+ version: 19.0.0-rc-f2df5694-20240916
swr:
specifier: 2.2.5
- version: 2.2.5(react@19.0.0-rc-206df66e-20240912)
+ version: 2.2.5(react@19.0.0-rc-f2df5694-20240916)
devDependencies:
'@types/react':
specifier: npm:types-react@rc
@@ -185,19 +185,19 @@ importers:
dependencies:
'@dnd-kit/core':
specifier: 6.1.0
- version: 6.1.0(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
+ version: 6.1.0(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
'@dnd-kit/sortable':
specifier: 8.0.0
- version: 8.0.0(@dnd-kit/core@6.1.0(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
+ version: 8.0.0(@dnd-kit/core@6.1.0(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
'@dnd-kit/utilities':
specifier: 3.2.2
- version: 3.2.2(react@19.0.0-rc-206df66e-20240912)
+ version: 3.2.2(react@19.0.0-rc-f2df5694-20240916)
'@emotion/styled':
specifier: 11.13.0
- version: 11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ version: 11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@generouted/react-router':
specifier: 1.19.6
- version: 1.19.6(react-router-dom@6.26.2(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(vite@5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))
+ version: 1.19.6(react-router-dom@6.26.2(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(vite@5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))
'@juggle/resize-observer':
specifier: 3.4.0
version: 3.4.0
@@ -205,14 +205,14 @@ importers:
specifier: 0.3.0
version: 0.3.0
'@mui/icons-material':
- specifier: 6.0.2
- version: 6.0.2(@mui/material@6.0.2(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ specifier: 6.1.0
+ version: 6.1.0(@mui/material@6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@mui/lab':
specifier: 6.0.0-beta.9
- version: 6.0.0-beta.9(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@mui/material@6.0.2(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ version: 6.0.0-beta.9(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@mui/material@6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@mui/material':
- specifier: 6.0.2
- version: 6.0.2(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ specifier: 6.1.0
+ version: 6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@nyanpasu/interface':
specifier: workspace:^
version: link:../interface
@@ -220,17 +220,17 @@ importers:
specifier: workspace:^
version: link:../ui
'@tauri-apps/api':
- specifier: 2.0.0-rc.4
- version: 2.0.0-rc.4
+ specifier: 2.0.0-rc.5
+ version: 2.0.0-rc.5
'@types/json-schema':
specifier: 7.0.15
version: 7.0.15
ahooks:
specifier: 3.8.1
- version: 3.8.1(react@19.0.0-rc-206df66e-20240912)
+ version: 3.8.1(react@19.0.0-rc-f2df5694-20240916)
allotment:
specifier: 1.20.2
- version: 1.20.2(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
+ version: 1.20.2(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
country-code-emoji:
specifier: 2.3.0
version: 2.3.0
@@ -239,61 +239,61 @@ importers:
version: 1.11.13
framer-motion:
specifier: 12.0.0-alpha.1
- version: 12.0.0-alpha.1(@emotion/is-prop-valid@1.3.0)(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
+ version: 12.0.0-alpha.1(@emotion/is-prop-valid@1.3.0)(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
i18next:
specifier: 23.15.1
version: 23.15.1
jotai:
specifier: 2.9.3
- version: 2.9.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ version: 2.9.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
json-schema:
specifier: 0.4.0
version: 0.4.0
material-react-table:
specifier: 3.0.1
- version: 3.0.1(runfxxjy3yaaoarf7izcv4i52e)
+ version: 3.0.1(ksooiflzlh6bunizt7lsb7vxdy)
monaco-editor:
specifier: 0.51.0
version: 0.51.0
mui-color-input:
specifier: 4.0.0
- version: 4.0.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@mui/material@6.0.2(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ version: 4.0.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@mui/material@6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
react:
specifier: rc
- version: 19.0.0-rc-206df66e-20240912
+ version: 19.0.0-rc-f2df5694-20240916
react-dom:
specifier: rc
- version: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ version: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
react-error-boundary:
specifier: 4.0.13
- version: 4.0.13(react@19.0.0-rc-206df66e-20240912)
+ version: 4.0.13(react@19.0.0-rc-f2df5694-20240916)
react-fast-marquee:
specifier: 1.6.5
- version: 1.6.5(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
+ version: 1.6.5(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
react-hook-form-mui:
specifier: 7.2.0
- version: 7.2.0(cqkqk2p7xjolreum2vetnyjtqu)
+ version: 7.2.0(75kr3s4ytwqeax72klof66xxoa)
react-i18next:
specifier: 15.0.2
- version: 15.0.2(i18next@23.15.1)(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
+ version: 15.0.2(i18next@23.15.1)(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
react-markdown:
specifier: 9.0.1
- version: 9.0.1(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ version: 9.0.1(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
react-router-dom:
specifier: 6.26.2
- version: 6.26.2(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
+ version: 6.26.2(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
react-split-grid:
specifier: 1.0.4
- version: 1.0.4(react@19.0.0-rc-206df66e-20240912)
+ version: 1.0.4(react@19.0.0-rc-f2df5694-20240916)
react-use:
specifier: 17.5.1
- version: 17.5.1(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
+ version: 17.5.1(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
swr:
specifier: 2.2.5
- version: 2.2.5(react@19.0.0-rc-206df66e-20240912)
+ version: 2.2.5(react@19.0.0-rc-f2df5694-20240916)
virtua:
specifier: 0.34.2
- version: 0.34.2(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
+ version: 0.34.2(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
devDependencies:
'@csstools/normalize.css':
specifier: 12.1.1
@@ -303,13 +303,13 @@ importers:
version: 11.12.0
'@emotion/react':
specifier: 11.13.3
- version: 11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ version: 11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@iconify/json':
specifier: 2.2.249
version: 2.2.249
'@monaco-editor/react':
specifier: 4.6.0
- version: 4.6.0(monaco-editor@0.51.0)(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
+ version: 4.6.0(monaco-editor@0.51.0)(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
'@tauri-apps/plugin-clipboard-manager':
specifier: 2.0.0-rc.2
version: 2.0.0-rc.2
@@ -345,10 +345,10 @@ importers:
version: 13.12.1
'@vitejs/plugin-react':
specifier: 4.3.1
- version: 4.3.1(vite@5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))
+ version: 4.3.1(vite@5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))
'@vitejs/plugin-react-swc':
specifier: 3.7.0
- version: 3.7.0(vite@5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))
+ version: 3.7.0(vite@5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))
clsx:
specifier: 2.1.1
version: 2.1.1
@@ -380,20 +380,20 @@ importers:
specifier: 13.12.0
version: 13.12.0
vite:
- specifier: 5.4.5
- version: 5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)
+ specifier: 5.4.6
+ version: 5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)
vite-plugin-monaco-editor:
specifier: npm:vite-plugin-monaco-editor-new@1.1.3
version: vite-plugin-monaco-editor-new@1.1.3(monaco-editor@0.51.0)
vite-plugin-sass-dts:
specifier: 1.3.29
- version: 1.3.29(postcss@8.4.47)(prettier@3.3.3)(sass-embedded@1.78.0)(vite@5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))
+ version: 1.3.29(postcss@8.4.47)(prettier@3.3.3)(sass-embedded@1.78.0)(vite@5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))
vite-plugin-svgr:
specifier: 4.2.0
- version: 4.2.0(rollup@4.21.0)(typescript@5.5.4)(vite@5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))
+ version: 4.2.0(rollup@4.21.0)(typescript@5.5.4)(vite@5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))
vite-tsconfig-paths:
specifier: 5.0.1
- version: 5.0.1(typescript@5.5.4)(vite@5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))
+ version: 5.0.1(typescript@5.5.4)(vite@5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))
zod:
specifier: 3.23.8
version: 3.23.8
@@ -404,23 +404,23 @@ importers:
specifier: 0.3.0
version: 0.3.0
'@mui/icons-material':
- specifier: 6.0.2
- version: 6.0.2(@mui/material@6.0.2(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ specifier: 6.1.0
+ version: 6.1.0(@mui/material@6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@mui/lab':
specifier: 6.0.0-beta.9
- version: 6.0.0-beta.9(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@mui/material@6.0.2(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ version: 6.0.0-beta.9(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@mui/material@6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@mui/material':
- specifier: 6.0.2
- version: 6.0.2(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ specifier: 6.1.0
+ version: 6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@radix-ui/react-portal':
specifier: 1.1.1
- version: 1.1.1(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ version: 1.1.1(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@radix-ui/react-scroll-area':
specifier: 1.1.0
- version: 1.1.0(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ version: 1.1.0(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@tauri-apps/api':
- specifier: 2.0.0-rc.4
- version: 2.0.0-rc.4
+ specifier: 2.0.0-rc.5
+ version: 2.0.0-rc.5
'@types/d3':
specifier: 7.4.3
version: 7.4.3
@@ -429,41 +429,41 @@ importers:
version: types-react@19.0.0-rc.1
'@vitejs/plugin-react':
specifier: 4.3.1
- version: 4.3.1(vite@5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))
+ version: 4.3.1(vite@5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))
ahooks:
specifier: 3.8.1
- version: 3.8.1(react@19.0.0-rc-206df66e-20240912)
+ version: 3.8.1(react@19.0.0-rc-f2df5694-20240916)
d3:
specifier: 7.9.0
version: 7.9.0
framer-motion:
specifier: 12.0.0-alpha.1
- version: 12.0.0-alpha.1(@emotion/is-prop-valid@1.3.0)(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
+ version: 12.0.0-alpha.1(@emotion/is-prop-valid@1.3.0)(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
react:
specifier: rc
- version: 19.0.0-rc-206df66e-20240912
+ version: 19.0.0-rc-f2df5694-20240916
react-dom:
specifier: rc
- version: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ version: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
react-error-boundary:
specifier: 4.0.13
- version: 4.0.13(react@19.0.0-rc-206df66e-20240912)
+ version: 4.0.13(react@19.0.0-rc-f2df5694-20240916)
react-i18next:
specifier: 15.0.2
- version: 15.0.2(i18next@23.15.1)(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
+ version: 15.0.2(i18next@23.15.1)(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
react-use:
specifier: 17.5.1
- version: 17.5.1(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
+ version: 17.5.1(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
vite:
- specifier: 5.4.5
- version: 5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)
+ specifier: 5.4.6
+ version: 5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)
vite-tsconfig-paths:
specifier: 5.0.1
- version: 5.0.1(typescript@5.5.4)(vite@5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))
+ version: 5.0.1(typescript@5.5.4)(vite@5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))
devDependencies:
'@emotion/react':
specifier: 11.13.3
- version: 11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ version: 11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@types/d3-interpolate-path':
specifier: 2.0.3
version: 2.0.3
@@ -484,7 +484,7 @@ importers:
version: 5.1.0(typescript@5.5.4)
vite-plugin-dts:
specifier: 4.2.1
- version: 4.2.1(@types/node@22.5.4)(rollup@4.21.0)(typescript@5.5.4)(vite@5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))
+ version: 4.2.1(@types/node@22.5.4)(rollup@4.21.0)(typescript@5.5.4)(vite@5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))
scripts:
dependencies:
@@ -1566,11 +1566,11 @@ packages:
'@mui/core-downloads-tracker@6.1.0':
resolution: {integrity: sha512-covEnIn/2er5YdtuukDRA52kmARhKrHjOvPsyTFMQApZdrTBI4h8jbEy2mxZqwMwcAFS9coonQXnEZKL1rUNdQ==}
- '@mui/icons-material@6.0.2':
- resolution: {integrity: sha512-WaTPSvKcx8X7NdWAHzJWDZv+YXvK0MUY8+JI/r4/q2GgIa5RW+n4+08CGX6jB7sWhU1R3zy28NfsDUwwQjOThw==}
+ '@mui/icons-material@6.1.0':
+ resolution: {integrity: sha512-HxfB0jxwiMTYMN8gAnYn3avbF1aDrqBEuGIj6JDQ3YkLl650E1Wy8AIhwwyP47wdrv0at9aAR0iOO6VLb74A9w==}
engines: {node: '>=14.0.0'}
peerDependencies:
- '@mui/material': ^6.0.2
+ '@mui/material': ^6.1.0
'@types/react': npm:types-react@rc
react: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
@@ -1598,13 +1598,13 @@ packages:
'@types/react':
optional: true
- '@mui/material@6.0.2':
- resolution: {integrity: sha512-KrnkJFSyhsAh8V30DNUbWyRyxMi4ZHjFg1ikQGx+mUAIffFTYIEx9Q+Kxd3vCT0FUFGOmbsuh6F6yRhpybsjkg==}
+ '@mui/material@6.1.0':
+ resolution: {integrity: sha512-4MJ46vmy1xbm8x+ZdRcWm8jEMMowdS8pYlhKQzg/qoKhOcLhImZvf2Jn6z9Dj6gl+lY+C/0MxaHF/avAAGys3Q==}
engines: {node: '>=14.0.0'}
peerDependencies:
'@emotion/react': ^11.5.0
'@emotion/styled': ^11.3.0
- '@mui/material-pigment-css': ^6.0.2
+ '@mui/material-pigment-css': ^6.1.0
'@types/react': npm:types-react@rc
react: ^17.0.0 || ^18.0.0 || ^19.0.0
react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0
@@ -2370,71 +2370,71 @@ packages:
'@taplo/lib@0.4.0-alpha.2':
resolution: {integrity: sha512-DV/Re3DPVY+BhBtLZ3dmP4mP6YMLSsgq9qGLXwOV38lvNF/fBlgvQswzlXmzCEefL/3q2eMoefZpOI/+GLuCNA==}
- '@tauri-apps/api@2.0.0-rc.4':
- resolution: {integrity: sha512-UNiIhhKG08j4ooss2oEEVexffmWkgkYlC2M3GcX3VPtNsqFgVNL8Mcw/4Y7rO9M9S+ffAMnLOF5ypzyuyb8tyg==}
+ '@tauri-apps/api@2.0.0-rc.5':
+ resolution: {integrity: sha512-JWs69pE9NsQdcqTpEVBepAZ08+jgQWuthIiTiaWRq/YlCLgnqq0KfC9sDem55uJ0YpgsytZuyj+m6b6q8oiD2g==}
- '@tauri-apps/cli-darwin-arm64@2.0.0-rc.15':
- resolution: {integrity: sha512-WuzQRELJTeSHe/uLu6IClCCEkwQy4qtZdHUmcAW3baKD217WCytn4jQ5+NFs2GxhK1a2GLHMQtQZSFTLkKiXkw==}
+ '@tauri-apps/cli-darwin-arm64@2.0.0-rc.16':
+ resolution: {integrity: sha512-lISZU4gG0c9PbY7h/j/gW7nJLxZEygNBrYEET6zN8R99Znf5rSO+CfjenaMcJUUj6yTAd8gzdakRpLqNSAWegA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@tauri-apps/cli-darwin-x64@2.0.0-rc.15':
- resolution: {integrity: sha512-71H1dNWlEr+Hyi096Ir3SnlClw4CSR4MhJ8UG8IUBqYwydJPYFzA+GFWRAgnPgcV6sBzdt8trcV9BLV4teDzEw==}
+ '@tauri-apps/cli-darwin-x64@2.0.0-rc.16':
+ resolution: {integrity: sha512-D9uxPCxpyYcTSQulJGFX3POAKPOJd8WcWHFH8x6YVM1cIx6EWRXIE1sZnPUOjFr7qCg+bSdYdr8/BFHcZGcApQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@tauri-apps/cli-linux-arm-gnueabihf@2.0.0-rc.15':
- resolution: {integrity: sha512-hO7AS09l6XZRCu/vqvB/iv6CvIlD//h9njhyw++0tJPCNH3X4rl13ji6SnoO0V6ZUCEeCeQBTAALsanYAlZelQ==}
+ '@tauri-apps/cli-linux-arm-gnueabihf@2.0.0-rc.16':
+ resolution: {integrity: sha512-WsVdKm4D1I1XV8I9yRnmOINZRwwWfh6xcLV3m19+B9g6TohK8RkRxWfxvs3TLQlWOLQ6lo8BzS9rzXB+KtjDpg==}
engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
- '@tauri-apps/cli-linux-arm64-gnu@2.0.0-rc.15':
- resolution: {integrity: sha512-r9FrwY83TD4w3vX7J9zS3GPSeis0YWq52p/MVLYR1i8sSJppbvYY72EXi5pR2CZ3vb+6z9/w7LpYTv+hOd2RbA==}
+ '@tauri-apps/cli-linux-arm64-gnu@2.0.0-rc.16':
+ resolution: {integrity: sha512-2jpZDagNs6rrqposHJihHBayttgOl5aB2+bYiVEC6ye+haiFtmYmpdaPOaVIw+YVQs6lepf5PVrisCoU9DmYsg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@tauri-apps/cli-linux-arm64-musl@2.0.0-rc.15':
- resolution: {integrity: sha512-PqMn3/GiqLAhs7p0jr5XqwWN1t7SAgvo6+bFuYNL/SWx1Ui6mOck3ncfDkf+dQAnXnrhX2Qfwkl3agiOZxUZtA==}
+ '@tauri-apps/cli-linux-arm64-musl@2.0.0-rc.16':
+ resolution: {integrity: sha512-SNEDcB+sWOls/B0a+UpUHVa/oegvlXXKYWsTxuXtgWIr5VbWG7rXLZ3fZpLLP3SpRVGTGTnABcyqshFbWSqqKQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@tauri-apps/cli-linux-x64-gnu@2.0.0-rc.15':
- resolution: {integrity: sha512-o8lvgVBGXwthMV8+8EzEwXQY5jk2q+c700xeC/LY+J0lBL5ai3i0revlhO+3RwKnjnRLZMCXatr5K3gGtXIsoQ==}
+ '@tauri-apps/cli-linux-x64-gnu@2.0.0-rc.16':
+ resolution: {integrity: sha512-Zsq29MM1ooeH1+chQBa7ffDFnzAZebBBFdsvs4e05tS1H8gn4oKE+PSMn9p/okzVXykEk9ri2/n7BG1XFeifMA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@tauri-apps/cli-linux-x64-musl@2.0.0-rc.15':
- resolution: {integrity: sha512-cmANCyhcdInZSfIM3CPjA0eDu1toYABapSttA1rHbNrcJrHIq2KPKRCNuXIjWiBggxfIhJKWX7mTgQCQIyHd/w==}
+ '@tauri-apps/cli-linux-x64-musl@2.0.0-rc.16':
+ resolution: {integrity: sha512-g+pwSuis2YMxhJJ/pJYwp/Nps5CWvlv/5MV5UfDvClkCkeAyzIqVX+HbBLPcs5S0CePUQNeP0j4d4jBWUqZZQg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@tauri-apps/cli-win32-arm64-msvc@2.0.0-rc.15':
- resolution: {integrity: sha512-FyWwCQb+uCCBtEDTDKtILH3wv0TWCQ2mXwMyZlibpbZ4RbaV5yDY82h8h7usfEuPHtBtAJHknHvX5WV1ETl5kw==}
+ '@tauri-apps/cli-win32-arm64-msvc@2.0.0-rc.16':
+ resolution: {integrity: sha512-PpPqdMTwJSDAK4KnNjvh77ShSkY+7pih1f6e50EtXar8bjC17e3XcEqFhDNne5mxEVTLYhibs6p1JLPad0ZjRA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@tauri-apps/cli-win32-ia32-msvc@2.0.0-rc.15':
- resolution: {integrity: sha512-+bOBX7EdpmkCSBxgd9HcC/p9LoG/q1a5dJebWFuL9GhmdPeb5hv4plB/OTUAtg1OnEVGPXhTiSkcdRatZVryfA==}
+ '@tauri-apps/cli-win32-ia32-msvc@2.0.0-rc.16':
+ resolution: {integrity: sha512-io2yIcEcG7YLP+9n13NbilB93SjcB7jIl8GbURC4XZT4/4t9D1PWHpJr5hySVsGRLCz5e8NzwC5RlnenNzmpPQ==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
- '@tauri-apps/cli-win32-x64-msvc@2.0.0-rc.15':
- resolution: {integrity: sha512-Phpk18bs1YxC+OFYaZNWiddYRmiZvMjB9Rzjl6M128gIkgnqDGnZyfWtM5GZ85/BmX1HVGgILK/46RU6Q88z1g==}
+ '@tauri-apps/cli-win32-x64-msvc@2.0.0-rc.16':
+ resolution: {integrity: sha512-Rfkmxe3k+cBVA/kVYt8O25QrQqWKJlH9AiH7Q3C6xBzzG9PCSRMBszCp+JhBF8jhVlwNmOBv6UG+lm85kspwGg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- '@tauri-apps/cli@2.0.0-rc.15':
- resolution: {integrity: sha512-w5cq2WBKYRJDCE5wi5gyjM79Cq3AchTFImbcGBB+uyB/m3PDBXEidaTBTHqwiup2hKbMivuBAzGUCHt+OfgBhA==}
+ '@tauri-apps/cli@2.0.0-rc.16':
+ resolution: {integrity: sha512-wdjZg/M3dcxiqgWG6VRnABpX0dYxRww93t0d1MYoZxFDrnyoUz5kYwFQ0v4J9u0qenEgskjoypvon7V/Nj9qrg==}
engines: {node: '>= 10'}
hasBin: true
@@ -5811,10 +5811,10 @@ packages:
resolution: {integrity: sha512-RcSV/u+lPChcTB+A4fij0xkE204yzKdAsGUFy6+DrfUzWSawB+cu0n3WLmJcJXQ/VnmjSUlIrqmVLicRhT/gLA==}
hasBin: true
- react-dom@19.0.0-rc-206df66e-20240912:
- resolution: {integrity: sha512-HT04eBSwoBW0vkoo3wpUvHTr28fTP3kOPGNFMRT2O+gkxGX8at1LvI0/0WpcLObuLfVTbD/044N+BXyztZhomw==}
+ react-dom@19.0.0-rc-f2df5694-20240916:
+ resolution: {integrity: sha512-z5bmlgbhXEUNO902dKEuy61Lk/6E06ESsufiIdykddfyhggoRd/0GSZiUH12bGnwmzMnojICk2yI3yNpPIwpCw==}
peerDependencies:
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
react-error-boundary@4.0.13:
resolution: {integrity: sha512-b6PwbdSv8XeOSYvjt8LpgpKrZ0yGdtZokYwkwV2wlcZbxgopHX/hgPl5VgpnoVOWd868n1hktM8Qm4b+02MiLQ==}
@@ -5916,8 +5916,8 @@ packages:
react: '*'
react-dom: '*'
- react@19.0.0-rc-206df66e-20240912:
- resolution: {integrity: sha512-jGaTINz9o42gjsLcEuHLGqp6J/97vIX1bMgpVYCM8WHVI7O+g2wkudlODszpEn2YrrQB1vBXlQjGgGRbJUdyow==}
+ react@19.0.0-rc-f2df5694-20240916:
+ resolution: {integrity: sha512-nGf0C1nmtK44uZVBGB1i320+oZpIL4YibvcDUpKQu/2wR/giIydwzVyx4mjsWRXbYDoyX240F04tHoYLTT2a2w==}
engines: {node: '>=0.10.0'}
read-cache@1.0.0:
@@ -6202,8 +6202,8 @@ packages:
sax@1.3.0:
resolution: {integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==}
- scheduler@0.25.0-rc-206df66e-20240912:
- resolution: {integrity: sha512-5jBhjAvvoH3tf/LdrbqWggN8njR4Y2gD3XsT93Eer2WwjKYR2MekGWmfLtmbgqoCP9upnme0nMsGnKJ7R4hmmg==}
+ scheduler@0.25.0-rc-f2df5694-20240916:
+ resolution: {integrity: sha512-Gn75L9/3lldtLjFYgpsweYP3726xP/cgr23dsD6UZlLHc6RbkPbWiChQOfNuq21r8qManuD8p9hAHpXvtlvvbQ==}
screenfull@5.2.0:
resolution: {integrity: sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==}
@@ -6984,8 +6984,8 @@ packages:
vite:
optional: true
- vite@5.4.5:
- resolution: {integrity: sha512-pXqR0qtb2bTwLkev4SE3r4abCNioP3GkjvIDLlzziPpXtHgiJIjuKl+1GN6ESOT3wMjG3JTeARopj2SwYaHTOA==}
+ vite@5.4.6:
+ resolution: {integrity: sha512-IeL5f8OO5nylsgzd9tq4qD2QqI0k2CQLGrWD0rCN0EQJZpBK5vJAx0I+GDkMOXxQX/OfFHMuLIx6ddAxGX/k+Q==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -7686,29 +7686,29 @@ snapshots:
'@ctrl/tinycolor@4.1.0': {}
- '@dnd-kit/accessibility@3.1.0(react@19.0.0-rc-206df66e-20240912)':
+ '@dnd-kit/accessibility@3.1.0(react@19.0.0-rc-f2df5694-20240916)':
dependencies:
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
tslib: 2.6.2
- '@dnd-kit/core@6.1.0(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)':
+ '@dnd-kit/core@6.1.0(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)':
dependencies:
- '@dnd-kit/accessibility': 3.1.0(react@19.0.0-rc-206df66e-20240912)
- '@dnd-kit/utilities': 3.2.2(react@19.0.0-rc-206df66e-20240912)
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ '@dnd-kit/accessibility': 3.1.0(react@19.0.0-rc-f2df5694-20240916)
+ '@dnd-kit/utilities': 3.2.2(react@19.0.0-rc-f2df5694-20240916)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
tslib: 2.6.2
- '@dnd-kit/sortable@8.0.0(@dnd-kit/core@6.1.0(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)':
+ '@dnd-kit/sortable@8.0.0(@dnd-kit/core@6.1.0(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)':
dependencies:
- '@dnd-kit/core': 6.1.0(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
- '@dnd-kit/utilities': 3.2.2(react@19.0.0-rc-206df66e-20240912)
- react: 19.0.0-rc-206df66e-20240912
+ '@dnd-kit/core': 6.1.0(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
+ '@dnd-kit/utilities': 3.2.2(react@19.0.0-rc-f2df5694-20240916)
+ react: 19.0.0-rc-f2df5694-20240916
tslib: 2.6.2
- '@dnd-kit/utilities@3.2.2(react@19.0.0-rc-206df66e-20240912)':
+ '@dnd-kit/utilities@3.2.2(react@19.0.0-rc-f2df5694-20240916)':
dependencies:
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
tslib: 2.6.2
'@dual-bundle/import-meta-resolve@4.1.0': {}
@@ -7765,17 +7765,17 @@ snapshots:
'@emotion/memoize@0.9.0': {}
- '@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
'@babel/runtime': 7.24.8
'@emotion/babel-plugin': 11.12.0
'@emotion/cache': 11.13.0
'@emotion/serialize': 1.3.1
- '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@19.0.0-rc-206df66e-20240912)
+ '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@19.0.0-rc-f2df5694-20240916)
'@emotion/utils': 1.4.0
'@emotion/weak-memoize': 0.4.0
hoist-non-react-statics: 3.3.2
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
@@ -7797,16 +7797,16 @@ snapshots:
'@emotion/sheet@1.4.0': {}
- '@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
'@babel/runtime': 7.24.8
'@emotion/babel-plugin': 11.12.0
'@emotion/is-prop-valid': 1.3.0
- '@emotion/react': 11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ '@emotion/react': 11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@emotion/serialize': 1.3.0
- '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@19.0.0-rc-206df66e-20240912)
+ '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@19.0.0-rc-f2df5694-20240916)
'@emotion/utils': 1.4.0
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
@@ -7814,9 +7814,9 @@ snapshots:
'@emotion/unitless@0.9.0': {}
- '@emotion/use-insertion-effect-with-fallbacks@1.1.0(react@19.0.0-rc-206df66e-20240912)':
+ '@emotion/use-insertion-effect-with-fallbacks@1.1.0(react@19.0.0-rc-f2df5694-20240916)':
dependencies:
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
'@emotion/utils@1.4.0': {}
@@ -8066,11 +8066,11 @@ snapshots:
'@floating-ui/core': 1.6.1
'@floating-ui/utils': 0.2.2
- '@floating-ui/react-dom@2.1.2(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)':
+ '@floating-ui/react-dom@2.1.2(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)':
dependencies:
'@floating-ui/dom': 1.6.5
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
'@floating-ui/utils@0.2.2': {}
@@ -8079,13 +8079,13 @@ snapshots:
postcss: 7.0.32
purgecss: 2.3.0
- '@generouted/react-router@1.19.6(react-router-dom@6.26.2(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(vite@5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))':
+ '@generouted/react-router@1.19.6(react-router-dom@6.26.2(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(vite@5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))':
dependencies:
fast-glob: 3.3.2
- generouted: 1.19.6(vite@5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))
- react: 19.0.0-rc-206df66e-20240912
- react-router-dom: 6.26.2(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
- vite: 5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)
+ generouted: 1.19.6(vite@5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))
+ react: 19.0.0-rc-f2df5694-20240916
+ react-router-dom: 6.26.2(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
+ vite: 5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)
'@humanwhocodes/config-array@0.11.14':
dependencies:
@@ -8204,218 +8204,218 @@ snapshots:
monaco-editor: 0.51.0
state-local: 1.0.7
- '@monaco-editor/react@4.6.0(monaco-editor@0.51.0)(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)':
+ '@monaco-editor/react@4.6.0(monaco-editor@0.51.0)(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)':
dependencies:
'@monaco-editor/loader': 1.4.0(monaco-editor@0.51.0)
monaco-editor: 0.51.0
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
- '@mui/base@5.0.0-beta.40(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@mui/base@5.0.0-beta.40(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
'@babel/runtime': 7.25.6
- '@floating-ui/react-dom': 2.1.2(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
+ '@floating-ui/react-dom': 2.1.2(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
'@mui/types': 7.2.16(types-react@19.0.0-rc.1)
- '@mui/utils': 5.16.6(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ '@mui/utils': 5.16.6(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@popperjs/core': 2.11.8
clsx: 2.1.1
prop-types: 15.8.1
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
- '@mui/base@5.0.0-beta.58(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@mui/base@5.0.0-beta.58(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
'@babel/runtime': 7.25.6
- '@floating-ui/react-dom': 2.1.2(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
+ '@floating-ui/react-dom': 2.1.2(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
'@mui/types': 7.2.16(types-react@19.0.0-rc.1)
- '@mui/utils': 6.0.0-rc.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ '@mui/utils': 6.0.0-rc.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@popperjs/core': 2.11.8
clsx: 2.1.1
prop-types: 15.8.1
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
'@mui/core-downloads-tracker@6.1.0': {}
- '@mui/icons-material@6.0.2(@mui/material@6.0.2(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@mui/icons-material@6.1.0(@mui/material@6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
'@babel/runtime': 7.25.6
- '@mui/material': 6.0.2(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- react: 19.0.0-rc-206df66e-20240912
+ '@mui/material': 6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ react: 19.0.0-rc-f2df5694-20240916
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
- '@mui/lab@6.0.0-beta.9(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@mui/material@6.0.2(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@mui/lab@6.0.0-beta.9(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@mui/material@6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
'@babel/runtime': 7.25.6
- '@mui/base': 5.0.0-beta.58(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@mui/material': 6.0.2(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@mui/system': 6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ '@mui/base': 5.0.0-beta.58(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@mui/material': 6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@mui/system': 6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@mui/types': 7.2.16(types-react@19.0.0-rc.1)
- '@mui/utils': 6.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ '@mui/utils': 6.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
clsx: 2.1.1
prop-types: 15.8.1
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
optionalDependencies:
- '@emotion/react': 11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@emotion/styled': 11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ '@emotion/react': 11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@types/react': types-react@19.0.0-rc.1
- '@mui/material@6.0.2(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@mui/material@6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
'@babel/runtime': 7.25.6
'@mui/core-downloads-tracker': 6.1.0
- '@mui/system': 6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ '@mui/system': 6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@mui/types': 7.2.16(types-react@19.0.0-rc.1)
- '@mui/utils': 6.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ '@mui/utils': 6.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@popperjs/core': 2.11.8
'@types/react-transition-group': 4.4.11
clsx: 2.1.1
csstype: 3.1.3
prop-types: 15.8.1
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
react-is: 18.3.1
- react-transition-group: 4.4.5(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
+ react-transition-group: 4.4.5(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
optionalDependencies:
- '@emotion/react': 11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@emotion/styled': 11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ '@emotion/react': 11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@types/react': types-react@19.0.0-rc.1
- '@mui/private-theming@5.16.6(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@mui/private-theming@5.16.6(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
'@babel/runtime': 7.25.6
- '@mui/utils': 5.16.6(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ '@mui/utils': 5.16.6(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
prop-types: 15.8.1
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
- '@mui/private-theming@6.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@mui/private-theming@6.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
'@babel/runtime': 7.25.6
- '@mui/utils': 6.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ '@mui/utils': 6.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
prop-types: 15.8.1
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
- '@mui/styled-engine@5.16.6(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)':
+ '@mui/styled-engine@5.16.6(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)':
dependencies:
'@babel/runtime': 7.25.6
'@emotion/cache': 11.13.1
csstype: 3.1.3
prop-types: 15.8.1
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
optionalDependencies:
- '@emotion/react': 11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@emotion/styled': 11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ '@emotion/react': 11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
- '@mui/styled-engine@6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)':
+ '@mui/styled-engine@6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)':
dependencies:
'@babel/runtime': 7.25.6
'@emotion/cache': 11.13.1
'@emotion/sheet': 1.4.0
csstype: 3.1.3
prop-types: 15.8.1
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
optionalDependencies:
- '@emotion/react': 11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@emotion/styled': 11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ '@emotion/react': 11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
- '@mui/system@5.16.7(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@mui/system@5.16.7(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
'@babel/runtime': 7.25.6
- '@mui/private-theming': 5.16.6(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@mui/styled-engine': 5.16.6(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)
+ '@mui/private-theming': 5.16.6(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@mui/styled-engine': 5.16.6(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)
'@mui/types': 7.2.16(types-react@19.0.0-rc.1)
- '@mui/utils': 5.16.6(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ '@mui/utils': 5.16.6(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
clsx: 2.1.1
csstype: 3.1.3
prop-types: 15.8.1
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
optionalDependencies:
- '@emotion/react': 11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@emotion/styled': 11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ '@emotion/react': 11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@types/react': types-react@19.0.0-rc.1
- '@mui/system@6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@mui/system@6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
'@babel/runtime': 7.25.6
- '@mui/private-theming': 6.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@mui/styled-engine': 6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)
+ '@mui/private-theming': 6.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@mui/styled-engine': 6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)
'@mui/types': 7.2.16(types-react@19.0.0-rc.1)
- '@mui/utils': 6.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ '@mui/utils': 6.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
clsx: 2.1.1
csstype: 3.1.3
prop-types: 15.8.1
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
optionalDependencies:
- '@emotion/react': 11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@emotion/styled': 11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ '@emotion/react': 11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@types/react': types-react@19.0.0-rc.1
'@mui/types@7.2.16(types-react@19.0.0-rc.1)':
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
- '@mui/utils@5.16.6(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@mui/utils@5.16.6(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
'@babel/runtime': 7.25.6
'@mui/types': 7.2.16(types-react@19.0.0-rc.1)
'@types/prop-types': 15.7.12
clsx: 2.1.1
prop-types: 15.8.1
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
react-is: 18.3.1
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
- '@mui/utils@6.0.0-rc.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@mui/utils@6.0.0-rc.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
'@babel/runtime': 7.25.6
'@mui/types': 7.2.16(types-react@19.0.0-rc.1)
'@types/prop-types': 15.7.12
clsx: 2.1.1
prop-types: 15.8.1
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
react-is: 18.3.1
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
- '@mui/utils@6.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@mui/utils@6.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
'@babel/runtime': 7.25.6
'@mui/types': 7.2.16(types-react@19.0.0-rc.1)
'@types/prop-types': 15.7.12
clsx: 2.1.1
prop-types: 15.8.1
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
react-is: 18.3.1
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
- '@mui/x-date-pickers@7.9.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@mui/material@6.0.2(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(dayjs@1.11.13)(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@mui/x-date-pickers@7.9.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@mui/material@6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(dayjs@1.11.13)(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
'@babel/runtime': 7.25.6
- '@mui/base': 5.0.0-beta.40(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@mui/material': 6.0.2(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@mui/system': 5.16.7(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@mui/utils': 5.16.6(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ '@mui/base': 5.0.0-beta.40(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@mui/material': 6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@mui/system': 5.16.7(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@mui/utils': 5.16.6(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@types/react-transition-group': 4.4.11
clsx: 2.1.1
prop-types: 15.8.1
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
- react-transition-group: 4.4.5(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
+ react-transition-group: 4.4.5(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
optionalDependencies:
- '@emotion/react': 11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@emotion/styled': 11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ '@emotion/react': 11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
dayjs: 1.11.13
transitivePeerDependencies:
- '@types/react'
@@ -8642,82 +8642,82 @@ snapshots:
'@radix-ui/primitive@1.1.0': {}
- '@radix-ui/react-compose-refs@1.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@radix-ui/react-compose-refs@1.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
- '@radix-ui/react-context@1.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@radix-ui/react-context@1.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
- '@radix-ui/react-direction@1.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@radix-ui/react-direction@1.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
- '@radix-ui/react-portal@1.1.1(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@radix-ui/react-portal@1.1.1(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
- '@radix-ui/react-primitive': 2.0.0(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ '@radix-ui/react-primitive': 2.0.0(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
- '@radix-ui/react-presence@1.1.0(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@radix-ui/react-presence@1.1.0(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ '@radix-ui/react-compose-refs': 1.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
- '@radix-ui/react-primitive@2.0.0(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@radix-ui/react-primitive@2.0.0(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
- '@radix-ui/react-slot': 1.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ '@radix-ui/react-slot': 1.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
- '@radix-ui/react-scroll-area@1.1.0(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@radix-ui/react-scroll-area@1.1.0(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
'@radix-ui/number': 1.1.0
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@radix-ui/react-context': 1.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@radix-ui/react-direction': 1.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@radix-ui/react-presence': 1.1.0(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@radix-ui/react-primitive': 2.0.0(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ '@radix-ui/react-compose-refs': 1.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@radix-ui/react-context': 1.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@radix-ui/react-direction': 1.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@radix-ui/react-presence': 1.1.0(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@radix-ui/react-primitive': 2.0.0(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
- '@radix-ui/react-slot@1.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@radix-ui/react-slot@1.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- react: 19.0.0-rc-206df66e-20240912
+ '@radix-ui/react-compose-refs': 1.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ react: 19.0.0-rc-f2df5694-20240916
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
- '@radix-ui/react-use-callback-ref@1.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@radix-ui/react-use-callback-ref@1.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
- '@radix-ui/react-use-layout-effect@1.1.0(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)':
+ '@radix-ui/react-use-layout-effect@1.1.0(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)':
dependencies:
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
@@ -8978,17 +8978,17 @@ snapshots:
dependencies:
remove-accents: 0.5.0
- '@tanstack/react-table@8.20.5(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)':
+ '@tanstack/react-table@8.20.5(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)':
dependencies:
'@tanstack/table-core': 8.20.5
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
- '@tanstack/react-virtual@3.10.6(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)':
+ '@tanstack/react-virtual@3.10.6(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)':
dependencies:
'@tanstack/virtual-core': 3.10.6
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
'@tanstack/table-core@8.20.5': {}
@@ -9000,82 +9000,82 @@ snapshots:
dependencies:
'@taplo/core': 0.1.1
- '@tauri-apps/api@2.0.0-rc.4': {}
+ '@tauri-apps/api@2.0.0-rc.5': {}
- '@tauri-apps/cli-darwin-arm64@2.0.0-rc.15':
+ '@tauri-apps/cli-darwin-arm64@2.0.0-rc.16':
optional: true
- '@tauri-apps/cli-darwin-x64@2.0.0-rc.15':
+ '@tauri-apps/cli-darwin-x64@2.0.0-rc.16':
optional: true
- '@tauri-apps/cli-linux-arm-gnueabihf@2.0.0-rc.15':
+ '@tauri-apps/cli-linux-arm-gnueabihf@2.0.0-rc.16':
optional: true
- '@tauri-apps/cli-linux-arm64-gnu@2.0.0-rc.15':
+ '@tauri-apps/cli-linux-arm64-gnu@2.0.0-rc.16':
optional: true
- '@tauri-apps/cli-linux-arm64-musl@2.0.0-rc.15':
+ '@tauri-apps/cli-linux-arm64-musl@2.0.0-rc.16':
optional: true
- '@tauri-apps/cli-linux-x64-gnu@2.0.0-rc.15':
+ '@tauri-apps/cli-linux-x64-gnu@2.0.0-rc.16':
optional: true
- '@tauri-apps/cli-linux-x64-musl@2.0.0-rc.15':
+ '@tauri-apps/cli-linux-x64-musl@2.0.0-rc.16':
optional: true
- '@tauri-apps/cli-win32-arm64-msvc@2.0.0-rc.15':
+ '@tauri-apps/cli-win32-arm64-msvc@2.0.0-rc.16':
optional: true
- '@tauri-apps/cli-win32-ia32-msvc@2.0.0-rc.15':
+ '@tauri-apps/cli-win32-ia32-msvc@2.0.0-rc.16':
optional: true
- '@tauri-apps/cli-win32-x64-msvc@2.0.0-rc.15':
+ '@tauri-apps/cli-win32-x64-msvc@2.0.0-rc.16':
optional: true
- '@tauri-apps/cli@2.0.0-rc.15':
+ '@tauri-apps/cli@2.0.0-rc.16':
optionalDependencies:
- '@tauri-apps/cli-darwin-arm64': 2.0.0-rc.15
- '@tauri-apps/cli-darwin-x64': 2.0.0-rc.15
- '@tauri-apps/cli-linux-arm-gnueabihf': 2.0.0-rc.15
- '@tauri-apps/cli-linux-arm64-gnu': 2.0.0-rc.15
- '@tauri-apps/cli-linux-arm64-musl': 2.0.0-rc.15
- '@tauri-apps/cli-linux-x64-gnu': 2.0.0-rc.15
- '@tauri-apps/cli-linux-x64-musl': 2.0.0-rc.15
- '@tauri-apps/cli-win32-arm64-msvc': 2.0.0-rc.15
- '@tauri-apps/cli-win32-ia32-msvc': 2.0.0-rc.15
- '@tauri-apps/cli-win32-x64-msvc': 2.0.0-rc.15
+ '@tauri-apps/cli-darwin-arm64': 2.0.0-rc.16
+ '@tauri-apps/cli-darwin-x64': 2.0.0-rc.16
+ '@tauri-apps/cli-linux-arm-gnueabihf': 2.0.0-rc.16
+ '@tauri-apps/cli-linux-arm64-gnu': 2.0.0-rc.16
+ '@tauri-apps/cli-linux-arm64-musl': 2.0.0-rc.16
+ '@tauri-apps/cli-linux-x64-gnu': 2.0.0-rc.16
+ '@tauri-apps/cli-linux-x64-musl': 2.0.0-rc.16
+ '@tauri-apps/cli-win32-arm64-msvc': 2.0.0-rc.16
+ '@tauri-apps/cli-win32-ia32-msvc': 2.0.0-rc.16
+ '@tauri-apps/cli-win32-x64-msvc': 2.0.0-rc.16
'@tauri-apps/plugin-clipboard-manager@2.0.0-rc.2':
dependencies:
- '@tauri-apps/api': 2.0.0-rc.4
+ '@tauri-apps/api': 2.0.0-rc.5
'@tauri-apps/plugin-dialog@2.0.0-rc.1':
dependencies:
- '@tauri-apps/api': 2.0.0-rc.4
+ '@tauri-apps/api': 2.0.0-rc.5
'@tauri-apps/plugin-fs@2.0.0-rc.2':
dependencies:
- '@tauri-apps/api': 2.0.0-rc.4
+ '@tauri-apps/api': 2.0.0-rc.5
'@tauri-apps/plugin-notification@2.0.0-rc.1':
dependencies:
- '@tauri-apps/api': 2.0.0-rc.4
+ '@tauri-apps/api': 2.0.0-rc.5
'@tauri-apps/plugin-os@2.0.0-rc.1':
dependencies:
- '@tauri-apps/api': 2.0.0-rc.4
+ '@tauri-apps/api': 2.0.0-rc.5
'@tauri-apps/plugin-process@2.0.0-rc.1':
dependencies:
- '@tauri-apps/api': 2.0.0-rc.4
+ '@tauri-apps/api': 2.0.0-rc.5
'@tauri-apps/plugin-shell@2.0.0-rc.1':
dependencies:
- '@tauri-apps/api': 2.0.0-rc.4
+ '@tauri-apps/api': 2.0.0-rc.5
'@tauri-apps/plugin-updater@2.0.0-rc.2':
dependencies:
- '@tauri-apps/api': 2.0.0-rc.4
+ '@tauri-apps/api': 2.0.0-rc.5
'@trivago/prettier-plugin-sort-imports@4.3.0(prettier@3.3.3)':
dependencies:
@@ -9426,21 +9426,21 @@ snapshots:
'@ungap/structured-clone@1.2.0': {}
- '@vitejs/plugin-react-swc@3.7.0(vite@5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))':
+ '@vitejs/plugin-react-swc@3.7.0(vite@5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))':
dependencies:
'@swc/core': 1.6.1
- vite: 5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)
+ vite: 5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)
transitivePeerDependencies:
- '@swc/helpers'
- '@vitejs/plugin-react@4.3.1(vite@5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))':
+ '@vitejs/plugin-react@4.3.1(vite@5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0))':
dependencies:
'@babel/core': 7.24.5
'@babel/plugin-transform-react-jsx-self': 7.24.5(@babel/core@7.24.5)
'@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.5)
'@types/babel__core': 7.20.5
react-refresh: 0.14.2
- vite: 5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)
+ vite: 5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)
transitivePeerDependencies:
- supports-color
@@ -9530,14 +9530,14 @@ snapshots:
clean-stack: 5.2.0
indent-string: 5.0.0
- ahooks@3.8.1(react@19.0.0-rc-206df66e-20240912):
+ ahooks@3.8.1(react@19.0.0-rc-f2df5694-20240916):
dependencies:
'@babel/runtime': 7.24.8
dayjs: 1.11.12
intersection-observer: 0.12.2
js-cookie: 3.0.5
lodash: 4.17.21
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
react-fast-compare: 3.2.2
resize-observer-polyfill: 1.5.1
screenfull: 5.2.0
@@ -9579,16 +9579,16 @@ snapshots:
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
- allotment@1.20.2(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912):
+ allotment@1.20.2(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916):
dependencies:
classnames: 2.5.1
eventemitter3: 5.0.1
lodash.clamp: 4.0.3
lodash.debounce: 4.0.8
lodash.isequal: 4.5.0
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
- use-resize-observer: 9.1.0(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
+ use-resize-observer: 9.1.0(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
ansi-align@2.0.0:
dependencies:
@@ -11056,13 +11056,13 @@ snapshots:
fraction.js@4.3.7: {}
- framer-motion@12.0.0-alpha.1(@emotion/is-prop-valid@1.3.0)(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912):
+ framer-motion@12.0.0-alpha.1(@emotion/is-prop-valid@1.3.0)(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916):
dependencies:
tslib: 2.6.2
optionalDependencies:
'@emotion/is-prop-valid': 1.3.0
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
fs-extra@11.2.0:
dependencies:
@@ -11098,9 +11098,9 @@ snapshots:
functions-have-names@1.2.3: {}
- generouted@1.19.6(vite@5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)):
+ generouted@1.19.6(vite@5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)):
dependencies:
- vite: 5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)
+ vite: 5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)
gensync@1.0.0-beta.2: {}
@@ -11661,10 +11661,10 @@ snapshots:
jju@1.4.0: {}
- jotai@2.9.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1):
+ jotai@2.9.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1):
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
js-cookie@2.2.1: {}
@@ -11911,19 +11911,19 @@ snapshots:
escape-string-regexp: 4.0.0
optional: true
- material-react-table@3.0.1(runfxxjy3yaaoarf7izcv4i52e):
+ material-react-table@3.0.1(ksooiflzlh6bunizt7lsb7vxdy):
dependencies:
- '@emotion/react': 11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@emotion/styled': 11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@mui/icons-material': 6.0.2(@mui/material@6.0.2(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@mui/material': 6.0.2(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@mui/x-date-pickers': 7.9.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@mui/material@6.0.2(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(dayjs@1.11.13)(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ '@emotion/react': 11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@mui/icons-material': 6.1.0(@mui/material@6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@mui/material': 6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@mui/x-date-pickers': 7.9.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@mui/material@6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(dayjs@1.11.13)(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
'@tanstack/match-sorter-utils': 8.19.4
- '@tanstack/react-table': 8.20.5(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
- '@tanstack/react-virtual': 3.10.6(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
+ '@tanstack/react-table': 8.20.5(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
+ '@tanstack/react-virtual': 3.10.6(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
highlight-words: 1.2.2
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
mathml-tag-names@2.1.3: {}
@@ -12256,14 +12256,14 @@ snapshots:
muggle-string@0.4.1: {}
- mui-color-input@4.0.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@mui/material@6.0.2(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1):
+ mui-color-input@4.0.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@mui/material@6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1):
dependencies:
'@ctrl/tinycolor': 4.1.0
- '@emotion/react': 11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@emotion/styled': 11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@mui/material': 6.0.2(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ '@emotion/react': 11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@mui/material': 6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
@@ -12273,15 +12273,15 @@ snapshots:
object-assign: 4.1.1
thenify-all: 1.6.0
- nano-css@5.6.2(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912):
+ nano-css@5.6.2(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916):
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
css-tree: 1.1.3
csstype: 3.1.3
fastest-stable-stringify: 2.0.2
inline-style-prefixer: 7.0.1
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
rtl-css-js: 1.16.1
stacktrace-js: 2.0.2
stylis: 4.3.2
@@ -12818,50 +12818,50 @@ snapshots:
- supports-color
- utf-8-validate
- react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912):
+ react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916):
dependencies:
- react: 19.0.0-rc-206df66e-20240912
- scheduler: 0.25.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
+ scheduler: 0.25.0-rc-f2df5694-20240916
- react-error-boundary@4.0.13(react@19.0.0-rc-206df66e-20240912):
+ react-error-boundary@4.0.13(react@19.0.0-rc-f2df5694-20240916):
dependencies:
'@babel/runtime': 7.24.5
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
react-fast-compare@3.2.2: {}
- react-fast-marquee@1.6.5(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912):
+ react-fast-marquee@1.6.5(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916):
dependencies:
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
- react-hook-form-mui@7.2.0(cqkqk2p7xjolreum2vetnyjtqu):
+ react-hook-form-mui@7.2.0(75kr3s4ytwqeax72klof66xxoa):
dependencies:
- '@mui/material': 6.0.2(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- react: 19.0.0-rc-206df66e-20240912
- react-hook-form: 7.52.1(react@19.0.0-rc-206df66e-20240912)
+ '@mui/material': 6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-hook-form: 7.52.1(react@19.0.0-rc-f2df5694-20240916)
optionalDependencies:
- '@mui/icons-material': 6.0.2(@mui/material@6.0.2(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
- '@mui/x-date-pickers': 7.9.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@mui/material@6.0.2(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1))(dayjs@1.11.13)(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1)
+ '@mui/icons-material': 6.1.0(@mui/material@6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
+ '@mui/x-date-pickers': 7.9.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@mui/material@6.1.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1))(dayjs@1.11.13)(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1)
- react-hook-form@7.52.1(react@19.0.0-rc-206df66e-20240912):
+ react-hook-form@7.52.1(react@19.0.0-rc-f2df5694-20240916):
dependencies:
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
- react-i18next@15.0.2(i18next@23.15.1)(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912):
+ react-i18next@15.0.2(i18next@23.15.1)(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916):
dependencies:
'@babel/runtime': 7.25.6
html-parse-stringify: 3.0.1
i18next: 23.15.1
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
optionalDependencies:
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
react-is@16.13.1: {}
react-is@18.3.1: {}
- react-markdown@9.0.1(react@19.0.0-rc-206df66e-20240912)(types-react@19.0.0-rc.1):
+ react-markdown@9.0.1(react@19.0.0-rc-f2df5694-20240916)(types-react@19.0.0-rc.1):
dependencies:
'@types/hast': 3.0.4
'@types/react': types-react@19.0.0-rc.1
@@ -12869,7 +12869,7 @@ snapshots:
hast-util-to-jsx-runtime: 2.3.0
html-url-attributes: 3.0.0
mdast-util-to-hast: 13.1.0
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
remark-parse: 11.0.0
remark-rehype: 11.1.0
unified: 11.0.4
@@ -12880,39 +12880,39 @@ snapshots:
react-refresh@0.14.2: {}
- react-router-dom@6.26.2(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912):
+ react-router-dom@6.26.2(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916):
dependencies:
'@remix-run/router': 1.19.2
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
- react-router: 6.26.2(react@19.0.0-rc-206df66e-20240912)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
+ react-router: 6.26.2(react@19.0.0-rc-f2df5694-20240916)
- react-router@6.26.2(react@19.0.0-rc-206df66e-20240912):
+ react-router@6.26.2(react@19.0.0-rc-f2df5694-20240916):
dependencies:
'@remix-run/router': 1.19.2
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
- react-split-grid@1.0.4(react@19.0.0-rc-206df66e-20240912):
+ react-split-grid@1.0.4(react@19.0.0-rc-f2df5694-20240916):
dependencies:
prop-types: 15.8.1
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
split-grid: 1.0.11
- react-transition-group@4.4.5(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912):
+ react-transition-group@4.4.5(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916):
dependencies:
'@babel/runtime': 7.25.6
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
- react-universal-interface@0.6.2(react@19.0.0-rc-206df66e-20240912)(tslib@2.6.2):
+ react-universal-interface@0.6.2(react@19.0.0-rc-f2df5694-20240916)(tslib@2.6.2):
dependencies:
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
tslib: 2.6.2
- react-use@17.5.1(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912):
+ react-use@17.5.1(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916):
dependencies:
'@types/js-cookie': 2.2.7
'@xobotyi/scrollbar-width': 1.9.5
@@ -12920,10 +12920,10 @@ snapshots:
fast-deep-equal: 3.1.3
fast-shallow-equal: 1.0.0
js-cookie: 2.2.1
- nano-css: 5.6.2(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912)
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
- react-universal-interface: 0.6.2(react@19.0.0-rc-206df66e-20240912)(tslib@2.6.2)
+ nano-css: 5.6.2(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
+ react-universal-interface: 0.6.2(react@19.0.0-rc-f2df5694-20240916)(tslib@2.6.2)
resize-observer-polyfill: 1.5.1
screenfull: 5.2.0
set-harmonic-interval: 1.0.1
@@ -12931,7 +12931,7 @@ snapshots:
ts-easing: 0.2.0
tslib: 2.6.2
- react@19.0.0-rc-206df66e-20240912: {}
+ react@19.0.0-rc-f2df5694-20240916: {}
read-cache@1.0.0:
dependencies:
@@ -13216,7 +13216,7 @@ snapshots:
sax@1.3.0: {}
- scheduler@0.25.0-rc-206df66e-20240912: {}
+ scheduler@0.25.0-rc-f2df5694-20240916: {}
screenfull@5.2.0: {}
@@ -13624,11 +13624,11 @@ snapshots:
svg-tags@1.0.0: {}
- swr@2.2.5(react@19.0.0-rc-206df66e-20240912):
+ swr@2.2.5(react@19.0.0-rc-f2df5694-20240916):
dependencies:
client-only: 0.0.1
- react: 19.0.0-rc-206df66e-20240912
- use-sync-external-store: 1.2.2(react@19.0.0-rc-206df66e-20240912)
+ react: 19.0.0-rc-f2df5694-20240916
+ use-sync-external-store: 1.2.2(react@19.0.0-rc-f2df5694-20240916)
synckit@0.9.1:
dependencies:
@@ -14059,15 +14059,15 @@ snapshots:
dependencies:
prepend-http: 1.0.4
- use-resize-observer@9.1.0(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912):
+ use-resize-observer@9.1.0(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916):
dependencies:
'@juggle/resize-observer': 3.4.0
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
- use-sync-external-store@1.2.2(react@19.0.0-rc-206df66e-20240912):
+ use-sync-external-store@1.2.2(react@19.0.0-rc-f2df5694-20240916):
dependencies:
- react: 19.0.0-rc-206df66e-20240912
+ react: 19.0.0-rc-f2df5694-20240916
utf-8-validate@5.0.10:
dependencies:
@@ -14090,12 +14090,12 @@ snapshots:
unist-util-stringify-position: 4.0.0
vfile-message: 4.0.2
- virtua@0.34.2(react-dom@19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912))(react@19.0.0-rc-206df66e-20240912):
+ virtua@0.34.2(react-dom@19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916))(react@19.0.0-rc-f2df5694-20240916):
optionalDependencies:
- react: 19.0.0-rc-206df66e-20240912
- react-dom: 19.0.0-rc-206df66e-20240912(react@19.0.0-rc-206df66e-20240912)
+ react: 19.0.0-rc-f2df5694-20240916
+ react-dom: 19.0.0-rc-f2df5694-20240916(react@19.0.0-rc-f2df5694-20240916)
- vite-plugin-dts@4.2.1(@types/node@22.5.4)(rollup@4.21.0)(typescript@5.5.4)(vite@5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)):
+ vite-plugin-dts@4.2.1(@types/node@22.5.4)(rollup@4.21.0)(typescript@5.5.4)(vite@5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)):
dependencies:
'@microsoft/api-extractor': 7.47.7(@types/node@22.5.4)
'@rollup/pluginutils': 5.1.0(rollup@4.21.0)
@@ -14108,7 +14108,7 @@ snapshots:
magic-string: 0.30.11
typescript: 5.5.4
optionalDependencies:
- vite: 5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)
+ vite: 5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)
transitivePeerDependencies:
- '@types/node'
- rollup
@@ -14119,37 +14119,37 @@ snapshots:
esbuild: 0.19.12
monaco-editor: 0.51.0
- vite-plugin-sass-dts@1.3.29(postcss@8.4.47)(prettier@3.3.3)(sass-embedded@1.78.0)(vite@5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)):
+ vite-plugin-sass-dts@1.3.29(postcss@8.4.47)(prettier@3.3.3)(sass-embedded@1.78.0)(vite@5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)):
dependencies:
postcss: 8.4.47
postcss-js: 4.0.1(postcss@8.4.47)
prettier: 3.3.3
sass-embedded: 1.78.0
- vite: 5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)
+ vite: 5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)
- vite-plugin-svgr@4.2.0(rollup@4.21.0)(typescript@5.5.4)(vite@5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)):
+ vite-plugin-svgr@4.2.0(rollup@4.21.0)(typescript@5.5.4)(vite@5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)):
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@4.21.0)
'@svgr/core': 8.1.0(typescript@5.5.4)
'@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.5.4))
- vite: 5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)
+ vite: 5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)
transitivePeerDependencies:
- rollup
- supports-color
- typescript
- vite-tsconfig-paths@5.0.1(typescript@5.5.4)(vite@5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)):
+ vite-tsconfig-paths@5.0.1(typescript@5.5.4)(vite@5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)):
dependencies:
debug: 4.3.6
globrex: 0.1.2
tsconfck: 3.0.3(typescript@5.5.4)
optionalDependencies:
- vite: 5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)
+ vite: 5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0)
transitivePeerDependencies:
- supports-color
- typescript
- vite@5.4.5(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0):
+ vite@5.4.6(@types/node@22.5.4)(less@4.2.0)(sass-embedded@1.78.0)(sass@1.78.0)(stylus@0.62.0):
dependencies:
esbuild: 0.21.5
postcss: 8.4.47
diff --git a/mieru/README.md b/mieru/README.md
index 4bcb625b95..86d4dbb3cc 100644
--- a/mieru/README.md
+++ b/mieru/README.md
@@ -30,7 +30,7 @@ For an explanation of the mieru protocol, see [mieru Proxy Protocol](./docs/prot
1. The server software supports socks5 outbound (proxy chain).
1. The client software supports Windows, Mac OS, Linux and Android. Android clients include
- [NekoBox](https://github.com/MatsuriDayo/NekoBoxForAndroid) version 1.3.1 or above, with [mieru plugin](https://github.com/enfein/NekoBoxPlugins).
- - [Exclave](https://github.com/dyhkwong/Exclave), with mieru plugin.
+ - [Exclave](https://github.com/dyhkwong/Exclave), with [mieru plugin](https://github.com/dyhkwong/Exclave/releases?q=mieru-plugin).
1. If you need advanced features like global proxy or customized routing rules, you can use mieru as the backend of a proxy platform such as [Xray](https://github.com/XTLS/Xray-core) and [sing-box](https://github.com/SagerNet/sing-box).
## User Guide
diff --git a/mieru/README.zh_CN.md b/mieru/README.zh_CN.md
index 287acfc96e..3bf9076cbd 100644
--- a/mieru/README.zh_CN.md
+++ b/mieru/README.zh_CN.md
@@ -28,7 +28,7 @@ mieru 的翻墙原理与 shadowsocks / v2ray 等软件类似,在客户端和
1. 服务器软件支持 socks5 出站(链式代理)。
1. 客户端软件支持 Windows, Mac OS, Linux 和 Android 系统。Android 客户端包括
- [NekoBox](https://github.com/MatsuriDayo/NekoBoxForAndroid) 1.3.1 及以上版本,并安装 [mieru 插件](https://github.com/enfein/NekoBoxPlugins)。
- - [Exclave](https://github.com/dyhkwong/Exclave) 并安装 mieru 插件。
+ - [Exclave](https://github.com/dyhkwong/Exclave) 并安装 [mieru 插件](https://github.com/dyhkwong/Exclave/releases?q=mieru-plugin)。
1. 如果需要全局代理或自定义路由规则等高级功能,可以将 mieru 作为 [Xray](https://github.com/XTLS/Xray-core) 和 [sing-box](https://github.com/SagerNet/sing-box) 等代理平台的后端。
## 使用教程
diff --git a/mieru/pkg/appctl/client.go b/mieru/pkg/appctl/client.go
index 9cf8263438..88db461161 100644
--- a/mieru/pkg/appctl/client.go
+++ b/mieru/pkg/appctl/client.go
@@ -30,7 +30,7 @@ import (
pb "github.com/enfein/mieru/pkg/appctl/appctlpb"
"github.com/enfein/mieru/pkg/log"
"github.com/enfein/mieru/pkg/metrics"
- "github.com/enfein/mieru/pkg/protocolv2"
+ "github.com/enfein/mieru/pkg/protocol"
"github.com/enfein/mieru/pkg/socks5"
"github.com/enfein/mieru/pkg/stderror"
"github.com/enfein/mieru/pkg/util"
@@ -67,7 +67,7 @@ var (
clientSocks5ServerRef atomic.Pointer[socks5.Server]
// clientMuxRef holds a pointer to client multiplexier.
- clientMuxRef atomic.Pointer[protocolv2.Mux]
+ clientMuxRef atomic.Pointer[protocol.Mux]
)
func SetClientRPCServerRef(server *grpc.Server) {
@@ -78,7 +78,7 @@ func SetClientSocks5ServerRef(server *socks5.Server) {
clientSocks5ServerRef.Store(server)
}
-func SetClientMuxRef(mux *protocolv2.Mux) {
+func SetClientMuxRef(mux *protocol.Mux) {
clientMuxRef.Store(mux)
}
diff --git a/mieru/pkg/appctl/server.go b/mieru/pkg/appctl/server.go
index 159ca41653..284387c311 100644
--- a/mieru/pkg/appctl/server.go
+++ b/mieru/pkg/appctl/server.go
@@ -31,7 +31,7 @@ import (
"github.com/enfein/mieru/pkg/egress"
"github.com/enfein/mieru/pkg/log"
"github.com/enfein/mieru/pkg/metrics"
- "github.com/enfein/mieru/pkg/protocolv2"
+ "github.com/enfein/mieru/pkg/protocol"
"github.com/enfein/mieru/pkg/socks5"
"github.com/enfein/mieru/pkg/stderror"
"github.com/enfein/mieru/pkg/util"
@@ -57,7 +57,7 @@ var (
socks5ServerRef atomic.Pointer[socks5.Server]
// serverMuxRef holds a pointer to server multiplexier.
- serverMuxRef atomic.Pointer[protocolv2.Mux]
+ serverMuxRef atomic.Pointer[protocol.Mux]
)
func SetServerRPCServerRef(server *grpc.Server) {
@@ -68,7 +68,7 @@ func SetSocks5Server(server *socks5.Server) {
socks5ServerRef.Store(server)
}
-func SetServerMuxRef(mux *protocolv2.Mux) {
+func SetServerMuxRef(mux *protocol.Mux) {
serverMuxRef.Store(mux)
}
@@ -112,7 +112,7 @@ func (s *serverLifecycleService) Start(ctx context.Context, req *pb.Empty) (*pb.
SetAppStatus(pb.AppStatus_STARTING)
- mux := protocolv2.NewMux(false).SetServerUsers(UserListToMap(config.GetUsers()))
+ mux := protocol.NewMux(false).SetServerUsers(UserListToMap(config.GetUsers()))
SetServerMuxRef(mux)
mtu := util.DefaultMTU
if config.GetMtu() != 0 {
@@ -653,8 +653,8 @@ func ValidateFullServerConfig(config *pb.ServerConfig) error {
}
// PortBindingsToUnderlayProperties converts port bindings to underlay properties.
-func PortBindingsToUnderlayProperties(portBindings []*pb.PortBinding, mtu int) ([]protocolv2.UnderlayProperties, error) {
- endpoints := make([]protocolv2.UnderlayProperties, 0)
+func PortBindingsToUnderlayProperties(portBindings []*pb.PortBinding, mtu int) ([]protocol.UnderlayProperties, error) {
+ endpoints := make([]protocol.UnderlayProperties, 0)
listenIP := net.ParseIP(util.AllIPAddr())
ipVersion := util.GetIPVersion(listenIP.String())
if listenIP == nil {
@@ -666,17 +666,17 @@ func PortBindingsToUnderlayProperties(portBindings []*pb.PortBinding, mtu int) (
}
n := len(portBindings)
for i := 0; i < n; i++ {
- protocol := portBindings[i].GetProtocol()
+ proto := portBindings[i].GetProtocol()
port := portBindings[i].GetPort()
- switch protocol {
+ switch proto {
case pb.TransportProtocol_TCP:
- endpoint := protocolv2.NewUnderlayProperties(mtu, ipVersion, util.TCPTransport, &net.TCPAddr{IP: listenIP, Port: int(port)}, nil)
+ endpoint := protocol.NewUnderlayProperties(mtu, ipVersion, util.TCPTransport, &net.TCPAddr{IP: listenIP, Port: int(port)}, nil)
endpoints = append(endpoints, endpoint)
case pb.TransportProtocol_UDP:
- endpoint := protocolv2.NewUnderlayProperties(mtu, ipVersion, util.UDPTransport, &net.UDPAddr{IP: listenIP, Port: int(port)}, nil)
+ endpoint := protocol.NewUnderlayProperties(mtu, ipVersion, util.UDPTransport, &net.UDPAddr{IP: listenIP, Port: int(port)}, nil)
endpoints = append(endpoints, endpoint)
default:
- return []protocolv2.UnderlayProperties{}, fmt.Errorf(stderror.InvalidTransportProtocol)
+ return []protocol.UnderlayProperties{}, fmt.Errorf(stderror.InvalidTransportProtocol)
}
}
return endpoints, nil
diff --git a/mieru/pkg/cli/client.go b/mieru/pkg/cli/client.go
index 7469f99d3e..8e85f711a8 100644
--- a/mieru/pkg/cli/client.go
+++ b/mieru/pkg/cli/client.go
@@ -37,7 +37,7 @@ import (
"github.com/enfein/mieru/pkg/http2socks"
"github.com/enfein/mieru/pkg/log"
"github.com/enfein/mieru/pkg/metrics"
- "github.com/enfein/mieru/pkg/protocolv2"
+ "github.com/enfein/mieru/pkg/protocol"
"github.com/enfein/mieru/pkg/socks5"
"github.com/enfein/mieru/pkg/socks5client"
"github.com/enfein/mieru/pkg/stderror"
@@ -459,7 +459,7 @@ var clientRunFunc = func(s []string) error {
}
// Collect remote proxy addresses and password.
- mux := protocolv2.NewMux(true)
+ mux := protocol.NewMux(true)
appctl.SetClientMuxRef(mux)
var hashedPassword []byte
activeProfile, err := appctl.GetActiveProfileFromConfig(config, config.GetActiveProfile())
@@ -492,7 +492,7 @@ var clientRunFunc = func(s []string) error {
multiplexFactor = 3
}
mux = mux.SetClientMultiplexFactor(multiplexFactor)
- endpoints := make([]protocolv2.UnderlayProperties, 0)
+ endpoints := make([]protocol.UnderlayProperties, 0)
resolver := &util.DNSResolver{}
for _, serverInfo := range activeProfile.GetServers() {
var proxyHost string
@@ -519,10 +519,10 @@ var clientRunFunc = func(s []string) error {
proxyPort := bindingInfo.GetPort()
switch bindingInfo.GetProtocol() {
case appctlpb.TransportProtocol_TCP:
- endpoint := protocolv2.NewUnderlayProperties(mtu, ipVersion, util.TCPTransport, nil, &net.TCPAddr{IP: proxyIP, Port: int(proxyPort)})
+ endpoint := protocol.NewUnderlayProperties(mtu, ipVersion, util.TCPTransport, nil, &net.TCPAddr{IP: proxyIP, Port: int(proxyPort)})
endpoints = append(endpoints, endpoint)
case appctlpb.TransportProtocol_UDP:
- endpoint := protocolv2.NewUnderlayProperties(mtu, ipVersion, util.UDPTransport, nil, &net.UDPAddr{IP: proxyIP, Port: int(proxyPort)})
+ endpoint := protocol.NewUnderlayProperties(mtu, ipVersion, util.UDPTransport, nil, &net.UDPAddr{IP: proxyIP, Port: int(proxyPort)})
endpoints = append(endpoints, endpoint)
default:
return fmt.Errorf(stderror.InvalidTransportProtocol)
diff --git a/mieru/pkg/cli/server.go b/mieru/pkg/cli/server.go
index 8564a1cdbb..6f4d9d2902 100644
--- a/mieru/pkg/cli/server.go
+++ b/mieru/pkg/cli/server.go
@@ -35,7 +35,7 @@ import (
"github.com/enfein/mieru/pkg/http2socks"
"github.com/enfein/mieru/pkg/log"
"github.com/enfein/mieru/pkg/metrics"
- "github.com/enfein/mieru/pkg/protocolv2"
+ "github.com/enfein/mieru/pkg/protocol"
"github.com/enfein/mieru/pkg/socks5"
"github.com/enfein/mieru/pkg/stderror"
"github.com/enfein/mieru/pkg/util"
@@ -404,7 +404,7 @@ var serverRunFunc = func(s []string) error {
if err = appctl.ValidateFullServerConfig(config); err == nil {
appctl.SetAppStatus(appctlpb.AppStatus_STARTING)
- mux := protocolv2.NewMux(false).SetServerUsers(appctl.UserListToMap(config.GetUsers()))
+ mux := protocol.NewMux(false).SetServerUsers(appctl.UserListToMap(config.GetUsers()))
appctl.SetServerMuxRef(mux)
mtu := util.DefaultMTU
if config.GetMtu() != 0 {
diff --git a/mieru/pkg/congestion/bbr_sender.go b/mieru/pkg/congestion/bbr_sender.go
index e2dba78fef..5b7563e33a 100644
--- a/mieru/pkg/congestion/bbr_sender.go
+++ b/mieru/pkg/congestion/bbr_sender.go
@@ -53,9 +53,6 @@ const (
// Allow 1 extra outstanding byte for each byte acknowledged.
stateConservation
- // Allow 1.5 extra outstanding bytes for each byte acknowledged.
- stateMediumGrowth
-
// Allow 2 extra outstanding bytes for each byte acknowledged (slow start).
stateGrowth
)
@@ -279,6 +276,7 @@ type BBRSender struct {
minRTTSinceLastProbeRTT time.Duration
}
+// NewBBRSender constructs a new BBR sender object.
func NewBBRSender(loggingContext string, rttStats *RTTStats) *BBRSender {
s := &BBRSender{
loggingContext: loggingContext,
@@ -309,6 +307,7 @@ func NewBBRSender(loggingContext string, rttStats *RTTStats) *BBRSender {
return s
}
+// OnPacketSent updates BBR sender state when a packet is being sent.
func (b *BBRSender) OnPacketSent(sentTime time.Time, bytesInFlight int64, packetNumber int64, bytes int64, hasRetransmittableData bool) {
b.mu.Lock()
defer b.mu.Unlock()
@@ -325,50 +324,13 @@ func (b *BBRSender) OnPacketSent(sentTime time.Time, bytesInFlight int64, packet
}
b.sampler.OnPacketSent(sentTime, packetNumber, bytes, bytesInFlight, hasRetransmittableData)
- b.pacer.OnPacketSent(sentTime, bytes, b.PacingRate(bytesInFlight))
+ b.pacer.OnPacketSent(sentTime, bytes, b.getPacingRate())
if log.IsLevelEnabled(log.TraceLevel) {
- log.Tracef("[BBRSender %s] OnPacketSent(bytesInFlight=%d, packetNumber=%d, bytes=%d), pacingRate=%d => pacingBudget=%d", b.loggingContext, bytesInFlight, packetNumber, bytes, b.PacingRate(bytesInFlight), b.pacer.Budget(sentTime, b.PacingRate(bytesInFlight)))
+ log.Tracef("[BBRSender %s] OnPacketSent(bytesInFlight=%d, packetNumber=%d, bytes=%d), pacingRate=%d => pacingBudget=%d", b.loggingContext, bytesInFlight, packetNumber, bytes, b.getPacingRate(), b.pacer.Budget(sentTime, b.getPacingRate()))
}
}
-func (b *BBRSender) CanSend(bytesInFlight, bytes int64) bool {
- b.mu.Lock()
- defer b.mu.Unlock()
- pacerCanSend := b.pacer.CanSend(time.Now(), bytes, b.PacingRate(bytesInFlight))
- return bytesInFlight < b.GetCongestionWindow() && pacerCanSend
-}
-
-func (b *BBRSender) PacingRate(bytesInFlight int64) int64 {
- if b.pacingRate <= 0 {
- return int64(highGain * float64(BandwidthFromBytesAndTimeDelta(b.initialCongestionWindow, b.GetMinRTT())))
- }
- return b.pacingRate
-}
-
-func (b *BBRSender) BandwidthEstimate() int64 {
- return b.maxBandwidth.GetBest()
-}
-
-func (b *BBRSender) GetCongestionWindow() int64 {
- if b.mode == modeProbeRTT {
- return b.ProbeRTTCongestionWindow()
- }
-
- if b.InRecovery() && !b.rateBasedRecovery && !(b.mode == modeStartUp && b.rateBasedStartup) {
- return mathext.Min(b.congestionWindow, b.recoveryWindow)
- }
-
- return b.congestionWindow
-}
-
-func (b *BBRSender) InRecovery() bool {
- return b.recoveryState != stateNotInRecovery
-}
-
-func (b *BBRSender) IsProbingForMoreBandwidth() bool {
- return (b.mode == modeProbeBW && b.pacingGain > 1) || b.mode == modeStartUp
-}
-
+// OnCongestionEvent updates BBR sender state from acknowledged and lost packets.
func (b *BBRSender) OnCongestionEvent(priorInFlight int64, eventTime time.Time, ackedPackets []AckedPacketInfo, lostPackets []LostPacketInfo) {
b.mu.Lock()
defer b.mu.Unlock()
@@ -386,20 +348,20 @@ func (b *BBRSender) OnCongestionEvent(priorInFlight int64, eventTime time.Time,
}
b.bytesInFlight = mathext.Max(b.bytesInFlight, 0)
- b.DiscardLostPackets(lostPackets)
+ b.discardLostPackets(lostPackets)
// Input the new data into the BBR model of the connection.
if len(ackedPackets) > 0 {
lastAckedPacket := ackedPackets[len(ackedPackets)-1].PacketNumber
- isRoundStart = b.UpdateRoundTripCounter(lastAckedPacket)
- isMinRTTExpired = b.UpdateBandwidthAndMinRTT(eventTime, ackedPackets)
- b.UpdateRecoveryState(lastAckedPacket, len(lostPackets) > 0, isRoundStart)
+ isRoundStart = b.updateRoundTripCounter(lastAckedPacket)
+ isMinRTTExpired = b.updateBandwidthAndMinRTT(eventTime, ackedPackets)
+ b.updateRecoveryState(lastAckedPacket, len(lostPackets) > 0, isRoundStart)
bytesAcked := b.sampler.TotalBytesAcked() - totalBytesAckedBefore
- b.UpdateAckAggregationBytes(eventTime, bytesAcked)
+ b.updateAckAggregationBytes(eventTime, bytesAcked)
if b.maxAggregationBytesMultiplier > 0 {
- if b.bytesInFlight <= int64(1.25*float64(b.GetTargetCongestionWindow(b.pacingGain))) {
+ if b.bytesInFlight <= int64(1.25*float64(b.getTargetCongestionWindow(b.pacingGain))) {
b.bytesAckedSinceQueueDrained = 0
} else {
b.bytesAckedSinceQueueDrained += bytesAcked
@@ -409,17 +371,17 @@ func (b *BBRSender) OnCongestionEvent(priorInFlight int64, eventTime time.Time,
// Handle logic specific to PROBE BW mode.
if b.mode == modeProbeBW {
- b.UpdateGainCyclePhase(eventTime, priorInFlight, len(lostPackets) > 0)
+ b.updateGainCyclePhase(eventTime, priorInFlight, len(lostPackets) > 0)
}
// Handle logic specific to STARTUP and DRAIN modes.
if isRoundStart && !b.isAtFullBandwidth {
- b.CheckIfFullBandwidthReached()
+ b.checkIfFullBandwidthReached()
}
- b.MaybeExitStartupOrDrain(eventTime)
+ b.maybeExitStartupOrDrain(eventTime)
// Handle logic specific to PROBE RTT.
- b.MaybeEnterOrExitProbeRTT(eventTime, isRoundStart, isMinRTTExpired)
+ b.maybeEnterOrExitProbeRTT(eventTime, isRoundStart, isMinRTTExpired)
// Calculate number of packets acked and lost.
bytesAcked := b.sampler.TotalBytesAcked() - totalBytesAckedBefore
@@ -430,9 +392,9 @@ func (b *BBRSender) OnCongestionEvent(priorInFlight int64, eventTime time.Time,
// After the model is updated, recalculate the pacing rate and congestion
// window.
- b.CalculatePacingRate()
- b.CalculateCongestionWindow(bytesAcked)
- b.CalculateRecoveryWindow(bytesAcked, bytesLost)
+ b.calculatePacingRate()
+ b.calculateCongestionWindow(bytesAcked)
+ b.calculateRecoveryWindow(bytesAcked, bytesLost)
// Cleanup internal state.
// This is where we clean up obsolete (acked or lost) packets from the bandwidth sampler.
@@ -448,15 +410,62 @@ func (b *BBRSender) OnCongestionEvent(priorInFlight int64, eventTime time.Time,
b.sampler.RemoveObsoletePackets(leastUnacked)
}
-func (b *BBRSender) GetMinRTT() time.Duration {
+// OnApplicationLimited updates BBR sender state when there is no application
+// data to send.
+func (b *BBRSender) OnApplicationLimited(bytesInFlight int64) {
+ if bytesInFlight >= b.getCongestionWindow() {
+ return
+ }
+
+ b.appLimitedSinceLastProbeRTT = true
+ b.sampler.OnAppLimited()
+}
+
+// CanSend returns true if a packet can be sent based on the congestion window.
+func (b *BBRSender) CanSend(bytesInFlight, bytes int64) bool {
+ b.mu.Lock()
+ defer b.mu.Unlock()
+ pacerCanSend := b.pacer.CanSend(time.Now(), bytes, b.getPacingRate())
+ return bytesInFlight < b.getCongestionWindow() && pacerCanSend
+}
+
+// BandwidthEstimate returns the estimate of maximum bandwidth.
+func (b *BBRSender) BandwidthEstimate() int64 {
+ return b.maxBandwidth.GetBest()
+}
+
+func (b *BBRSender) getPacingRate() int64 {
+ if b.pacingRate <= 0 {
+ return int64(highGain * float64(BandwidthFromBytesAndTimeDelta(b.initialCongestionWindow, b.getMinRTT())))
+ }
+ return b.pacingRate
+}
+
+func (b *BBRSender) getCongestionWindow() int64 {
+ if b.mode == modeProbeRTT {
+ return b.probeRTTCongestionWindow()
+ }
+
+ if b.inRecovery() && !b.rateBasedRecovery && !(b.mode == modeStartUp && b.rateBasedStartup) {
+ return mathext.Min(b.congestionWindow, b.recoveryWindow)
+ }
+
+ return b.congestionWindow
+}
+
+func (b *BBRSender) inRecovery() bool {
+ return b.recoveryState != stateNotInRecovery
+}
+
+func (b *BBRSender) getMinRTT() time.Duration {
if b.minRTT > 0 {
return b.minRTT
}
return defaultInitialRTT
}
-func (b *BBRSender) GetTargetCongestionWindow(gain float64) int64 {
- bdp := (b.GetMinRTT().Nanoseconds() * b.BandwidthEstimate()) / int64(time.Second)
+func (b *BBRSender) getTargetCongestionWindow(gain float64) int64 {
+ bdp := (b.getMinRTT().Nanoseconds() * b.BandwidthEstimate()) / int64(time.Second)
congestionWindow := int64(gain * float64(bdp))
// BDP estimate will be zero if no bandwidth samples are available yet.
@@ -467,11 +476,11 @@ func (b *BBRSender) GetTargetCongestionWindow(gain float64) int64 {
return mathext.Max(congestionWindow, b.minCongestionWindow)
}
-func (b *BBRSender) ProbeRTTCongestionWindow() int64 {
+func (b *BBRSender) probeRTTCongestionWindow() int64 {
return b.minCongestionWindow
}
-func (b *BBRSender) EnterStartupMode() {
+func (b *BBRSender) enterStartupMode() {
b.mode = modeStartUp
if log.IsLevelEnabled(log.TraceLevel) {
log.Tracef("[BBRSender %s] Enter start up mode", b.loggingContext)
@@ -480,7 +489,7 @@ func (b *BBRSender) EnterStartupMode() {
b.congestionWindowGain = highGain
}
-func (b *BBRSender) EnterProbeBandwidthMode(now time.Time) {
+func (b *BBRSender) enterProbeBandwidthMode(now time.Time) {
b.mode = modeProbeBW
if log.IsLevelEnabled(log.TraceLevel) {
log.Tracef("[BBRSender %s] Enter probe bandwidth mode", b.loggingContext)
@@ -498,13 +507,13 @@ func (b *BBRSender) EnterProbeBandwidthMode(now time.Time) {
b.pacingGain = pacingGainList[cycleOffset]
}
-func (b *BBRSender) DiscardLostPackets(lostPackets []LostPacketInfo) {
+func (b *BBRSender) discardLostPackets(lostPackets []LostPacketInfo) {
for _, lost := range lostPackets {
b.sampler.OnPacketLost(lost.PacketNumber)
}
}
-func (b *BBRSender) UpdateRoundTripCounter(lastAckedPacket int64) bool {
+func (b *BBRSender) updateRoundTripCounter(lastAckedPacket int64) bool {
if lastAckedPacket > b.currentRoundTripEnd {
b.roundTripCount++
b.currentRoundTripEnd = lastAckedPacket
@@ -513,7 +522,7 @@ func (b *BBRSender) UpdateRoundTripCounter(lastAckedPacket int64) bool {
return false
}
-func (b *BBRSender) UpdateBandwidthAndMinRTT(now time.Time, ackedPackets []AckedPacketInfo) bool {
+func (b *BBRSender) updateBandwidthAndMinRTT(now time.Time, ackedPackets []AckedPacketInfo) bool {
sampleMinRTT := infDuration
for _, acked := range ackedPackets {
bandwidthSample := b.sampler.OnPacketAcknowledged(now, acked.PacketNumber)
@@ -545,16 +554,16 @@ func (b *BBRSender) UpdateBandwidthAndMinRTT(now time.Time, ackedPackets []Acked
return minRTTExpired
}
-func (b *BBRSender) UpdateGainCyclePhase(now time.Time, priorInFlight int64, hasLosses bool) {
+func (b *BBRSender) updateGainCyclePhase(now time.Time, priorInFlight int64, hasLosses bool) {
// In most cases, the cycle is advanced after an RTT passes.
- shouldAdvanceGainCycling := now.Sub(b.lastCycleStart) > b.GetMinRTT()
+ shouldAdvanceGainCycling := now.Sub(b.lastCycleStart) > b.getMinRTT()
// If the pacing gain is above 1.0, the connection is trying to probe the
// bandwidth by increasing the number of bytes in flight to at least
// pacing gain * BDP. Make sure that it actually reaches the target, as long
// as there are no losses suggesting that the buffers are not able to hold
// that much.
- if b.pacingGain > 1.0 && !hasLosses && priorInFlight < b.GetTargetCongestionWindow(b.pacingGain) {
+ if b.pacingGain > 1.0 && !hasLosses && priorInFlight < b.getTargetCongestionWindow(b.pacingGain) {
shouldAdvanceGainCycling = false
}
@@ -562,7 +571,7 @@ func (b *BBRSender) UpdateGainCyclePhase(now time.Time, priorInFlight int64, has
// queue which could have been incurred by probing prior to it. If the number
// of bytes in flight falls down to the estimated BDP value earlier, conclude
// that the queue has been successfully drained and exit this cycle early.
- if b.pacingGain < 1.0 && priorInFlight <= b.GetTargetCongestionWindow(1.0) {
+ if b.pacingGain < 1.0 && priorInFlight <= b.getTargetCongestionWindow(1.0) {
shouldAdvanceGainCycling = true
}
@@ -573,7 +582,7 @@ func (b *BBRSender) UpdateGainCyclePhase(now time.Time, priorInFlight int64, has
}
}
-func (b *BBRSender) CheckIfFullBandwidthReached() {
+func (b *BBRSender) checkIfFullBandwidthReached() {
if b.lastSampleIsAppLimited {
return
}
@@ -586,12 +595,12 @@ func (b *BBRSender) CheckIfFullBandwidthReached() {
}
b.roundsWithoutBandwidthGain++
- if b.roundsWithoutBandwidthGain >= b.numStartupRTTs || (b.exitStartupOnLoss && b.InRecovery()) {
+ if b.roundsWithoutBandwidthGain >= b.numStartupRTTs || (b.exitStartupOnLoss && b.inRecovery()) {
b.isAtFullBandwidth = true
}
}
-func (b *BBRSender) MaybeExitStartupOrDrain(now time.Time) {
+func (b *BBRSender) maybeExitStartupOrDrain(now time.Time) {
if b.mode == modeStartUp && b.isAtFullBandwidth {
b.mode = modeDrain
if log.IsLevelEnabled(log.TraceLevel) {
@@ -601,12 +610,12 @@ func (b *BBRSender) MaybeExitStartupOrDrain(now time.Time) {
b.congestionWindowGain = highGain
}
- if b.mode == modeDrain && b.bytesInFlight <= b.GetTargetCongestionWindow(1) {
- b.EnterProbeBandwidthMode(now)
+ if b.mode == modeDrain && b.bytesInFlight <= b.getTargetCongestionWindow(1) {
+ b.enterProbeBandwidthMode(now)
}
}
-func (b *BBRSender) MaybeEnterOrExitProbeRTT(now time.Time, isRoundStart bool, minRTTExpired bool) {
+func (b *BBRSender) maybeEnterOrExitProbeRTT(now time.Time, isRoundStart bool, minRTTExpired bool) {
if minRTTExpired && !b.exitingQuiescence && b.mode != modeProbeRTT {
b.mode = modeProbeRTT
if log.IsLevelEnabled(log.TraceLevel) {
@@ -623,7 +632,7 @@ func (b *BBRSender) MaybeEnterOrExitProbeRTT(now time.Time, isRoundStart bool, m
if b.exitProbeRTTAt.IsZero() {
// If the window has reached the appropriate size, schedule exiting
// PROBE RTT.
- if b.bytesInFlight < b.ProbeRTTCongestionWindow()+maxDatagramSize {
+ if b.bytesInFlight < b.probeRTTCongestionWindow()+maxDatagramSize {
b.exitProbeRTTAt = now.Add(probeRTTTime)
b.probeRTTRoundPassed = false
}
@@ -634,9 +643,9 @@ func (b *BBRSender) MaybeEnterOrExitProbeRTT(now time.Time, isRoundStart bool, m
if now.After(b.exitProbeRTTAt) && b.probeRTTRoundPassed {
b.minRTTTimestamp = now
if !b.isAtFullBandwidth {
- b.EnterStartupMode()
+ b.enterStartupMode()
} else {
- b.EnterProbeBandwidthMode(now)
+ b.enterProbeBandwidthMode(now)
}
}
}
@@ -645,7 +654,7 @@ func (b *BBRSender) MaybeEnterOrExitProbeRTT(now time.Time, isRoundStart bool, m
b.exitingQuiescence = false
}
-func (b *BBRSender) UpdateRecoveryState(lastAckedPacket int64, hasLosses bool, isRoundStart bool) {
+func (b *BBRSender) updateRecoveryState(lastAckedPacket int64, hasLosses bool, isRoundStart bool) {
// Exit recovery when there are no losses for a round.
if hasLosses {
b.endRecoveryAt = b.lastSentPacket
@@ -667,8 +676,6 @@ func (b *BBRSender) UpdateRecoveryState(lastAckedPacket int64, hasLosses bool, i
b.currentRoundTripEnd = b.lastSentPacket
}
case stateConservation:
- fallthrough
- case stateMediumGrowth:
if isRoundStart {
b.recoveryState = stateGrowth
}
@@ -681,7 +688,7 @@ func (b *BBRSender) UpdateRecoveryState(lastAckedPacket int64, hasLosses bool, i
}
}
-func (b *BBRSender) UpdateAckAggregationBytes(ackTime time.Time, newlyAckedBytes int64) {
+func (b *BBRSender) updateAckAggregationBytes(ackTime time.Time, newlyAckedBytes int64) {
// Compute how many bytes are expected to be delivered, assuming max bandwidth
// is correct.
expectedBytesAcked := b.maxBandwidth.GetBest() * int64(ackTime.Sub(b.aggregationEpochStartTime)) / int64(time.Second)
@@ -700,13 +707,13 @@ func (b *BBRSender) UpdateAckAggregationBytes(ackTime time.Time, newlyAckedBytes
b.maxAckHeight.Update(b.aggregationEpochBytes-expectedBytesAcked, b.roundTripCount)
}
-func (b *BBRSender) CalculatePacingRate() {
+func (b *BBRSender) calculatePacingRate() {
if b.BandwidthEstimate() <= 0 {
return
}
targetRate := int64(b.pacingGain * float64(b.BandwidthEstimate()))
- if b.rateBasedRecovery && b.InRecovery() {
+ if b.rateBasedRecovery && b.inRecovery() {
b.pacingRate = int64(b.pacingGain * float64(b.maxBandwidth.GetThirdBest()))
}
if b.isAtFullBandwidth {
@@ -731,12 +738,12 @@ func (b *BBRSender) CalculatePacingRate() {
b.pacingRate = mathext.Max(b.pacingRate, targetRate)
}
-func (b *BBRSender) CalculateCongestionWindow(bytesAcked int64) {
+func (b *BBRSender) calculateCongestionWindow(bytesAcked int64) {
if b.mode == modeProbeRTT {
return
}
- targetWindow := b.GetTargetCongestionWindow(b.congestionWindowGain)
+ targetWindow := b.getTargetCongestionWindow(b.congestionWindowGain)
if log.IsLevelEnabled(log.TraceLevel) {
log.Tracef("[BBRSender %s] targetCongestionWindow=%d", b.loggingContext, targetWindow)
}
@@ -756,7 +763,7 @@ func (b *BBRSender) CalculateCongestionWindow(bytesAcked int64) {
b.congestionWindow = mathext.Min(b.congestionWindow, b.maxCongestionWindow)
}
-func (b *BBRSender) CalculateRecoveryWindow(bytesAcked int64, bytesLost int64) {
+func (b *BBRSender) calculateRecoveryWindow(bytesAcked int64, bytesLost int64) {
if b.rateBasedRecovery || (b.mode == modeStartUp && b.rateBasedStartup) {
return
}
@@ -781,11 +788,8 @@ func (b *BBRSender) CalculateRecoveryWindow(bytesAcked int64, bytesLost int64) {
// In CONSERVATION mode, just subtracting losses is sufficient. In GROWTH,
// release additional bytesAcked to achieve a slow-start-like behavior.
- // In MEDIUM_GROWTH, release bytesAcked / 2 to split the difference.
if b.recoveryState == stateGrowth {
b.recoveryWindow += bytesAcked
- } else if b.recoveryState == stateMediumGrowth {
- b.recoveryWindow += bytesAcked / 2
}
// Sanity checks. Ensure that we always allow to send at least
@@ -793,12 +797,3 @@ func (b *BBRSender) CalculateRecoveryWindow(bytesAcked int64, bytesLost int64) {
b.recoveryWindow = mathext.Max(b.recoveryWindow, b.bytesInFlight+bytesAcked)
b.recoveryWindow = mathext.Max(b.recoveryWindow, b.minCongestionWindow)
}
-
-func (b *BBRSender) OnApplicationLimited(bytesInFlight int64) {
- if bytesInFlight >= b.GetCongestionWindow() {
- return
- }
-
- b.appLimitedSinceLastProbeRTT = true
- b.sampler.OnAppLimited()
-}
diff --git a/mieru/pkg/protocolv2/const.go b/mieru/pkg/protocol/const.go
similarity index 97%
rename from mieru/pkg/protocolv2/const.go
rename to mieru/pkg/protocol/const.go
index bccc30e78c..4c3f28bf6c 100644
--- a/mieru/pkg/protocolv2/const.go
+++ b/mieru/pkg/protocol/const.go
@@ -15,7 +15,7 @@
//go:build !android
-package protocolv2
+package protocol
import "time"
diff --git a/mieru/pkg/protocolv2/const_android.go b/mieru/pkg/protocol/const_android.go
similarity index 97%
rename from mieru/pkg/protocolv2/const_android.go
rename to mieru/pkg/protocol/const_android.go
index 85c1a7c314..ba92c2b240 100644
--- a/mieru/pkg/protocolv2/const_android.go
+++ b/mieru/pkg/protocol/const_android.go
@@ -15,7 +15,7 @@
//go:build android
-package protocolv2
+package protocol
import "time"
diff --git a/mieru/pkg/protocolv2/metadata.go b/mieru/pkg/protocol/metadata.go
similarity index 99%
rename from mieru/pkg/protocolv2/metadata.go
rename to mieru/pkg/protocol/metadata.go
index 7fad57481b..dc00ee60e4 100644
--- a/mieru/pkg/protocolv2/metadata.go
+++ b/mieru/pkg/protocol/metadata.go
@@ -13,7 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see .
-package protocolv2
+package protocol
import (
"encoding/binary"
diff --git a/mieru/pkg/protocolv2/metadata_test.go b/mieru/pkg/protocol/metadata_test.go
similarity index 99%
rename from mieru/pkg/protocolv2/metadata_test.go
rename to mieru/pkg/protocol/metadata_test.go
index 359877a839..5505e6065c 100644
--- a/mieru/pkg/protocolv2/metadata_test.go
+++ b/mieru/pkg/protocol/metadata_test.go
@@ -13,7 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see .
-package protocolv2
+package protocol
import (
mrand "math/rand"
diff --git a/mieru/pkg/protocolv2/mux.go b/mieru/pkg/protocol/mux.go
similarity index 99%
rename from mieru/pkg/protocolv2/mux.go
rename to mieru/pkg/protocol/mux.go
index 6fe70003c1..70e1ca7c82 100644
--- a/mieru/pkg/protocolv2/mux.go
+++ b/mieru/pkg/protocol/mux.go
@@ -13,7 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see .
-package protocolv2
+package protocol
import (
"context"
diff --git a/mieru/pkg/protocolv2/mux_test.go b/mieru/pkg/protocol/mux_test.go
similarity index 99%
rename from mieru/pkg/protocolv2/mux_test.go
rename to mieru/pkg/protocol/mux_test.go
index b6b715cb45..cdbe0f1533 100644
--- a/mieru/pkg/protocolv2/mux_test.go
+++ b/mieru/pkg/protocol/mux_test.go
@@ -13,7 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see .
-package protocolv2
+package protocol
import (
"bytes"
diff --git a/mieru/pkg/protocolv2/padding.go b/mieru/pkg/protocol/padding.go
similarity index 98%
rename from mieru/pkg/protocolv2/padding.go
rename to mieru/pkg/protocol/padding.go
index 11ff5abb16..35b4338f7c 100644
--- a/mieru/pkg/protocolv2/padding.go
+++ b/mieru/pkg/protocol/padding.go
@@ -13,7 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see
-package protocolv2
+package protocol
import (
crand "crypto/rand"
diff --git a/mieru/pkg/protocolv2/padding_test.go b/mieru/pkg/protocol/padding_test.go
similarity index 98%
rename from mieru/pkg/protocolv2/padding_test.go
rename to mieru/pkg/protocol/padding_test.go
index cf5e222c4d..5b2e66cff9 100644
--- a/mieru/pkg/protocolv2/padding_test.go
+++ b/mieru/pkg/protocol/padding_test.go
@@ -13,7 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see
-package protocolv2
+package protocol
import (
"testing"
diff --git a/mieru/pkg/protocolv2/scheduler.go b/mieru/pkg/protocol/scheduler.go
similarity index 99%
rename from mieru/pkg/protocolv2/scheduler.go
rename to mieru/pkg/protocol/scheduler.go
index 4b4e1585d8..294afcbe1a 100644
--- a/mieru/pkg/protocolv2/scheduler.go
+++ b/mieru/pkg/protocol/scheduler.go
@@ -13,7 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see .
-package protocolv2
+package protocol
import (
"sync"
diff --git a/mieru/pkg/protocolv2/segment.go b/mieru/pkg/protocol/segment.go
similarity index 99%
rename from mieru/pkg/protocolv2/segment.go
rename to mieru/pkg/protocol/segment.go
index 9c46b4fdc5..c268ce1cdd 100644
--- a/mieru/pkg/protocolv2/segment.go
+++ b/mieru/pkg/protocol/segment.go
@@ -13,7 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see .
-package protocolv2
+package protocol
import (
"fmt"
diff --git a/mieru/pkg/protocolv2/segment_test.go b/mieru/pkg/protocol/segment_test.go
similarity index 99%
rename from mieru/pkg/protocolv2/segment_test.go
rename to mieru/pkg/protocol/segment_test.go
index 9418987a9d..7fe70d4ee7 100644
--- a/mieru/pkg/protocolv2/segment_test.go
+++ b/mieru/pkg/protocol/segment_test.go
@@ -13,7 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see .
-package protocolv2
+package protocol
import (
mrand "math/rand"
diff --git a/mieru/pkg/protocolv2/session.go b/mieru/pkg/protocol/session.go
similarity index 99%
rename from mieru/pkg/protocolv2/session.go
rename to mieru/pkg/protocol/session.go
index 5fb077116a..5f1605f650 100644
--- a/mieru/pkg/protocolv2/session.go
+++ b/mieru/pkg/protocol/session.go
@@ -13,7 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see .
-package protocolv2
+package protocol
import (
"context"
diff --git a/mieru/pkg/protocolv2/underlay.go b/mieru/pkg/protocol/underlay.go
similarity index 99%
rename from mieru/pkg/protocolv2/underlay.go
rename to mieru/pkg/protocol/underlay.go
index 2ae2fad8ee..b0cca7c917 100644
--- a/mieru/pkg/protocolv2/underlay.go
+++ b/mieru/pkg/protocol/underlay.go
@@ -13,7 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see
-package protocolv2
+package protocol
import (
"context"
diff --git a/mieru/pkg/protocolv2/underlay_base.go b/mieru/pkg/protocol/underlay_base.go
similarity index 99%
rename from mieru/pkg/protocolv2/underlay_base.go
rename to mieru/pkg/protocol/underlay_base.go
index 948cdf3b70..4b432f56e5 100644
--- a/mieru/pkg/protocolv2/underlay_base.go
+++ b/mieru/pkg/protocol/underlay_base.go
@@ -13,7 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see
-package protocolv2
+package protocol
import (
"context"
diff --git a/mieru/pkg/protocolv2/underlay_tcp.go b/mieru/pkg/protocol/underlay_tcp.go
similarity index 99%
rename from mieru/pkg/protocolv2/underlay_tcp.go
rename to mieru/pkg/protocol/underlay_tcp.go
index 258bfc8d9d..09a89e6ba1 100644
--- a/mieru/pkg/protocolv2/underlay_tcp.go
+++ b/mieru/pkg/protocol/underlay_tcp.go
@@ -13,7 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see
-package protocolv2
+package protocol
import (
"context"
diff --git a/mieru/pkg/protocolv2/underlay_udp.go b/mieru/pkg/protocol/underlay_udp.go
similarity index 99%
rename from mieru/pkg/protocolv2/underlay_udp.go
rename to mieru/pkg/protocol/underlay_udp.go
index f875a855d9..1f4093d67c 100644
--- a/mieru/pkg/protocolv2/underlay_udp.go
+++ b/mieru/pkg/protocol/underlay_udp.go
@@ -13,7 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see
-package protocolv2
+package protocol
import (
"context"
diff --git a/mieru/pkg/socks5/socks5.go b/mieru/pkg/socks5/socks5.go
index bee80977bf..24bf6f6799 100644
--- a/mieru/pkg/socks5/socks5.go
+++ b/mieru/pkg/socks5/socks5.go
@@ -12,7 +12,7 @@ import (
"github.com/enfein/mieru/pkg/egress"
"github.com/enfein/mieru/pkg/log"
"github.com/enfein/mieru/pkg/metrics"
- "github.com/enfein/mieru/pkg/protocolv2"
+ "github.com/enfein/mieru/pkg/protocol"
"github.com/enfein/mieru/pkg/stderror"
"github.com/enfein/mieru/pkg/util"
)
@@ -40,7 +40,7 @@ var (
// Config is used to setup and configure a socks5 server.
type Config struct {
// Mieru proxy multiplexer.
- ProxyMux *protocolv2.Mux
+ ProxyMux *protocol.Mux
// Egress controller.
EgressController egress.Controller
diff --git a/mihomo/adapter/outbound/vless.go b/mihomo/adapter/outbound/vless.go
index 43b4aa214a..b18bf4dac6 100644
--- a/mihomo/adapter/outbound/vless.go
+++ b/mihomo/adapter/outbound/vless.go
@@ -505,17 +505,14 @@ func NewVless(option VlessOption) (*Vless, error) {
var addons *vless.Addons
if option.Network != "ws" && len(option.Flow) >= 16 {
option.Flow = option.Flow[:16]
- switch option.Flow {
- case vless.XRV:
- log.Warnln("To use %s, ensure your server is upgrade to Xray-core v1.8.0+", vless.XRV)
- addons = &vless.Addons{
- Flow: option.Flow,
- }
- case vless.XRO, vless.XRD, vless.XRS:
- log.Fatalln("Legacy XTLS protocol %s is deprecated and no longer supported", option.Flow)
- default:
+ if option.Flow != vless.XRV {
return nil, fmt.Errorf("unsupported xtls flow type: %s", option.Flow)
}
+
+ log.Warnln("To use %s, ensure your server is upgrade to Xray-core v1.8.0+", vless.XRV)
+ addons = &vless.Addons{
+ Flow: option.Flow,
+ }
}
switch option.PacketEncoding {
diff --git a/openwrt-passwall/luci-app-passwall/luasrc/passwall/util_sing-box.lua b/openwrt-passwall/luci-app-passwall/luasrc/passwall/util_sing-box.lua
index 16122e2f62..abbe6fa037 100644
--- a/openwrt-passwall/luci-app-passwall/luasrc/passwall/util_sing-box.lua
+++ b/openwrt-passwall/luci-app-passwall/luasrc/passwall/util_sing-box.lua
@@ -619,22 +619,26 @@ function gen_config_server(node)
end
if node.protocol == "tuic" then
- tls.alpn = (node.tuic_alpn and node.tuic_alpn ~= "") and {
- node.tuic_alpn
- } or nil
- protocol_table = {
- users = {
- {
- name = "user1",
- uuid = node.uuid,
+ if node.uuid then
+ local users = {}
+ for i = 1, #node.uuid do
+ users[i] = {
+ name = node.uuid[i],
+ uuid = node.uuid[i],
password = node.password
}
- },
- congestion_control = node.tuic_congestion_control or "cubic",
- zero_rtt_handshake = (node.tuic_zero_rtt_handshake == "1") and true or false,
- heartbeat = node.tuic_heartbeat .. "s",
- tls = tls
- }
+ end
+ tls.alpn = (node.tuic_alpn and node.tuic_alpn ~= "") and {
+ node.tuic_alpn
+ } or nil
+ protocol_table = {
+ users = users,
+ congestion_control = node.tuic_congestion_control or "cubic",
+ zero_rtt_handshake = (node.tuic_zero_rtt_handshake == "1") and true or false,
+ heartbeat = node.tuic_heartbeat .. "s",
+ tls = tls
+ }
+ end
end
if node.protocol == "hysteria2" then
diff --git a/ryujinx/src/Ryujinx.Graphics.GAL/UpscaleType.cs b/ryujinx/src/Ryujinx.Graphics.GAL/UpscaleType.cs
index ca24199c43..e2482faef3 100644
--- a/ryujinx/src/Ryujinx.Graphics.GAL/UpscaleType.cs
+++ b/ryujinx/src/Ryujinx.Graphics.GAL/UpscaleType.cs
@@ -5,5 +5,6 @@ namespace Ryujinx.Graphics.GAL
Bilinear,
Nearest,
Fsr,
+ Area,
}
}
diff --git a/ryujinx/src/Ryujinx.Graphics.OpenGL/Effects/AreaScalingFilter.cs b/ryujinx/src/Ryujinx.Graphics.OpenGL/Effects/AreaScalingFilter.cs
new file mode 100644
index 0000000000..9b19f2f26d
--- /dev/null
+++ b/ryujinx/src/Ryujinx.Graphics.OpenGL/Effects/AreaScalingFilter.cs
@@ -0,0 +1,106 @@
+using OpenTK.Graphics.OpenGL;
+using Ryujinx.Common;
+using Ryujinx.Graphics.GAL;
+using Ryujinx.Graphics.OpenGL.Image;
+using System;
+using static Ryujinx.Graphics.OpenGL.Effects.ShaderHelper;
+
+namespace Ryujinx.Graphics.OpenGL.Effects
+{
+ internal class AreaScalingFilter : IScalingFilter
+ {
+ private readonly OpenGLRenderer _renderer;
+ private int _inputUniform;
+ private int _outputUniform;
+ private int _srcX0Uniform;
+ private int _srcX1Uniform;
+ private int _srcY0Uniform;
+ private int _scalingShaderProgram;
+ private int _srcY1Uniform;
+ private int _dstX0Uniform;
+ private int _dstX1Uniform;
+ private int _dstY0Uniform;
+ private int _dstY1Uniform;
+
+ public float Level { get; set; }
+
+ public AreaScalingFilter(OpenGLRenderer renderer)
+ {
+ Initialize();
+
+ _renderer = renderer;
+ }
+
+ public void Dispose()
+ {
+ if (_scalingShaderProgram != 0)
+ {
+ GL.DeleteProgram(_scalingShaderProgram);
+ }
+ }
+
+ private void Initialize()
+ {
+ var scalingShader = EmbeddedResources.ReadAllText("Ryujinx.Graphics.OpenGL/Effects/Shaders/area_scaling.glsl");
+
+ _scalingShaderProgram = CompileProgram(scalingShader, ShaderType.ComputeShader);
+
+ _inputUniform = GL.GetUniformLocation(_scalingShaderProgram, "Source");
+ _outputUniform = GL.GetUniformLocation(_scalingShaderProgram, "imgOutput");
+
+ _srcX0Uniform = GL.GetUniformLocation(_scalingShaderProgram, "srcX0");
+ _srcX1Uniform = GL.GetUniformLocation(_scalingShaderProgram, "srcX1");
+ _srcY0Uniform = GL.GetUniformLocation(_scalingShaderProgram, "srcY0");
+ _srcY1Uniform = GL.GetUniformLocation(_scalingShaderProgram, "srcY1");
+ _dstX0Uniform = GL.GetUniformLocation(_scalingShaderProgram, "dstX0");
+ _dstX1Uniform = GL.GetUniformLocation(_scalingShaderProgram, "dstX1");
+ _dstY0Uniform = GL.GetUniformLocation(_scalingShaderProgram, "dstY0");
+ _dstY1Uniform = GL.GetUniformLocation(_scalingShaderProgram, "dstY1");
+ }
+
+ public void Run(
+ TextureView view,
+ TextureView destinationTexture,
+ int width,
+ int height,
+ Extents2D source,
+ Extents2D destination)
+ {
+ int previousProgram = GL.GetInteger(GetPName.CurrentProgram);
+ int previousUnit = GL.GetInteger(GetPName.ActiveTexture);
+ GL.ActiveTexture(TextureUnit.Texture0);
+ int previousTextureBinding = GL.GetInteger(GetPName.TextureBinding2D);
+
+ GL.BindImageTexture(0, destinationTexture.Handle, 0, false, 0, TextureAccess.ReadWrite, SizedInternalFormat.Rgba8);
+
+ int threadGroupWorkRegionDim = 16;
+ int dispatchX = (width + (threadGroupWorkRegionDim - 1)) / threadGroupWorkRegionDim;
+ int dispatchY = (height + (threadGroupWorkRegionDim - 1)) / threadGroupWorkRegionDim;
+
+ // Scaling pass
+ GL.UseProgram(_scalingShaderProgram);
+ view.Bind(0);
+ GL.Uniform1(_inputUniform, 0);
+ GL.Uniform1(_outputUniform, 0);
+ GL.Uniform1(_srcX0Uniform, (float)source.X1);
+ GL.Uniform1(_srcX1Uniform, (float)source.X2);
+ GL.Uniform1(_srcY0Uniform, (float)source.Y1);
+ GL.Uniform1(_srcY1Uniform, (float)source.Y2);
+ GL.Uniform1(_dstX0Uniform, (float)destination.X1);
+ GL.Uniform1(_dstX1Uniform, (float)destination.X2);
+ GL.Uniform1(_dstY0Uniform, (float)destination.Y1);
+ GL.Uniform1(_dstY1Uniform, (float)destination.Y2);
+ GL.DispatchCompute(dispatchX, dispatchY, 1);
+
+ GL.UseProgram(previousProgram);
+ GL.MemoryBarrier(MemoryBarrierFlags.ShaderImageAccessBarrierBit);
+
+ (_renderer.Pipeline as Pipeline).RestoreImages1And2();
+
+ GL.ActiveTexture(TextureUnit.Texture0);
+ GL.BindTexture(TextureTarget.Texture2D, previousTextureBinding);
+
+ GL.ActiveTexture((TextureUnit)previousUnit);
+ }
+ }
+}
diff --git a/ryujinx/src/Ryujinx.Graphics.OpenGL/Effects/FsrScalingFilter.cs b/ryujinx/src/Ryujinx.Graphics.OpenGL/Effects/FsrScalingFilter.cs
index 1a130bebb3..0522e28e0e 100644
--- a/ryujinx/src/Ryujinx.Graphics.OpenGL/Effects/FsrScalingFilter.cs
+++ b/ryujinx/src/Ryujinx.Graphics.OpenGL/Effects/FsrScalingFilter.cs
@@ -18,7 +18,7 @@ namespace Ryujinx.Graphics.OpenGL.Effects
private int _srcY0Uniform;
private int _scalingShaderProgram;
private int _sharpeningShaderProgram;
- private float _scale = 1;
+ private float _sharpeningLevel = 1;
private int _srcY1Uniform;
private int _dstX0Uniform;
private int _dstX1Uniform;
@@ -30,10 +30,10 @@ namespace Ryujinx.Graphics.OpenGL.Effects
public float Level
{
- get => _scale;
+ get => _sharpeningLevel;
set
{
- _scale = MathF.Max(0.01f, value);
+ _sharpeningLevel = MathF.Max(0.01f, value);
}
}
diff --git a/ryujinx/src/Ryujinx.Graphics.OpenGL/Effects/ShaderHelper.cs b/ryujinx/src/Ryujinx.Graphics.OpenGL/Effects/ShaderHelper.cs
index c25fe5b258..637b2fba82 100644
--- a/ryujinx/src/Ryujinx.Graphics.OpenGL/Effects/ShaderHelper.cs
+++ b/ryujinx/src/Ryujinx.Graphics.OpenGL/Effects/ShaderHelper.cs
@@ -1,4 +1,5 @@
using OpenTK.Graphics.OpenGL;
+using Ryujinx.Common.Logging;
namespace Ryujinx.Graphics.OpenGL.Effects
{
@@ -6,18 +7,7 @@ namespace Ryujinx.Graphics.OpenGL.Effects
{
public static int CompileProgram(string shaderCode, ShaderType shaderType)
{
- var shader = GL.CreateShader(shaderType);
- GL.ShaderSource(shader, shaderCode);
- GL.CompileShader(shader);
-
- var program = GL.CreateProgram();
- GL.AttachShader(program, shader);
- GL.LinkProgram(program);
-
- GL.DetachShader(program, shader);
- GL.DeleteShader(shader);
-
- return program;
+ return CompileProgram(new string[] { shaderCode }, shaderType);
}
public static int CompileProgram(string[] shaders, ShaderType shaderType)
@@ -26,6 +16,15 @@ namespace Ryujinx.Graphics.OpenGL.Effects
GL.ShaderSource(shader, shaders.Length, shaders, (int[])null);
GL.CompileShader(shader);
+ GL.GetShader(shader, ShaderParameter.CompileStatus, out int isCompiled);
+ if (isCompiled == 0)
+ {
+ string log = GL.GetShaderInfoLog(shader);
+ Logger.Error?.Print(LogClass.Gpu, $"Failed to compile effect shader:\n\n{log}\n");
+ GL.DeleteShader(shader);
+ return 0;
+ }
+
var program = GL.CreateProgram();
GL.AttachShader(program, shader);
GL.LinkProgram(program);
diff --git a/ryujinx/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/area_scaling.glsl b/ryujinx/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/area_scaling.glsl
new file mode 100644
index 0000000000..0fe20d3f94
--- /dev/null
+++ b/ryujinx/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/area_scaling.glsl
@@ -0,0 +1,119 @@
+#version 430 core
+precision mediump float;
+layout (local_size_x = 16, local_size_y = 16) in;
+layout(rgba8, binding = 0, location=0) uniform image2D imgOutput;
+layout( location=1 ) uniform sampler2D Source;
+layout( location=2 ) uniform float srcX0;
+layout( location=3 ) uniform float srcX1;
+layout( location=4 ) uniform float srcY0;
+layout( location=5 ) uniform float srcY1;
+layout( location=6 ) uniform float dstX0;
+layout( location=7 ) uniform float dstX1;
+layout( location=8 ) uniform float dstY0;
+layout( location=9 ) uniform float dstY1;
+
+/***** Area Sampling *****/
+
+// By Sam Belliveau and Filippo Tarpini. Public Domain license.
+// Effectively a more accurate sharp bilinear filter when upscaling,
+// that also works as a mathematically perfect downscale filter.
+// https://entropymine.com/imageworsener/pixelmixing/
+// https://github.com/obsproject/obs-studio/pull/1715
+// https://legacy.imagemagick.org/Usage/filter/
+vec4 AreaSampling(vec2 xy)
+{
+ // Determine the sizes of the source and target images.
+ vec2 source_size = vec2(abs(srcX1 - srcX0), abs(srcY1 - srcY0));
+ vec2 target_size = vec2(abs(dstX1 - dstX0), abs(dstY1 - dstY0));
+ vec2 inverted_target_size = vec2(1.0) / target_size;
+
+ // Compute the top-left and bottom-right corners of the target pixel box.
+ vec2 t_beg = floor(xy - vec2(dstX0 < dstX1 ? dstX0 : dstX1, dstY0 < dstY1 ? dstY0 : dstY1));
+ vec2 t_end = t_beg + vec2(1.0, 1.0);
+
+ // Convert the target pixel box to source pixel box.
+ vec2 beg = t_beg * inverted_target_size * source_size;
+ vec2 end = t_end * inverted_target_size * source_size;
+
+ // Compute the top-left and bottom-right corners of the pixel box.
+ ivec2 f_beg = ivec2(beg);
+ ivec2 f_end = ivec2(end);
+
+ // Compute how much of the start and end pixels are covered horizontally & vertically.
+ float area_w = 1.0 - fract(beg.x);
+ float area_n = 1.0 - fract(beg.y);
+ float area_e = fract(end.x);
+ float area_s = fract(end.y);
+
+ // Compute the areas of the corner pixels in the pixel box.
+ float area_nw = area_n * area_w;
+ float area_ne = area_n * area_e;
+ float area_sw = area_s * area_w;
+ float area_se = area_s * area_e;
+
+ // Initialize the color accumulator.
+ vec4 avg_color = vec4(0.0, 0.0, 0.0, 0.0);
+
+ // Accumulate corner pixels.
+ avg_color += area_nw * texelFetch(Source, ivec2(f_beg.x, f_beg.y), 0);
+ avg_color += area_ne * texelFetch(Source, ivec2(f_end.x, f_beg.y), 0);
+ avg_color += area_sw * texelFetch(Source, ivec2(f_beg.x, f_end.y), 0);
+ avg_color += area_se * texelFetch(Source, ivec2(f_end.x, f_end.y), 0);
+
+ // Determine the size of the pixel box.
+ int x_range = int(f_end.x - f_beg.x - 0.5);
+ int y_range = int(f_end.y - f_beg.y - 0.5);
+
+ // Accumulate top and bottom edge pixels.
+ for (int x = f_beg.x + 1; x <= f_beg.x + x_range; ++x)
+ {
+ avg_color += area_n * texelFetch(Source, ivec2(x, f_beg.y), 0);
+ avg_color += area_s * texelFetch(Source, ivec2(x, f_end.y), 0);
+ }
+
+ // Accumulate left and right edge pixels and all the pixels in between.
+ for (int y = f_beg.y + 1; y <= f_beg.y + y_range; ++y)
+ {
+ avg_color += area_w * texelFetch(Source, ivec2(f_beg.x, y), 0);
+ avg_color += area_e * texelFetch(Source, ivec2(f_end.x, y), 0);
+
+ for (int x = f_beg.x + 1; x <= f_beg.x + x_range; ++x)
+ {
+ avg_color += texelFetch(Source, ivec2(x, y), 0);
+ }
+ }
+
+ // Compute the area of the pixel box that was sampled.
+ float area_corners = area_nw + area_ne + area_sw + area_se;
+ float area_edges = float(x_range) * (area_n + area_s) + float(y_range) * (area_w + area_e);
+ float area_center = float(x_range) * float(y_range);
+
+ // Return the normalized average color.
+ return avg_color / (area_corners + area_edges + area_center);
+}
+
+float insideBox(vec2 v, vec2 bLeft, vec2 tRight) {
+ vec2 s = step(bLeft, v) - step(tRight, v);
+ return s.x * s.y;
+}
+
+vec2 translateDest(vec2 pos) {
+ vec2 translatedPos = vec2(pos.x, pos.y);
+ translatedPos.x = dstX1 < dstX0 ? dstX1 - translatedPos.x : translatedPos.x;
+ translatedPos.y = dstY0 > dstY1 ? dstY0 + dstY1 - translatedPos.y - 1 : translatedPos.y;
+ return translatedPos;
+}
+
+void main()
+{
+ vec2 bLeft = vec2(dstX0 < dstX1 ? dstX0 : dstX1, dstY0 < dstY1 ? dstY0 : dstY1);
+ vec2 tRight = vec2(dstX1 > dstX0 ? dstX1 : dstX0, dstY1 > dstY0 ? dstY1 : dstY0);
+ ivec2 loc = ivec2(gl_GlobalInvocationID.x, gl_GlobalInvocationID.y);
+ if (insideBox(loc, bLeft, tRight) == 0) {
+ imageStore(imgOutput, loc, vec4(0, 0, 0, 1));
+ return;
+ }
+
+ vec4 outColor = AreaSampling(loc);
+ imageStore(imgOutput, ivec2(translateDest(loc)), vec4(outColor.rgb, 1));
+}
diff --git a/ryujinx/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/fsr_scaling.glsl b/ryujinx/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/fsr_scaling.glsl
index 8e8755db20..3c7d485b10 100644
--- a/ryujinx/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/fsr_scaling.glsl
+++ b/ryujinx/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/fsr_scaling.glsl
@@ -85,4 +85,4 @@ void main() {
CurrFilter(gxy);
gxy.x -= 8u;
CurrFilter(gxy);
-}
\ No newline at end of file
+}
diff --git a/ryujinx/src/Ryujinx.Graphics.OpenGL/Ryujinx.Graphics.OpenGL.csproj b/ryujinx/src/Ryujinx.Graphics.OpenGL/Ryujinx.Graphics.OpenGL.csproj
index 3d64da99bc..f3071f486a 100644
--- a/ryujinx/src/Ryujinx.Graphics.OpenGL/Ryujinx.Graphics.OpenGL.csproj
+++ b/ryujinx/src/Ryujinx.Graphics.OpenGL/Ryujinx.Graphics.OpenGL.csproj
@@ -21,6 +21,7 @@
+
diff --git a/ryujinx/src/Ryujinx.Graphics.OpenGL/Window.cs b/ryujinx/src/Ryujinx.Graphics.OpenGL/Window.cs
index 6bcfefa4ed..285ab725e2 100644
--- a/ryujinx/src/Ryujinx.Graphics.OpenGL/Window.cs
+++ b/ryujinx/src/Ryujinx.Graphics.OpenGL/Window.cs
@@ -373,6 +373,16 @@ namespace Ryujinx.Graphics.OpenGL
_isLinear = false;
_scalingFilter.Level = _scalingFilterLevel;
+ RecreateUpscalingTexture();
+ break;
+ case ScalingFilter.Area:
+ if (_scalingFilter is not AreaScalingFilter)
+ {
+ _scalingFilter?.Dispose();
+ _scalingFilter = new AreaScalingFilter(_renderer);
+ }
+ _isLinear = false;
+
RecreateUpscalingTexture();
break;
}
diff --git a/ryujinx/src/Ryujinx.Graphics.Vulkan/Effects/AreaScalingFilter.cs b/ryujinx/src/Ryujinx.Graphics.Vulkan/Effects/AreaScalingFilter.cs
new file mode 100644
index 0000000000..87b46df802
--- /dev/null
+++ b/ryujinx/src/Ryujinx.Graphics.Vulkan/Effects/AreaScalingFilter.cs
@@ -0,0 +1,101 @@
+using Ryujinx.Common;
+using Ryujinx.Graphics.GAL;
+using Ryujinx.Graphics.Shader;
+using Ryujinx.Graphics.Shader.Translation;
+using Silk.NET.Vulkan;
+using System;
+using Extent2D = Ryujinx.Graphics.GAL.Extents2D;
+using Format = Silk.NET.Vulkan.Format;
+using SamplerCreateInfo = Ryujinx.Graphics.GAL.SamplerCreateInfo;
+
+namespace Ryujinx.Graphics.Vulkan.Effects
+{
+ internal class AreaScalingFilter : IScalingFilter
+ {
+ private readonly VulkanRenderer _renderer;
+ private PipelineHelperShader _pipeline;
+ private ISampler _sampler;
+ private ShaderCollection _scalingProgram;
+ private Device _device;
+
+ public float Level { get; set; }
+
+ public AreaScalingFilter(VulkanRenderer renderer, Device device)
+ {
+ _device = device;
+ _renderer = renderer;
+
+ Initialize();
+ }
+
+ public void Dispose()
+ {
+ _pipeline.Dispose();
+ _scalingProgram.Dispose();
+ _sampler.Dispose();
+ }
+
+ public void Initialize()
+ {
+ _pipeline = new PipelineHelperShader(_renderer, _device);
+
+ _pipeline.Initialize();
+
+ var scalingShader = EmbeddedResources.Read("Ryujinx.Graphics.Vulkan/Effects/Shaders/AreaScaling.spv");
+
+ var scalingResourceLayout = new ResourceLayoutBuilder()
+ .Add(ResourceStages.Compute, ResourceType.UniformBuffer, 2)
+ .Add(ResourceStages.Compute, ResourceType.TextureAndSampler, 1)
+ .Add(ResourceStages.Compute, ResourceType.Image, 0, true).Build();
+
+ _sampler = _renderer.CreateSampler(SamplerCreateInfo.Create(MinFilter.Linear, MagFilter.Linear));
+
+ _scalingProgram = _renderer.CreateProgramWithMinimalLayout(new[]
+ {
+ new ShaderSource(scalingShader, ShaderStage.Compute, TargetLanguage.Spirv),
+ }, scalingResourceLayout);
+ }
+
+ public void Run(
+ TextureView view,
+ CommandBufferScoped cbs,
+ Auto destinationTexture,
+ Format format,
+ int width,
+ int height,
+ Extent2D source,
+ Extent2D destination)
+ {
+ _pipeline.SetCommandBuffer(cbs);
+ _pipeline.SetProgram(_scalingProgram);
+ _pipeline.SetTextureAndSampler(ShaderStage.Compute, 1, view, _sampler);
+
+ ReadOnlySpan dimensionsBuffer = stackalloc float[]
+ {
+ source.X1,
+ source.X2,
+ source.Y1,
+ source.Y2,
+ destination.X1,
+ destination.X2,
+ destination.Y1,
+ destination.Y2,
+ };
+
+ int rangeSize = dimensionsBuffer.Length * sizeof(float);
+ using var buffer = _renderer.BufferManager.ReserveOrCreate(_renderer, cbs, rangeSize);
+ buffer.Holder.SetDataUnchecked(buffer.Offset, dimensionsBuffer);
+
+ int threadGroupWorkRegionDim = 16;
+ int dispatchX = (width + (threadGroupWorkRegionDim - 1)) / threadGroupWorkRegionDim;
+ int dispatchY = (height + (threadGroupWorkRegionDim - 1)) / threadGroupWorkRegionDim;
+
+ _pipeline.SetUniformBuffers(stackalloc[] { new BufferAssignment(2, buffer.Range) });
+ _pipeline.SetImage(0, destinationTexture);
+ _pipeline.DispatchCompute(dispatchX, dispatchY, 1);
+ _pipeline.ComputeBarrier();
+
+ _pipeline.Finish();
+ }
+ }
+}
diff --git a/ryujinx/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/AreaScaling.glsl b/ryujinx/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/AreaScaling.glsl
new file mode 100644
index 0000000000..e34dd77dd5
--- /dev/null
+++ b/ryujinx/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/AreaScaling.glsl
@@ -0,0 +1,122 @@
+// Scaling
+
+#version 430 core
+layout (local_size_x = 16, local_size_y = 16) in;
+layout( rgba8, binding = 0, set = 3) uniform image2D imgOutput;
+layout( binding = 1, set = 2) uniform sampler2D Source;
+layout( binding = 2 ) uniform dimensions{
+ float srcX0;
+ float srcX1;
+ float srcY0;
+ float srcY1;
+ float dstX0;
+ float dstX1;
+ float dstY0;
+ float dstY1;
+};
+
+/***** Area Sampling *****/
+
+// By Sam Belliveau and Filippo Tarpini. Public Domain license.
+// Effectively a more accurate sharp bilinear filter when upscaling,
+// that also works as a mathematically perfect downscale filter.
+// https://entropymine.com/imageworsener/pixelmixing/
+// https://github.com/obsproject/obs-studio/pull/1715
+// https://legacy.imagemagick.org/Usage/filter/
+vec4 AreaSampling(vec2 xy)
+{
+ // Determine the sizes of the source and target images.
+ vec2 source_size = vec2(abs(srcX1 - srcX0), abs(srcY1 - srcY0));
+ vec2 target_size = vec2(abs(dstX1 - dstX0), abs(dstY1 - dstY0));
+ vec2 inverted_target_size = vec2(1.0) / target_size;
+
+ // Compute the top-left and bottom-right corners of the target pixel box.
+ vec2 t_beg = floor(xy - vec2(dstX0 < dstX1 ? dstX0 : dstX1, dstY0 < dstY1 ? dstY0 : dstY1));
+ vec2 t_end = t_beg + vec2(1.0, 1.0);
+
+ // Convert the target pixel box to source pixel box.
+ vec2 beg = t_beg * inverted_target_size * source_size;
+ vec2 end = t_end * inverted_target_size * source_size;
+
+ // Compute the top-left and bottom-right corners of the pixel box.
+ ivec2 f_beg = ivec2(beg);
+ ivec2 f_end = ivec2(end);
+
+ // Compute how much of the start and end pixels are covered horizontally & vertically.
+ float area_w = 1.0 - fract(beg.x);
+ float area_n = 1.0 - fract(beg.y);
+ float area_e = fract(end.x);
+ float area_s = fract(end.y);
+
+ // Compute the areas of the corner pixels in the pixel box.
+ float area_nw = area_n * area_w;
+ float area_ne = area_n * area_e;
+ float area_sw = area_s * area_w;
+ float area_se = area_s * area_e;
+
+ // Initialize the color accumulator.
+ vec4 avg_color = vec4(0.0, 0.0, 0.0, 0.0);
+
+ // Accumulate corner pixels.
+ avg_color += area_nw * texelFetch(Source, ivec2(f_beg.x, f_beg.y), 0);
+ avg_color += area_ne * texelFetch(Source, ivec2(f_end.x, f_beg.y), 0);
+ avg_color += area_sw * texelFetch(Source, ivec2(f_beg.x, f_end.y), 0);
+ avg_color += area_se * texelFetch(Source, ivec2(f_end.x, f_end.y), 0);
+
+ // Determine the size of the pixel box.
+ int x_range = int(f_end.x - f_beg.x - 0.5);
+ int y_range = int(f_end.y - f_beg.y - 0.5);
+
+ // Accumulate top and bottom edge pixels.
+ for (int x = f_beg.x + 1; x <= f_beg.x + x_range; ++x)
+ {
+ avg_color += area_n * texelFetch(Source, ivec2(x, f_beg.y), 0);
+ avg_color += area_s * texelFetch(Source, ivec2(x, f_end.y), 0);
+ }
+
+ // Accumulate left and right edge pixels and all the pixels in between.
+ for (int y = f_beg.y + 1; y <= f_beg.y + y_range; ++y)
+ {
+ avg_color += area_w * texelFetch(Source, ivec2(f_beg.x, y), 0);
+ avg_color += area_e * texelFetch(Source, ivec2(f_end.x, y), 0);
+
+ for (int x = f_beg.x + 1; x <= f_beg.x + x_range; ++x)
+ {
+ avg_color += texelFetch(Source, ivec2(x, y), 0);
+ }
+ }
+
+ // Compute the area of the pixel box that was sampled.
+ float area_corners = area_nw + area_ne + area_sw + area_se;
+ float area_edges = float(x_range) * (area_n + area_s) + float(y_range) * (area_w + area_e);
+ float area_center = float(x_range) * float(y_range);
+
+ // Return the normalized average color.
+ return avg_color / (area_corners + area_edges + area_center);
+}
+
+float insideBox(vec2 v, vec2 bLeft, vec2 tRight) {
+ vec2 s = step(bLeft, v) - step(tRight, v);
+ return s.x * s.y;
+}
+
+vec2 translateDest(vec2 pos) {
+ vec2 translatedPos = vec2(pos.x, pos.y);
+ translatedPos.x = dstX1 < dstX0 ? dstX1 - translatedPos.x : translatedPos.x;
+ translatedPos.y = dstY0 < dstY1 ? dstY1 + dstY0 - translatedPos.y - 1 : translatedPos.y;
+ return translatedPos;
+}
+
+void main()
+{
+ vec2 bLeft = vec2(dstX0 < dstX1 ? dstX0 : dstX1, dstY0 < dstY1 ? dstY0 : dstY1);
+ vec2 tRight = vec2(dstX1 > dstX0 ? dstX1 : dstX0, dstY1 > dstY0 ? dstY1 : dstY0);
+ ivec2 loc = ivec2(gl_GlobalInvocationID.x, gl_GlobalInvocationID.y);
+ if (insideBox(loc, bLeft, tRight) == 0) {
+ imageStore(imgOutput, loc, vec4(0, 0, 0, 1));
+ return;
+ }
+
+ vec4 outColor = AreaSampling(loc);
+ imageStore(imgOutput, ivec2(translateDest(loc)), vec4(outColor.rgb, 1));
+}
diff --git a/ryujinx/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/AreaScaling.spv b/ryujinx/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/AreaScaling.spv
new file mode 100644
index 0000000000..7d097280f0
Binary files /dev/null and b/ryujinx/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/AreaScaling.spv differ
diff --git a/ryujinx/src/Ryujinx.Graphics.Vulkan/Ryujinx.Graphics.Vulkan.csproj b/ryujinx/src/Ryujinx.Graphics.Vulkan/Ryujinx.Graphics.Vulkan.csproj
index f6a7be91e4..aae28733f9 100644
--- a/ryujinx/src/Ryujinx.Graphics.Vulkan/Ryujinx.Graphics.Vulkan.csproj
+++ b/ryujinx/src/Ryujinx.Graphics.Vulkan/Ryujinx.Graphics.Vulkan.csproj
@@ -15,6 +15,7 @@
+
diff --git a/ryujinx/src/Ryujinx.Graphics.Vulkan/Window.cs b/ryujinx/src/Ryujinx.Graphics.Vulkan/Window.cs
index d67362be30..3dc6d4e191 100644
--- a/ryujinx/src/Ryujinx.Graphics.Vulkan/Window.cs
+++ b/ryujinx/src/Ryujinx.Graphics.Vulkan/Window.cs
@@ -568,6 +568,13 @@ namespace Ryujinx.Graphics.Vulkan
_scalingFilter.Level = _scalingFilterLevel;
break;
+ case ScalingFilter.Area:
+ if (_scalingFilter is not AreaScalingFilter)
+ {
+ _scalingFilter?.Dispose();
+ _scalingFilter = new AreaScalingFilter(_gd, _device);
+ }
+ break;
}
}
}
diff --git a/ryujinx/src/Ryujinx.Gtk3/UI/MainWindow.cs b/ryujinx/src/Ryujinx.Gtk3/UI/MainWindow.cs
index 66c0afae03..b10dfe3f9e 100644
--- a/ryujinx/src/Ryujinx.Gtk3/UI/MainWindow.cs
+++ b/ryujinx/src/Ryujinx.Gtk3/UI/MainWindow.cs
@@ -647,7 +647,7 @@ namespace Ryujinx.UI
}
var memoryConfiguration = ConfigurationState.Instance.System.ExpandRam.Value
- ? HLE.MemoryConfiguration.MemoryConfiguration6GiB
+ ? HLE.MemoryConfiguration.MemoryConfiguration8GiB
: HLE.MemoryConfiguration.MemoryConfiguration4GiB;
IntegrityCheckLevel fsIntegrityCheckLevel = ConfigurationState.Instance.System.EnableFsIntegrityChecks ? IntegrityCheckLevel.ErrorOnInvalid : IntegrityCheckLevel.None;
diff --git a/ryujinx/src/Ryujinx.HLE/HOS/Kernel/Common/KSystemControl.cs b/ryujinx/src/Ryujinx.HLE/HOS/Kernel/Common/KSystemControl.cs
index 10f0b6f789..3f194e0ed8 100644
--- a/ryujinx/src/Ryujinx.HLE/HOS/Kernel/Common/KSystemControl.cs
+++ b/ryujinx/src/Ryujinx.HLE/HOS/Kernel/Common/KSystemControl.cs
@@ -28,8 +28,8 @@ namespace Ryujinx.HLE.HOS.Kernel.Common
MemoryArrange.MemoryArrange4GiBSystemDev or
MemoryArrange.MemoryArrange6GiBAppletDev => 3285 * MiB,
MemoryArrange.MemoryArrange4GiBAppletDev => 2048 * MiB,
- MemoryArrange.MemoryArrange6GiB or
- MemoryArrange.MemoryArrange8GiB => 4916 * MiB,
+ MemoryArrange.MemoryArrange6GiB => 4916 * MiB,
+ MemoryArrange.MemoryArrange8GiB => 6964 * MiB,
_ => throw new ArgumentException($"Invalid memory arrange \"{arrange}\"."),
};
}
@@ -42,8 +42,8 @@ namespace Ryujinx.HLE.HOS.Kernel.Common
MemoryArrange.MemoryArrange4GiBAppletDev => 1554 * MiB,
MemoryArrange.MemoryArrange4GiBSystemDev => 448 * MiB,
MemoryArrange.MemoryArrange6GiB => 562 * MiB,
- MemoryArrange.MemoryArrange6GiBAppletDev or
- MemoryArrange.MemoryArrange8GiB => 2193 * MiB,
+ MemoryArrange.MemoryArrange6GiBAppletDev => 2193 * MiB,
+ MemoryArrange.MemoryArrange8GiB => 562 * MiB,
_ => throw new ArgumentException($"Invalid memory arrange \"{arrange}\"."),
};
}
diff --git a/ryujinx/src/Ryujinx.Headless.SDL2/Options.cs b/ryujinx/src/Ryujinx.Headless.SDL2/Options.cs
index ea2063758d..ef8849eeaa 100644
--- a/ryujinx/src/Ryujinx.Headless.SDL2/Options.cs
+++ b/ryujinx/src/Ryujinx.Headless.SDL2/Options.cs
@@ -219,7 +219,7 @@ namespace Ryujinx.Headless.SDL2
// Hacks
- [Option("expand-ram", Required = false, Default = false, HelpText = "Expands the RAM amount on the emulated system from 4GiB to 6GiB.")]
+ [Option("expand-ram", Required = false, Default = false, HelpText = "Expands the RAM amount on the emulated system from 4GiB to 8GiB.")]
public bool ExpandRAM { get; set; }
[Option("ignore-missing-services", Required = false, Default = false, HelpText = "Enable ignoring missing services.")]
diff --git a/ryujinx/src/Ryujinx.Headless.SDL2/Program.cs b/ryujinx/src/Ryujinx.Headless.SDL2/Program.cs
index 07995dbdd7..4ee2712037 100644
--- a/ryujinx/src/Ryujinx.Headless.SDL2/Program.cs
+++ b/ryujinx/src/Ryujinx.Headless.SDL2/Program.cs
@@ -562,7 +562,7 @@ namespace Ryujinx.Headless.SDL2
_userChannelPersistence,
renderer,
new SDL2HardwareDeviceDriver(),
- options.ExpandRAM ? MemoryConfiguration.MemoryConfiguration6GiB : MemoryConfiguration.MemoryConfiguration4GiB,
+ options.ExpandRAM ? MemoryConfiguration.MemoryConfiguration8GiB : MemoryConfiguration.MemoryConfiguration4GiB,
window,
options.SystemLanguage,
options.SystemRegion,
diff --git a/ryujinx/src/Ryujinx.UI.Common/Configuration/ConfigurationFileFormat.cs b/ryujinx/src/Ryujinx.UI.Common/Configuration/ConfigurationFileFormat.cs
index af3ad0a1da..8a0be40283 100644
--- a/ryujinx/src/Ryujinx.UI.Common/Configuration/ConfigurationFileFormat.cs
+++ b/ryujinx/src/Ryujinx.UI.Common/Configuration/ConfigurationFileFormat.cs
@@ -238,7 +238,7 @@ namespace Ryujinx.UI.Common.Configuration
public MemoryManagerMode MemoryManagerMode { get; set; }
///
- /// Expands the RAM amount on the emulated system from 4GiB to 6GiB
+ /// Expands the RAM amount on the emulated system from 4GiB to 8GiB
///
public bool ExpandRam { get; set; }
diff --git a/ryujinx/src/Ryujinx/AppHost.cs b/ryujinx/src/Ryujinx/AppHost.cs
index 0db8ef4143..f4bfd1169e 100644
--- a/ryujinx/src/Ryujinx/AppHost.cs
+++ b/ryujinx/src/Ryujinx/AppHost.cs
@@ -845,7 +845,7 @@ namespace Ryujinx.Ava
Logger.Info?.PrintMsg(LogClass.Gpu, $"Backend Threading ({threadingMode}): {isGALThreaded}");
// Initialize Configuration.
- var memoryConfiguration = ConfigurationState.Instance.System.ExpandRam.Value ? MemoryConfiguration.MemoryConfiguration6GiB : MemoryConfiguration.MemoryConfiguration4GiB;
+ var memoryConfiguration = ConfigurationState.Instance.System.ExpandRam.Value ? MemoryConfiguration.MemoryConfiguration8GiB : MemoryConfiguration.MemoryConfiguration4GiB;
HLEConfiguration configuration = new(VirtualFileSystem,
_viewModel.LibHacHorizonManager,
diff --git a/ryujinx/src/Ryujinx/Assets/Locales/en_US.json b/ryujinx/src/Ryujinx/Assets/Locales/en_US.json
index 74e18056ba..b3cab7f5f6 100644
--- a/ryujinx/src/Ryujinx/Assets/Locales/en_US.json
+++ b/ryujinx/src/Ryujinx/Assets/Locales/en_US.json
@@ -145,7 +145,7 @@
"SettingsTabSystemAudioBackendSDL2": "SDL2",
"SettingsTabSystemHacks": "Hacks",
"SettingsTabSystemHacksNote": "May cause instability",
- "SettingsTabSystemExpandDramSize": "Use alternative memory layout (Developers)",
+ "SettingsTabSystemExpandDramSize": "Expand DRAM to 8GiB",
"SettingsTabSystemIgnoreMissingServices": "Ignore Missing Services",
"SettingsTabGraphics": "Graphics",
"SettingsTabGraphicsAPI": "Graphics API",
@@ -575,7 +575,7 @@
"MemoryManagerHostTooltip": "Directly map memory in the host address space. Much faster JIT compilation and execution.",
"MemoryManagerUnsafeTooltip": "Directly map memory, but do not mask the address within the guest address space before access. Faster, but at the cost of safety. The guest application can access memory from anywhere in Ryujinx, so only run programs you trust with this mode.",
"UseHypervisorTooltip": "Use Hypervisor instead of JIT. Greatly improves performance when available, but can be unstable in its current state.",
- "DRamTooltip": "Utilizes an alternative MemoryMode layout to mimic a Switch development model.\n\nThis is only useful for higher-resolution texture packs or 4k resolution mods. Does NOT improve performance.\n\nLeave OFF if unsure.",
+ "DRamTooltip": "Utilizes an alternative memory mode with 8GiB of DRAM to mimic a Switch development model.\n\nThis is only useful for higher-resolution texture packs or 4k resolution mods. Does NOT improve performance.\n\nLeave OFF if unsure.",
"IgnoreMissingServicesTooltip": "Ignores unimplemented Horizon OS services. This may help in bypassing crashes when booting certain games.\n\nLeave OFF if unsure.",
"GraphicsBackendThreadingTooltip": "Executes graphics backend commands on a second thread.\n\nSpeeds up shader compilation, reduces stuttering, and improves performance on GPU drivers without multithreading support of their own. Slightly better performance on drivers with multithreading.\n\nSet to AUTO if unsure.",
"GalThreadingTooltip": "Executes graphics backend commands on a second thread.\n\nSpeeds up shader compilation, reduces stuttering, and improves performance on GPU drivers without multithreading support of their own. Slightly better performance on drivers with multithreading.\n\nSet to AUTO if unsure.",
@@ -758,10 +758,11 @@
"GraphicsAATooltip": "Applies anti-aliasing to the game render.\n\nFXAA will blur most of the image, while SMAA will attempt to find jagged edges and smooth them out.\n\nNot recommended to use in conjunction with the FSR scaling filter.\n\nThis option can be changed while a game is running by clicking \"Apply\" below; you can simply move the settings window aside and experiment until you find your preferred look for a game.\n\nLeave on NONE if unsure.",
"GraphicsAALabel": "Anti-Aliasing:",
"GraphicsScalingFilterLabel": "Scaling Filter:",
- "GraphicsScalingFilterTooltip": "Choose the scaling filter that will be applied when using resolution scale.\n\nBilinear works well for 3D games and is a safe default option.\n\nNearest is recommended for pixel art games.\n\nFSR 1.0 is merely a sharpening filter, not recommended for use with FXAA or SMAA.\n\nThis option can be changed while a game is running by clicking \"Apply\" below; you can simply move the settings window aside and experiment until you find your preferred look for a game.\n\nLeave on BILINEAR if unsure.",
+ "GraphicsScalingFilterTooltip": "Choose the scaling filter that will be applied when using resolution scale.\n\nBilinear works well for 3D games and is a safe default option.\n\nNearest is recommended for pixel art games.\n\nFSR 1.0 is merely a sharpening filter, not recommended for use with FXAA or SMAA.\n\nArea scaling is recommended when downscaling resolutions that are larger than the output window. It can be used to achieve a supersampled anti-aliasing effect when downscaling by more than 2x.\n\nThis option can be changed while a game is running by clicking \"Apply\" below; you can simply move the settings window aside and experiment until you find your preferred look for a game.\n\nLeave on BILINEAR if unsure.",
"GraphicsScalingFilterBilinear": "Bilinear",
"GraphicsScalingFilterNearest": "Nearest",
"GraphicsScalingFilterFsr": "FSR",
+ "GraphicsScalingFilterArea": "Area",
"GraphicsScalingFilterLevelLabel": "Level",
"GraphicsScalingFilterLevelTooltip": "Set FSR 1.0 sharpening level. Higher is sharper.",
"SmaaLow": "SMAA Low",
diff --git a/ryujinx/src/Ryujinx/UI/Views/Settings/SettingsGraphicsView.axaml b/ryujinx/src/Ryujinx/UI/Views/Settings/SettingsGraphicsView.axaml
index 5cffc6848a..0a12575adc 100644
--- a/ryujinx/src/Ryujinx/UI/Views/Settings/SettingsGraphicsView.axaml
+++ b/ryujinx/src/Ryujinx/UI/Views/Settings/SettingsGraphicsView.axaml
@@ -1,4 +1,4 @@
-
+
+
+
,
#[cfg_attr(any(windows, target_os = "android"), allow(dead_code))]
diff --git a/shadowsocks-rust/crates/shadowsocks/src/manager/datagram.rs b/shadowsocks-rust/crates/shadowsocks/src/manager/datagram.rs
index 05131d9ecd..06106f1af7 100644
--- a/shadowsocks-rust/crates/shadowsocks/src/manager/datagram.rs
+++ b/shadowsocks-rust/crates/shadowsocks/src/manager/datagram.rs
@@ -46,6 +46,7 @@ impl fmt::Display for ManagerSocketAddr {
/// Datagram socket for manager
///
/// For *nix system, this is a wrapper for both UDP socket and Unix socket
+#[derive(Debug)]
pub enum ManagerDatagram {
UdpDatagram(UdpSocket),
#[cfg(unix)]
diff --git a/shadowsocks-rust/crates/shadowsocks/src/manager/listener.rs b/shadowsocks-rust/crates/shadowsocks/src/manager/listener.rs
index 004d82f2be..6f79d9d60b 100644
--- a/shadowsocks-rust/crates/shadowsocks/src/manager/listener.rs
+++ b/shadowsocks-rust/crates/shadowsocks/src/manager/listener.rs
@@ -13,6 +13,7 @@ use super::{
};
/// Manager server Listener
+#[derive(Debug)]
pub struct ManagerListener {
socket: ManagerDatagram,
}
diff --git a/shadowsocks-rust/crates/shadowsocks/src/net/tcp.rs b/shadowsocks-rust/crates/shadowsocks/src/net/tcp.rs
index 97708ae7eb..66b797a661 100644
--- a/shadowsocks-rust/crates/shadowsocks/src/net/tcp.rs
+++ b/shadowsocks-rust/crates/shadowsocks/src/net/tcp.rs
@@ -121,6 +121,7 @@ impl AsyncWrite for TcpStream {
}
/// `TcpListener` for accepting inbound connections
+#[derive(Debug)]
pub struct TcpListener {
inner: TokioTcpListener,
accept_opts: AcceptOpts,
diff --git a/shadowsocks-rust/crates/shadowsocks/src/net/udp.rs b/shadowsocks-rust/crates/shadowsocks/src/net/udp.rs
index 2512be801e..3a8acc2d44 100644
--- a/shadowsocks-rust/crates/shadowsocks/src/net/udp.rs
+++ b/shadowsocks-rust/crates/shadowsocks/src/net/udp.rs
@@ -85,6 +85,7 @@ fn make_mtu_error(packet_size: usize, mtu: usize) -> io::Error {
}
/// Wrappers for outbound `UdpSocket`
+#[derive(Debug)]
#[pin_project]
pub struct UdpSocket {
#[pin]
diff --git a/shadowsocks-rust/crates/shadowsocks/src/plugin/mod.rs b/shadowsocks-rust/crates/shadowsocks/src/plugin/mod.rs
index b55f7c0b83..379052f7c3 100644
--- a/shadowsocks-rust/crates/shadowsocks/src/plugin/mod.rs
+++ b/shadowsocks-rust/crates/shadowsocks/src/plugin/mod.rs
@@ -58,6 +58,7 @@ pub enum PluginMode {
}
/// A shadowsocks SIP004 Plugin
+#[derive(Debug)]
pub struct Plugin {
process: Child,
local_addr: SocketAddr,
diff --git a/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/aead.rs b/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/aead.rs
index 1d4e5a22b9..9fd19c739e 100644
--- a/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/aead.rs
+++ b/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/aead.rs
@@ -80,6 +80,7 @@ impl From for io::Error {
}
}
+#[derive(Debug)]
enum DecryptReadState {
WaitSalt { key: Bytes },
ReadLength,
@@ -320,6 +321,7 @@ impl DecryptedReader {
}
}
+#[derive(Debug)]
enum EncryptWriteState {
AssemblePacket,
Writing { pos: usize },
diff --git a/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/crypto_io.rs b/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/crypto_io.rs
index 701503d3f3..f375517b43 100644
--- a/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/crypto_io.rs
+++ b/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/crypto_io.rs
@@ -1,7 +1,7 @@
//! IO facilities for TCP relay
use std::{
- io,
+ fmt, io,
marker::Unpin,
pin::Pin,
sync::Arc,
@@ -313,6 +313,15 @@ pub struct CryptoStream {
has_handshaked: bool,
}
+impl fmt::Debug for CryptoStream {
+ fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
+ f.debug_struct("CryptoStream")
+ .field("method", &self.method)
+ .field("has_handshaked", &self.has_handshaked)
+ .finish()
+ }
+}
+
impl CryptoStream {
/// Create a new CryptoStream with the underlying stream connection
pub fn from_stream(
diff --git a/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_listener.rs b/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_listener.rs
index 055393c27a..9cac931e73 100644
--- a/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_listener.rs
+++ b/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_listener.rs
@@ -17,6 +17,7 @@ use crate::{
};
/// A TCP listener for accepting shadowsocks' client connection
+#[derive(Debug)]
pub struct ProxyListener {
listener: TcpListener,
method: CipherKind,
diff --git a/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_stream/client.rs b/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_stream/client.rs
index 953815ea27..ef5f0102cc 100644
--- a/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_stream/client.rs
+++ b/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_stream/client.rs
@@ -30,12 +30,14 @@ use crate::{
},
};
+#[derive(Debug)]
enum ProxyClientStreamWriteState {
Connect(Address),
Connecting(BytesMut),
Connected,
}
+#[derive(Debug)]
enum ProxyClientStreamReadState {
#[cfg(feature = "aead-cipher-2022")]
CheckRequestNonce,
@@ -43,6 +45,7 @@ enum ProxyClientStreamReadState {
}
/// A stream for sending / receiving data stream from remote server via shadowsocks' proxy server
+#[derive(Debug)]
#[pin_project]
pub struct ProxyClientStream {
#[pin]
diff --git a/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_stream/protocol/mod.rs b/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_stream/protocol/mod.rs
index 55e8b2a763..9a300c1299 100644
--- a/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_stream/protocol/mod.rs
+++ b/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_stream/protocol/mod.rs
@@ -18,6 +18,7 @@ pub mod v1;
#[cfg(feature = "aead-cipher-2022")]
pub mod v2;
+#[derive(Debug)]
pub enum TcpRequestHeader {
Stream(StreamTcpRequestHeader),
#[cfg(feature = "aead-cipher-2022")]
@@ -74,6 +75,7 @@ impl TcpRequestHeader {
}
}
+#[derive(Debug)]
pub enum TcpRequestHeaderRef<'a> {
Stream(StreamTcpRequestHeaderRef<'a>),
#[cfg(feature = "aead-cipher-2022")]
diff --git a/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_stream/protocol/v1.rs b/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_stream/protocol/v1.rs
index 17b9b3648b..7c002923e5 100644
--- a/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_stream/protocol/v1.rs
+++ b/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_stream/protocol/v1.rs
@@ -7,6 +7,7 @@ use tokio::io::AsyncRead;
use crate::relay::socks5::Address;
+#[derive(Debug)]
pub struct StreamTcpRequestHeader {
pub addr: Address,
}
@@ -27,6 +28,7 @@ impl StreamTcpRequestHeader {
}
}
+#[derive(Debug)]
pub struct StreamTcpRequestHeaderRef<'a> {
pub addr: &'a Address,
}
diff --git a/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_stream/protocol/v2.rs b/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_stream/protocol/v2.rs
index 5b45fec34b..469488d5b4 100644
--- a/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_stream/protocol/v2.rs
+++ b/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_stream/protocol/v2.rs
@@ -66,6 +66,7 @@ impl Aead2022TcpRequestHeader {
}
}
+#[derive(Debug)]
pub struct Aead2022TcpRequestHeaderRef<'a> {
pub addr: &'a Address,
pub padding_size: u16,
diff --git a/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_stream/server.rs b/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_stream/server.rs
index 374d9d3ce4..784f39e478 100644
--- a/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_stream/server.rs
+++ b/shadowsocks-rust/crates/shadowsocks/src/relay/tcprelay/proxy_stream/server.rs
@@ -25,6 +25,7 @@ use crate::{
},
};
+#[derive(Debug)]
enum ProxyServerStreamWriteState {
#[cfg(feature = "aead-cipher-2022")]
PrepareHeader(Option),
@@ -32,6 +33,7 @@ enum ProxyServerStreamWriteState {
}
/// A stream for communicating with shadowsocks' proxy client
+#[derive(Debug)]
#[pin_project]
pub struct ProxyServerStream {
#[pin]
diff --git a/shadowsocks-rust/crates/shadowsocks/src/relay/udprelay/proxy_socket.rs b/shadowsocks-rust/crates/shadowsocks/src/relay/udprelay/proxy_socket.rs
index 4cf7d7fc7e..5fdc647d85 100644
--- a/shadowsocks-rust/crates/shadowsocks/src/relay/udprelay/proxy_socket.rs
+++ b/shadowsocks-rust/crates/shadowsocks/src/relay/udprelay/proxy_socket.rs
@@ -69,6 +69,7 @@ impl From for io::Error {
pub type ProxySocketResult = Result;
/// UDP client for communicating with ShadowSocks' server
+#[derive(Debug)]
pub struct ProxySocket {
socket_type: UdpSocketType,
socket: ShadowUdpSocket,
diff --git a/shadowsocks-rust/crates/shadowsocks/src/security/replay/mod.rs b/shadowsocks-rust/crates/shadowsocks/src/security/replay/mod.rs
index 968f8d7b00..baf5d19336 100644
--- a/shadowsocks-rust/crates/shadowsocks/src/security/replay/mod.rs
+++ b/shadowsocks-rust/crates/shadowsocks/src/security/replay/mod.rs
@@ -1,3 +1,5 @@
+use std::fmt;
+
#[cfg(feature = "aead-cipher-2022")]
use std::time::Duration;
@@ -29,6 +31,12 @@ pub struct ReplayProtector {
nonce_set: spin::Mutex, ()>>,
}
+impl fmt::Debug for ReplayProtector {
+ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+ f.debug_struct("ReplayProtector").finish()
+ }
+}
+
impl ReplayProtector {
/// Create a new ReplayProtector
#[allow(unused_variables)]
diff --git a/shadowsocks-rust/crates/shadowsocks/src/security/replay/ppbloom.rs b/shadowsocks-rust/crates/shadowsocks/src/security/replay/ppbloom.rs
index cf0be9c82c..50490ccba7 100644
--- a/shadowsocks-rust/crates/shadowsocks/src/security/replay/ppbloom.rs
+++ b/shadowsocks-rust/crates/shadowsocks/src/security/replay/ppbloom.rs
@@ -27,6 +27,7 @@ const BF_ERROR_RATE_FOR_CLIENT: f64 = 1e-15;
//
// It contains 2 bloom filters and each one holds 1/2 entries.
// Use them as a ring buffer.
+#[derive(Debug)]
pub struct PingPongBloom {
blooms: [Bloom<[u8]>; 2],
bloom_count: [usize; 2],
diff --git a/small/luci-app-passwall/luasrc/passwall/util_sing-box.lua b/small/luci-app-passwall/luasrc/passwall/util_sing-box.lua
index 16122e2f62..abbe6fa037 100644
--- a/small/luci-app-passwall/luasrc/passwall/util_sing-box.lua
+++ b/small/luci-app-passwall/luasrc/passwall/util_sing-box.lua
@@ -619,22 +619,26 @@ function gen_config_server(node)
end
if node.protocol == "tuic" then
- tls.alpn = (node.tuic_alpn and node.tuic_alpn ~= "") and {
- node.tuic_alpn
- } or nil
- protocol_table = {
- users = {
- {
- name = "user1",
- uuid = node.uuid,
+ if node.uuid then
+ local users = {}
+ for i = 1, #node.uuid do
+ users[i] = {
+ name = node.uuid[i],
+ uuid = node.uuid[i],
password = node.password
}
- },
- congestion_control = node.tuic_congestion_control or "cubic",
- zero_rtt_handshake = (node.tuic_zero_rtt_handshake == "1") and true or false,
- heartbeat = node.tuic_heartbeat .. "s",
- tls = tls
- }
+ end
+ tls.alpn = (node.tuic_alpn and node.tuic_alpn ~= "") and {
+ node.tuic_alpn
+ } or nil
+ protocol_table = {
+ users = users,
+ congestion_control = node.tuic_congestion_control or "cubic",
+ zero_rtt_handshake = (node.tuic_zero_rtt_handshake == "1") and true or false,
+ heartbeat = node.tuic_heartbeat .. "s",
+ tls = tls
+ }
+ end
end
if node.protocol == "hysteria2" then
diff --git a/suyu/img/need to fix bugs.png b/suyu/img/need to fix bugs.png
new file mode 100644
index 0000000000..124c55c91a
Binary files /dev/null and b/suyu/img/need to fix bugs.png differ
diff --git a/v2rayn/v2rayN/ServiceLib/Common/DownloaderHelper.cs b/v2rayn/v2rayN/ServiceLib/Common/DownloaderHelper.cs
index ed5867c3ff..986912d750 100644
--- a/v2rayn/v2rayN/ServiceLib/Common/DownloaderHelper.cs
+++ b/v2rayn/v2rayN/ServiceLib/Common/DownloaderHelper.cs
@@ -18,7 +18,7 @@ namespace ServiceLib.Common
Uri uri = new(url);
//Authorization Header
var headers = new WebHeaderCollection();
- if (!Utils.IsNullOrEmpty(uri.UserInfo))
+ if (Utils.IsNotEmpty(uri.UserInfo))
{
headers.Add(HttpRequestHeader.Authorization, "Basic " + Utils.Base64Encode(uri.UserInfo));
}
diff --git a/v2rayn/v2rayN/ServiceLib/Common/FileManager.cs b/v2rayn/v2rayN/ServiceLib/Common/FileManager.cs
index 014393a75b..4eb97a517e 100644
--- a/v2rayn/v2rayN/ServiceLib/Common/FileManager.cs
+++ b/v2rayn/v2rayN/ServiceLib/Common/FileManager.cs
@@ -82,7 +82,7 @@ namespace ServiceLib.Common
}
try
{
- if (!Utils.IsNullOrEmpty(ignoredName) && entry.Name.Contains(ignoredName))
+ if (Utils.IsNotEmpty(ignoredName) && entry.Name.Contains(ignoredName))
{
continue;
}
@@ -157,7 +157,7 @@ namespace ServiceLib.Common
// Get the files in the source directory and copy to the destination directory
foreach (FileInfo file in dir.GetFiles())
{
- if (!Utils.IsNullOrEmpty(ignoredName) && file.Name.Contains(ignoredName))
+ if (Utils.IsNotEmpty(ignoredName) && file.Name.Contains(ignoredName))
{
continue;
}
diff --git a/v2rayn/v2rayN/ServiceLib/Common/HttpClientHelper.cs b/v2rayn/v2rayN/ServiceLib/Common/HttpClientHelper.cs
index dd730dbff3..bd671feec1 100644
--- a/v2rayn/v2rayN/ServiceLib/Common/HttpClientHelper.cs
+++ b/v2rayn/v2rayN/ServiceLib/Common/HttpClientHelper.cs
@@ -22,7 +22,7 @@ namespace ServiceLib.Common
public async Task TryGetAsync(string url)
{
- if (string.IsNullOrEmpty(url))
+ if (Utils.IsNullOrEmpty(url))
return null;
try
diff --git a/v2rayn/v2rayN/ServiceLib/Common/StringEx.cs b/v2rayn/v2rayN/ServiceLib/Common/StringEx.cs
index 008af34864..eb9bdafe38 100644
--- a/v2rayn/v2rayN/ServiceLib/Common/StringEx.cs
+++ b/v2rayn/v2rayN/ServiceLib/Common/StringEx.cs
@@ -14,6 +14,11 @@ namespace ServiceLib.Common
return string.IsNullOrWhiteSpace(value);
}
+ public static bool IsNotEmpty([NotNullWhen(false)] this string? value)
+ {
+ return !string.IsNullOrEmpty(value);
+ }
+
public static bool BeginWithAny(this string s, IEnumerable chars)
{
if (s.IsNullOrEmpty()) return false;
diff --git a/v2rayn/v2rayN/ServiceLib/Common/Utils.cs b/v2rayn/v2rayN/ServiceLib/Common/Utils.cs
index 9830213c69..8e2fb95636 100644
--- a/v2rayn/v2rayN/ServiceLib/Common/Utils.cs
+++ b/v2rayn/v2rayN/ServiceLib/Common/Utils.cs
@@ -417,6 +417,11 @@ namespace ServiceLib.Common
return false;
}
+ public static bool IsNotEmpty(string? text)
+ {
+ return !string.IsNullOrEmpty(text);
+ }
+
///
/// 验证IP地址是否合法
///
diff --git a/v2rayn/v2rayN/ServiceLib/Handler/ConfigHandler.cs b/v2rayn/v2rayN/ServiceLib/Handler/ConfigHandler.cs
index f949e5ce71..8e72799f9f 100644
--- a/v2rayn/v2rayN/ServiceLib/Handler/ConfigHandler.cs
+++ b/v2rayn/v2rayN/ServiceLib/Handler/ConfigHandler.cs
@@ -23,7 +23,7 @@ namespace ServiceLib.Handler
{
//载入配置文件
var result = Utils.LoadResource(Utils.GetConfigPath(configRes));
- if (!Utils.IsNullOrEmpty(result))
+ if (Utils.IsNotEmpty(result))
{
//转成Json
config = JsonUtils.Deserialize(result);
@@ -1007,7 +1007,7 @@ namespace ServiceLib.Handler
{
return -1;
}
- if (!Utils.IsNullOrEmpty(profileItem.security) && profileItem.security != Global.None)
+ if (Utils.IsNotEmpty(profileItem.security) && profileItem.security != Global.None)
{
profileItem.security = Global.None;
}
@@ -1045,7 +1045,7 @@ namespace ServiceLib.Handler
{
profileItem.configVersion = 2;
- if (!Utils.IsNullOrEmpty(profileItem.streamSecurity))
+ if (Utils.IsNotEmpty(profileItem.streamSecurity))
{
if (profileItem.streamSecurity != Global.StreamSecurity
&& profileItem.streamSecurity != Global.StreamSecurityReality)
@@ -1065,7 +1065,7 @@ namespace ServiceLib.Handler
}
}
- if (!Utils.IsNullOrEmpty(profileItem.network) && !Global.Networks.Contains(profileItem.network))
+ if (Utils.IsNotEmpty(profileItem.network) && !Global.Networks.Contains(profileItem.network))
{
profileItem.network = Global.DefaultNetwork;
}
@@ -1186,7 +1186,7 @@ namespace ServiceLib.Handler
string subFilter = string.Empty;
//remove sub items
- if (isSub && !Utils.IsNullOrEmpty(subid))
+ if (isSub && Utils.IsNotEmpty(subid))
{
RemoveServerViaSubid(config, subid, isSub);
subFilter = LazyConfig.Instance.GetSubItem(subid)?.filter ?? "";
@@ -1219,7 +1219,7 @@ namespace ServiceLib.Handler
}
//exist sub items
- if (isSub && !Utils.IsNullOrEmpty(subid))
+ if (isSub && Utils.IsNotEmpty(subid))
{
var existItem = lstOriSub?.FirstOrDefault(t => t.isSub == isSub
&& config.uiItem.enableUpdateSubOnlyRemarksExist ? t.remarks == profileItem.remarks : CompareProfileItem(t, profileItem, true));
@@ -1241,7 +1241,7 @@ namespace ServiceLib.Handler
}
}
//filter
- if (!Utils.IsNullOrEmpty(subFilter))
+ if (Utils.IsNotEmpty(subFilter))
{
if (!Regex.IsMatch(profileItem.remarks, subFilter))
{
@@ -1305,7 +1305,7 @@ namespace ServiceLib.Handler
}
if (lstProfiles != null && lstProfiles.Count > 0)
{
- if (isSub && !Utils.IsNullOrEmpty(subid))
+ if (isSub && Utils.IsNotEmpty(subid))
{
RemoveServerViaSubid(config, subid, isSub);
}
@@ -1361,7 +1361,7 @@ namespace ServiceLib.Handler
return -1;
}
- if (isSub && !Utils.IsNullOrEmpty(subid))
+ if (isSub && Utils.IsNotEmpty(subid))
{
RemoveServerViaSubid(config, subid, isSub);
}
@@ -1389,7 +1389,7 @@ namespace ServiceLib.Handler
return -1;
}
- if (isSub && !Utils.IsNullOrEmpty(subid))
+ if (isSub && Utils.IsNotEmpty(subid))
{
RemoveServerViaSubid(config, subid, isSub);
}
@@ -1421,7 +1421,7 @@ namespace ServiceLib.Handler
return -1;
}
List? lstOriSub = null;
- if (isSub && !Utils.IsNullOrEmpty(subid))
+ if (isSub && Utils.IsNotEmpty(subid))
{
lstOriSub = LazyConfig.Instance.ProfileItems(subid);
}
diff --git a/v2rayn/v2rayN/ServiceLib/Handler/CoreConfig/CoreConfigClash.cs b/v2rayn/v2rayN/ServiceLib/Handler/CoreConfig/CoreConfigClash.cs
index 9e84f8efd5..95647599ad 100644
--- a/v2rayn/v2rayN/ServiceLib/Handler/CoreConfig/CoreConfigClash.cs
+++ b/v2rayn/v2rayN/ServiceLib/Handler/CoreConfig/CoreConfigClash.cs
@@ -43,7 +43,7 @@
}
string addressFileName = node.address;
- if (string.IsNullOrEmpty(addressFileName))
+ if (Utils.IsNullOrEmpty(addressFileName))
{
msg = ResUI.FailedGetDefaultConfiguration;
return -1;
@@ -117,7 +117,7 @@
if (_config.tunModeItem.enableTun)
{
string tun = Utils.GetEmbedText(Global.ClashTunYaml);
- if (!string.IsNullOrEmpty(tun))
+ if (Utils.IsNotEmpty(tun))
{
var tunContent = YamlUtils.FromYaml>(tun);
if (tunContent != null)
diff --git a/v2rayn/v2rayN/ServiceLib/Handler/CoreConfig/CoreConfigSingbox.cs b/v2rayn/v2rayN/ServiceLib/Handler/CoreConfig/CoreConfigSingbox.cs
index 86d835b666..69836040de 100644
--- a/v2rayn/v2rayN/ServiceLib/Handler/CoreConfig/CoreConfigSingbox.cs
+++ b/v2rayn/v2rayN/ServiceLib/Handler/CoreConfig/CoreConfigSingbox.cs
@@ -370,7 +370,7 @@ namespace ServiceLib.Handler.CoreConfig
}
string addressFileName = node.address;
- if (string.IsNullOrEmpty(addressFileName))
+ if (Utils.IsNullOrEmpty(addressFileName))
{
msg = ResUI.FailedGetDefaultConfiguration;
return -1;
@@ -489,7 +489,7 @@ namespace ServiceLib.Handler.CoreConfig
if (_config.routingBasicItem.enableRoutingAdvanced)
{
var routing = ConfigHandler.GetDefaultRouting(_config);
- if (!Utils.IsNullOrEmpty(routing.domainStrategy4Singbox))
+ if (Utils.IsNotEmpty(routing.domainStrategy4Singbox))
{
inbound.domain_strategy = routing.domainStrategy4Singbox;
}
@@ -512,7 +512,7 @@ namespace ServiceLib.Handler.CoreConfig
singboxConfig.inbounds.Add(inbound4);
//auth
- if (!Utils.IsNullOrEmpty(_config.inbound[0].user) && !Utils.IsNullOrEmpty(_config.inbound[0].pass))
+ if (Utils.IsNotEmpty(_config.inbound[0].user) && Utils.IsNotEmpty(_config.inbound[0].pass))
{
inbound3.users = new() { new() { username = _config.inbound[0].user, password = _config.inbound[0].pass } };
inbound4.users = new() { new() { username = _config.inbound[0].user, password = _config.inbound[0].pass } };
@@ -604,8 +604,8 @@ namespace ServiceLib.Handler.CoreConfig
case EConfigType.Socks:
{
outbound.version = "5";
- if (!Utils.IsNullOrEmpty(node.security)
- && !Utils.IsNullOrEmpty(node.id))
+ if (Utils.IsNotEmpty(node.security)
+ && Utils.IsNotEmpty(node.id))
{
outbound.username = node.security;
outbound.password = node.id;
@@ -614,8 +614,8 @@ namespace ServiceLib.Handler.CoreConfig
}
case EConfigType.Http:
{
- if (!Utils.IsNullOrEmpty(node.security)
- && !Utils.IsNullOrEmpty(node.id))
+ if (Utils.IsNotEmpty(node.security)
+ && Utils.IsNotEmpty(node.id))
{
outbound.username = node.security;
outbound.password = node.id;
@@ -649,7 +649,7 @@ namespace ServiceLib.Handler.CoreConfig
{
outbound.password = node.id;
- if (!Utils.IsNullOrEmpty(node.path))
+ if (Utils.IsNotEmpty(node.path))
{
outbound.obfs = new()
{
@@ -695,7 +695,7 @@ namespace ServiceLib.Handler.CoreConfig
{
try
{
- if (_config.coreBasicItem.muxEnabled && !Utils.IsNullOrEmpty(_config.mux4SboxItem.protocol))
+ if (_config.coreBasicItem.muxEnabled && Utils.IsNotEmpty(_config.mux4SboxItem.protocol))
{
var mux = new Multiplex4Sbox()
{
@@ -721,11 +721,11 @@ namespace ServiceLib.Handler.CoreConfig
if (node.streamSecurity == Global.StreamSecurityReality || node.streamSecurity == Global.StreamSecurity)
{
var server_name = string.Empty;
- if (!Utils.IsNullOrEmpty(node.sni))
+ if (Utils.IsNotEmpty(node.sni))
{
server_name = node.sni;
}
- else if (!Utils.IsNullOrEmpty(node.requestHost))
+ else if (Utils.IsNotEmpty(node.requestHost))
{
server_name = Utils.String2List(node.requestHost)[0];
}
@@ -736,7 +736,7 @@ namespace ServiceLib.Handler.CoreConfig
insecure = Utils.ToBool(node.allowInsecure.IsNullOrEmpty() ? _config.coreBasicItem.defAllowInsecure.ToString().ToLower() : node.allowInsecure),
alpn = node.GetAlpn(),
};
- if (!Utils.IsNullOrEmpty(node.fingerprint))
+ if (Utils.IsNotEmpty(node.fingerprint))
{
tls.utls = new Utls4Sbox()
{
@@ -798,7 +798,7 @@ namespace ServiceLib.Handler.CoreConfig
case nameof(ETransport.ws):
transport.type = nameof(ETransport.ws);
transport.path = Utils.IsNullOrEmpty(node.path) ? null : node.path;
- if (!Utils.IsNullOrEmpty(node.requestHost))
+ if (Utils.IsNotEmpty(node.requestHost))
{
transport.headers = new()
{
@@ -1020,7 +1020,7 @@ namespace ServiceLib.Handler.CoreConfig
outbound = item.outboundTag,
};
- if (!Utils.IsNullOrEmpty(item.port))
+ if (Utils.IsNotEmpty(item.port))
{
if (item.port.Contains("-"))
{
@@ -1031,7 +1031,7 @@ namespace ServiceLib.Handler.CoreConfig
rule.port = new List { Utils.ToInt(item.port) };
}
}
- if (!Utils.IsNullOrEmpty(item.network))
+ if (Utils.IsNotEmpty(item.network))
{
rule.network = Utils.String2List(item.network);
}
@@ -1221,7 +1221,7 @@ namespace ServiceLib.Handler.CoreConfig
});
var lstDomain = singboxConfig.outbounds
- .Where(t => !Utils.IsNullOrEmpty(t.server) && Utils.IsDomain(t.server))
+ .Where(t => Utils.IsNotEmpty(t.server) && Utils.IsDomain(t.server))
.Select(t => t.server)
.Distinct()
.ToList();
@@ -1324,10 +1324,10 @@ namespace ServiceLib.Handler.CoreConfig
if (_config.routingBasicItem.enableRoutingAdvanced)
{
var routing = ConfigHandler.GetDefaultRouting(_config);
- if (!Utils.IsNullOrEmpty(routing.customRulesetPath4Singbox))
+ if (Utils.IsNotEmpty(routing.customRulesetPath4Singbox))
{
var result = Utils.LoadResource(routing.customRulesetPath4Singbox);
- if (!Utils.IsNullOrEmpty(result))
+ if (Utils.IsNotEmpty(result))
{
customRulesets = (JsonUtils.Deserialize>(result) ?? [])
.Where(t => t.tag != null)
diff --git a/v2rayn/v2rayN/ServiceLib/Handler/CoreConfig/CoreConfigV2ray.cs b/v2rayn/v2rayN/ServiceLib/Handler/CoreConfig/CoreConfigV2ray.cs
index e7239cb708..15e5bcc0e7 100644
--- a/v2rayn/v2rayN/ServiceLib/Handler/CoreConfig/CoreConfigV2ray.cs
+++ b/v2rayn/v2rayN/ServiceLib/Handler/CoreConfig/CoreConfigV2ray.cs
@@ -392,7 +392,7 @@ namespace ServiceLib.Handler.CoreConfig
v2rayConfig.inbounds.Add(inbound4);
//auth
- if (!Utils.IsNullOrEmpty(_config.inbound[0].user) && !Utils.IsNullOrEmpty(_config.inbound[0].pass))
+ if (Utils.IsNotEmpty(_config.inbound[0].user) && Utils.IsNotEmpty(_config.inbound[0].pass))
{
inbound3.settings.auth = "password";
inbound3.settings.accounts = new List { new AccountsItem4Ray() { user = _config.inbound[0].user, pass = _config.inbound[0].pass } };
@@ -453,7 +453,7 @@ namespace ServiceLib.Handler.CoreConfig
var routing = ConfigHandler.GetDefaultRouting(_config);
if (routing != null)
{
- if (!Utils.IsNullOrEmpty(routing.domainStrategy))
+ if (Utils.IsNotEmpty(routing.domainStrategy))
{
v2rayConfig.routing.domainStrategy = routing.domainStrategy;
}
@@ -550,7 +550,7 @@ namespace ServiceLib.Handler.CoreConfig
}
if (!hasDomainIp)
{
- if (!Utils.IsNullOrEmpty(rule.port)
+ if (Utils.IsNotEmpty(rule.port)
|| rule.protocol?.Count > 0
|| rule.inboundTag?.Count > 0
)
@@ -660,8 +660,8 @@ namespace ServiceLib.Handler.CoreConfig
serversItem.method = null;
serversItem.password = null;
- if (!Utils.IsNullOrEmpty(node.security)
- && !Utils.IsNullOrEmpty(node.id))
+ if (Utils.IsNotEmpty(node.security)
+ && Utils.IsNotEmpty(node.id))
{
SocksUsersItem4Ray socksUsersItem = new()
{
@@ -712,7 +712,7 @@ namespace ServiceLib.Handler.CoreConfig
if (node.streamSecurity == Global.StreamSecurityReality
|| node.streamSecurity == Global.StreamSecurity)
{
- if (!Utils.IsNullOrEmpty(node.flow))
+ if (Utils.IsNotEmpty(node.flow))
{
usersItem.flow = node.flow;
@@ -818,11 +818,11 @@ namespace ServiceLib.Handler.CoreConfig
alpn = node.GetAlpn(),
fingerprint = node.fingerprint.IsNullOrEmpty() ? _config.coreBasicItem.defFingerprint : node.fingerprint
};
- if (!Utils.IsNullOrEmpty(sni))
+ if (Utils.IsNotEmpty(sni))
{
tlsSettings.serverName = sni;
}
- else if (!Utils.IsNullOrEmpty(host))
+ else if (Utils.IsNotEmpty(host))
{
tlsSettings.serverName = Utils.String2List(host)[0];
}
@@ -867,7 +867,7 @@ namespace ServiceLib.Handler.CoreConfig
{
type = node.headerType
};
- if (!Utils.IsNullOrEmpty(node.path))
+ if (Utils.IsNotEmpty(node.path))
{
kcpSettings.seed = node.path;
}
@@ -878,15 +878,15 @@ namespace ServiceLib.Handler.CoreConfig
WsSettings4Ray wsSettings = new();
wsSettings.headers = new Headers4Ray();
string path = node.path;
- if (!Utils.IsNullOrEmpty(host))
+ if (Utils.IsNotEmpty(host))
{
wsSettings.headers.Host = host;
}
- if (!Utils.IsNullOrEmpty(path))
+ if (Utils.IsNotEmpty(path))
{
wsSettings.path = path;
}
- if (!Utils.IsNullOrEmpty(useragent))
+ if (Utils.IsNotEmpty(useragent))
{
wsSettings.headers.UserAgent = useragent;
}
@@ -897,11 +897,11 @@ namespace ServiceLib.Handler.CoreConfig
case nameof(ETransport.httpupgrade):
HttpupgradeSettings4Ray httpupgradeSettings = new();
- if (!Utils.IsNullOrEmpty(node.path))
+ if (Utils.IsNotEmpty(node.path))
{
httpupgradeSettings.path = node.path;
}
- if (!Utils.IsNullOrEmpty(host))
+ if (Utils.IsNotEmpty(host))
{
httpupgradeSettings.host = host;
}
@@ -916,11 +916,11 @@ namespace ServiceLib.Handler.CoreConfig
maxConcurrentUploads = 10
};
- if (!Utils.IsNullOrEmpty(node.path))
+ if (Utils.IsNotEmpty(node.path))
{
splithttpSettings.path = node.path;
}
- if (!Utils.IsNullOrEmpty(host))
+ if (Utils.IsNotEmpty(host))
{
splithttpSettings.host = host;
}
@@ -931,7 +931,7 @@ namespace ServiceLib.Handler.CoreConfig
case nameof(ETransport.h2):
HttpSettings4Ray httpSettings = new();
- if (!Utils.IsNullOrEmpty(host))
+ if (Utils.IsNotEmpty(host))
{
httpSettings.host = Utils.String2List(host);
}
@@ -954,7 +954,7 @@ namespace ServiceLib.Handler.CoreConfig
streamSettings.quicSettings = quicsettings;
if (node.streamSecurity == Global.StreamSecurity)
{
- if (!Utils.IsNullOrEmpty(sni))
+ if (Utils.IsNotEmpty(sni))
{
streamSettings.tlsSettings.serverName = sni;
}
@@ -1000,7 +1000,7 @@ namespace ServiceLib.Handler.CoreConfig
request = request.Replace("$requestUserAgent$", $"\"{useragent}\"");
//Path
string pathHttp = @"/";
- if (!Utils.IsNullOrEmpty(node.path))
+ if (Utils.IsNotEmpty(node.path))
{
string[] arrPath = node.path.Split(',');
pathHttp = string.Join("\",\"", arrPath);
@@ -1033,7 +1033,7 @@ namespace ServiceLib.Handler.CoreConfig
}
//Outbound Freedom domainStrategy
- if (!Utils.IsNullOrEmpty(domainStrategy4Freedom))
+ if (Utils.IsNotEmpty(domainStrategy4Freedom))
{
var outbound = v2rayConfig.outbounds[1];
outbound.settings.domainStrategy = domainStrategy4Freedom;
@@ -1157,7 +1157,7 @@ namespace ServiceLib.Handler.CoreConfig
{
//fragment proxy
if (_config.coreBasicItem.enableFragment
- && !Utils.IsNullOrEmpty(v2rayConfig.outbounds[0].streamSettings?.security))
+ && Utils.IsNotEmpty(v2rayConfig.outbounds[0].streamSettings?.security))
{
var fragmentOutbound = new Outbounds4Ray
{
diff --git a/v2rayn/v2rayN/ServiceLib/Handler/CoreHandler.cs b/v2rayn/v2rayN/ServiceLib/Handler/CoreHandler.cs
index bb97d37599..d17b3cdbba 100644
--- a/v2rayn/v2rayN/ServiceLib/Handler/CoreHandler.cs
+++ b/v2rayn/v2rayN/ServiceLib/Handler/CoreHandler.cs
@@ -302,7 +302,7 @@ namespace ServiceLib.Handler
{
proc.OutputDataReceived += (sender, e) =>
{
- if (!Utils.IsNullOrEmpty(e.Data))
+ if (Utils.IsNotEmpty(e.Data))
{
string msg = e.Data + Environment.NewLine;
ShowMsg(false, msg);
@@ -310,7 +310,7 @@ namespace ServiceLib.Handler
};
proc.ErrorDataReceived += (sender, e) =>
{
- if (!Utils.IsNullOrEmpty(e.Data))
+ if (Utils.IsNotEmpty(e.Data))
{
string msg = e.Data + Environment.NewLine;
ShowMsg(false, msg);
diff --git a/v2rayn/v2rayN/ServiceLib/Handler/DownloadHandler.cs b/v2rayn/v2rayN/ServiceLib/Handler/DownloadHandler.cs
index d2811a4e80..c05b992874 100644
--- a/v2rayn/v2rayN/ServiceLib/Handler/DownloadHandler.cs
+++ b/v2rayn/v2rayN/ServiceLib/Handler/DownloadHandler.cs
@@ -117,7 +117,7 @@ namespace ServiceLib.Handler
try
{
var result1 = await DownloadStringAsync(url, blProxy, userAgent);
- if (!Utils.IsNullOrEmpty(result1))
+ if (Utils.IsNotEmpty(result1))
{
return result1;
}
@@ -135,7 +135,7 @@ namespace ServiceLib.Handler
try
{
var result2 = await DownloadStringViaDownloader(url, blProxy, userAgent);
- if (!Utils.IsNullOrEmpty(result2))
+ if (Utils.IsNotEmpty(result2))
{
return result2;
}
@@ -155,7 +155,7 @@ namespace ServiceLib.Handler
using var wc = new WebClient();
wc.Proxy = GetWebProxy(blProxy);
var result3 = await wc.DownloadStringTaskAsync(url);
- if (!Utils.IsNullOrEmpty(result3))
+ if (Utils.IsNotEmpty(result3))
{
return result3;
}
@@ -197,7 +197,7 @@ namespace ServiceLib.Handler
Uri uri = new(url);
//Authorization Header
- if (!Utils.IsNullOrEmpty(uri.UserInfo))
+ if (Utils.IsNotEmpty(uri.UserInfo))
{
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", Utils.Base64Encode(uri.UserInfo));
}
diff --git a/v2rayn/v2rayN/ServiceLib/Handler/Fmt/BaseFmt.cs b/v2rayn/v2rayN/ServiceLib/Handler/Fmt/BaseFmt.cs
index 5205067bab..3372cfc542 100644
--- a/v2rayn/v2rayN/ServiceLib/Handler/Fmt/BaseFmt.cs
+++ b/v2rayn/v2rayN/ServiceLib/Handler/Fmt/BaseFmt.cs
@@ -16,12 +16,12 @@ namespace ServiceLib.Handler.Fmt
protected static int GetStdTransport(ProfileItem item, string? securityDef, ref Dictionary dicQuery)
{
- if (!Utils.IsNullOrEmpty(item.flow))
+ if (Utils.IsNotEmpty(item.flow))
{
dicQuery.Add("flow", item.flow);
}
- if (!Utils.IsNullOrEmpty(item.streamSecurity))
+ if (Utils.IsNotEmpty(item.streamSecurity))
{
dicQuery.Add("security", item.streamSecurity);
}
@@ -32,27 +32,27 @@ namespace ServiceLib.Handler.Fmt
dicQuery.Add("security", securityDef);
}
}
- if (!Utils.IsNullOrEmpty(item.sni))
+ if (Utils.IsNotEmpty(item.sni))
{
dicQuery.Add("sni", item.sni);
}
- if (!Utils.IsNullOrEmpty(item.alpn))
+ if (Utils.IsNotEmpty(item.alpn))
{
dicQuery.Add("alpn", Utils.UrlEncode(item.alpn));
}
- if (!Utils.IsNullOrEmpty(item.fingerprint))
+ if (Utils.IsNotEmpty(item.fingerprint))
{
dicQuery.Add("fp", Utils.UrlEncode(item.fingerprint));
}
- if (!Utils.IsNullOrEmpty(item.publicKey))
+ if (Utils.IsNotEmpty(item.publicKey))
{
dicQuery.Add("pbk", Utils.UrlEncode(item.publicKey));
}
- if (!Utils.IsNullOrEmpty(item.shortId))
+ if (Utils.IsNotEmpty(item.shortId))
{
dicQuery.Add("sid", Utils.UrlEncode(item.shortId));
}
- if (!Utils.IsNullOrEmpty(item.spiderX))
+ if (Utils.IsNotEmpty(item.spiderX))
{
dicQuery.Add("spx", Utils.UrlEncode(item.spiderX));
}
@@ -61,21 +61,21 @@ namespace ServiceLib.Handler.Fmt
dicQuery.Add("allowInsecure", "1");
}
- dicQuery.Add("type", !Utils.IsNullOrEmpty(item.network) ? item.network : nameof(ETransport.tcp));
+ dicQuery.Add("type", Utils.IsNotEmpty(item.network) ? item.network : nameof(ETransport.tcp));
switch (item.network)
{
case nameof(ETransport.tcp):
- dicQuery.Add("headerType", !Utils.IsNullOrEmpty(item.headerType) ? item.headerType : Global.None);
- if (!Utils.IsNullOrEmpty(item.requestHost))
+ dicQuery.Add("headerType", Utils.IsNotEmpty(item.headerType) ? item.headerType : Global.None);
+ if (Utils.IsNotEmpty(item.requestHost))
{
dicQuery.Add("host", Utils.UrlEncode(item.requestHost));
}
break;
case nameof(ETransport.kcp):
- dicQuery.Add("headerType", !Utils.IsNullOrEmpty(item.headerType) ? item.headerType : Global.None);
- if (!Utils.IsNullOrEmpty(item.path))
+ dicQuery.Add("headerType", Utils.IsNotEmpty(item.headerType) ? item.headerType : Global.None);
+ if (Utils.IsNotEmpty(item.path))
{
dicQuery.Add("seed", Utils.UrlEncode(item.path));
}
@@ -84,11 +84,11 @@ namespace ServiceLib.Handler.Fmt
case nameof(ETransport.ws):
case nameof(ETransport.httpupgrade):
case nameof(ETransport.splithttp):
- if (!Utils.IsNullOrEmpty(item.requestHost))
+ if (Utils.IsNotEmpty(item.requestHost))
{
dicQuery.Add("host", Utils.UrlEncode(item.requestHost));
}
- if (!Utils.IsNullOrEmpty(item.path))
+ if (Utils.IsNotEmpty(item.path))
{
dicQuery.Add("path", Utils.UrlEncode(item.path));
}
@@ -97,24 +97,24 @@ namespace ServiceLib.Handler.Fmt
case nameof(ETransport.http):
case nameof(ETransport.h2):
dicQuery["type"] = nameof(ETransport.http);
- if (!Utils.IsNullOrEmpty(item.requestHost))
+ if (Utils.IsNotEmpty(item.requestHost))
{
dicQuery.Add("host", Utils.UrlEncode(item.requestHost));
}
- if (!Utils.IsNullOrEmpty(item.path))
+ if (Utils.IsNotEmpty(item.path))
{
dicQuery.Add("path", Utils.UrlEncode(item.path));
}
break;
case nameof(ETransport.quic):
- dicQuery.Add("headerType", !Utils.IsNullOrEmpty(item.headerType) ? item.headerType : Global.None);
+ dicQuery.Add("headerType", Utils.IsNotEmpty(item.headerType) ? item.headerType : Global.None);
dicQuery.Add("quicSecurity", Utils.UrlEncode(item.requestHost));
dicQuery.Add("key", Utils.UrlEncode(item.path));
break;
case nameof(ETransport.grpc):
- if (!Utils.IsNullOrEmpty(item.path))
+ if (Utils.IsNotEmpty(item.path))
{
dicQuery.Add("authority", Utils.UrlEncode(item.requestHost));
dicQuery.Add("serviceName", Utils.UrlEncode(item.path));
diff --git a/v2rayn/v2rayN/ServiceLib/Handler/Fmt/Hysteria2Fmt.cs b/v2rayn/v2rayN/ServiceLib/Handler/Fmt/Hysteria2Fmt.cs
index 145a907e80..5f877858ef 100644
--- a/v2rayn/v2rayN/ServiceLib/Handler/Fmt/Hysteria2Fmt.cs
+++ b/v2rayn/v2rayN/ServiceLib/Handler/Fmt/Hysteria2Fmt.cs
@@ -31,20 +31,20 @@
string url = string.Empty;
string remark = string.Empty;
- if (!Utils.IsNullOrEmpty(item.remarks))
+ if (Utils.IsNotEmpty(item.remarks))
{
remark = "#" + Utils.UrlEncode(item.remarks);
}
var dicQuery = new Dictionary();
- if (!Utils.IsNullOrEmpty(item.sni))
+ if (Utils.IsNotEmpty(item.sni))
{
dicQuery.Add("sni", item.sni);
}
- if (!Utils.IsNullOrEmpty(item.alpn))
+ if (Utils.IsNotEmpty(item.alpn))
{
dicQuery.Add("alpn", Utils.UrlEncode(item.alpn));
}
- if (!Utils.IsNullOrEmpty(item.path))
+ if (Utils.IsNotEmpty(item.path))
{
dicQuery.Add("obfs", "salamander");
dicQuery.Add("obfs-password", Utils.UrlEncode(item.path));
diff --git a/v2rayn/v2rayN/ServiceLib/Handler/Fmt/ShadowsocksFmt.cs b/v2rayn/v2rayN/ServiceLib/Handler/Fmt/ShadowsocksFmt.cs
index 98460640c0..93c387f674 100644
--- a/v2rayn/v2rayN/ServiceLib/Handler/Fmt/ShadowsocksFmt.cs
+++ b/v2rayn/v2rayN/ServiceLib/Handler/Fmt/ShadowsocksFmt.cs
@@ -30,7 +30,7 @@ namespace ServiceLib.Handler.Fmt
string url = string.Empty;
string remark = string.Empty;
- if (!Utils.IsNullOrEmpty(item.remarks))
+ if (Utils.IsNotEmpty(item.remarks))
{
remark = "#" + Utils.UrlEncode(item.remarks);
}
@@ -59,7 +59,7 @@ namespace ServiceLib.Handler.Fmt
ProfileItem item = new();
var base64 = match.Groups["base64"].Value.TrimEnd('/');
var tag = match.Groups["tag"].Value;
- if (!Utils.IsNullOrEmpty(tag))
+ if (Utils.IsNotEmpty(tag))
{
item.remarks = Utils.UrlDecode(tag);
}
@@ -128,7 +128,7 @@ namespace ServiceLib.Handler.Fmt
{
//obfs-host exists
var obfsHost = queryParameters["plugin"]?.Split(';').FirstOrDefault(t => t.Contains("obfs-host"));
- if (queryParameters["plugin"].Contains("obfs=http") && !Utils.IsNullOrEmpty(obfsHost))
+ if (queryParameters["plugin"].Contains("obfs=http") && Utils.IsNotEmpty(obfsHost))
{
obfsHost = obfsHost?.Replace("obfs-host=", "");
item.network = Global.DefaultNetwork;
diff --git a/v2rayn/v2rayN/ServiceLib/Handler/Fmt/SocksFmt.cs b/v2rayn/v2rayN/ServiceLib/Handler/Fmt/SocksFmt.cs
index de5ef5c866..aab73da9c3 100644
--- a/v2rayn/v2rayN/ServiceLib/Handler/Fmt/SocksFmt.cs
+++ b/v2rayn/v2rayN/ServiceLib/Handler/Fmt/SocksFmt.cs
@@ -28,7 +28,7 @@
string url = string.Empty;
string remark = string.Empty;
- if (!Utils.IsNullOrEmpty(item.remarks))
+ if (Utils.IsNotEmpty(item.remarks))
{
remark = "#" + Utils.UrlEncode(item.remarks);
}
diff --git a/v2rayn/v2rayN/ServiceLib/Handler/Fmt/TrojanFmt.cs b/v2rayn/v2rayN/ServiceLib/Handler/Fmt/TrojanFmt.cs
index d32e1f56b4..51f08524ac 100644
--- a/v2rayn/v2rayN/ServiceLib/Handler/Fmt/TrojanFmt.cs
+++ b/v2rayn/v2rayN/ServiceLib/Handler/Fmt/TrojanFmt.cs
@@ -30,7 +30,7 @@
string url = string.Empty;
string remark = string.Empty;
- if (!Utils.IsNullOrEmpty(item.remarks))
+ if (Utils.IsNotEmpty(item.remarks))
{
remark = "#" + Utils.UrlEncode(item.remarks);
}
diff --git a/v2rayn/v2rayN/ServiceLib/Handler/Fmt/TuicFmt.cs b/v2rayn/v2rayN/ServiceLib/Handler/Fmt/TuicFmt.cs
index 2f473681f5..02268e6e66 100644
--- a/v2rayn/v2rayN/ServiceLib/Handler/Fmt/TuicFmt.cs
+++ b/v2rayn/v2rayN/ServiceLib/Handler/Fmt/TuicFmt.cs
@@ -36,16 +36,16 @@
string url = string.Empty;
string remark = string.Empty;
- if (!Utils.IsNullOrEmpty(item.remarks))
+ if (Utils.IsNotEmpty(item.remarks))
{
remark = "#" + Utils.UrlEncode(item.remarks);
}
var dicQuery = new Dictionary();
- if (!Utils.IsNullOrEmpty(item.sni))
+ if (Utils.IsNotEmpty(item.sni))
{
dicQuery.Add("sni", item.sni);
}
- if (!Utils.IsNullOrEmpty(item.alpn))
+ if (Utils.IsNotEmpty(item.alpn))
{
dicQuery.Add("alpn", Utils.UrlEncode(item.alpn));
}
diff --git a/v2rayn/v2rayN/ServiceLib/Handler/Fmt/VLESSFmt.cs b/v2rayn/v2rayN/ServiceLib/Handler/Fmt/VLESSFmt.cs
index f4d3b570b4..fdcc34d33c 100644
--- a/v2rayn/v2rayN/ServiceLib/Handler/Fmt/VLESSFmt.cs
+++ b/v2rayn/v2rayN/ServiceLib/Handler/Fmt/VLESSFmt.cs
@@ -33,12 +33,12 @@
string url = string.Empty;
string remark = string.Empty;
- if (!Utils.IsNullOrEmpty(item.remarks))
+ if (Utils.IsNotEmpty(item.remarks))
{
remark = "#" + Utils.UrlEncode(item.remarks);
}
var dicQuery = new Dictionary();
- if (!Utils.IsNullOrEmpty(item.security))
+ if (Utils.IsNotEmpty(item.security))
{
dicQuery.Add("encryption", item.security);
}
diff --git a/v2rayn/v2rayN/ServiceLib/Handler/Fmt/VmessFmt.cs b/v2rayn/v2rayN/ServiceLib/Handler/Fmt/VmessFmt.cs
index 340ec04c27..698b4804d3 100644
--- a/v2rayn/v2rayN/ServiceLib/Handler/Fmt/VmessFmt.cs
+++ b/v2rayn/v2rayN/ServiceLib/Handler/Fmt/VmessFmt.cs
@@ -78,12 +78,12 @@
item.alterId = Utils.ToInt(vmessQRCode.aid);
item.security = Utils.ToString(vmessQRCode.scy);
- item.security = !Utils.IsNullOrEmpty(vmessQRCode.scy) ? vmessQRCode.scy : Global.DefaultSecurity;
- if (!Utils.IsNullOrEmpty(vmessQRCode.net))
+ item.security = Utils.IsNotEmpty(vmessQRCode.scy) ? vmessQRCode.scy : Global.DefaultSecurity;
+ if (Utils.IsNotEmpty(vmessQRCode.net))
{
item.network = vmessQRCode.net;
}
- if (!Utils.IsNullOrEmpty(vmessQRCode.type))
+ if (Utils.IsNotEmpty(vmessQRCode.type))
{
item.headerType = vmessQRCode.type;
}
diff --git a/v2rayn/v2rayN/ServiceLib/Handler/Fmt/WireguardFmt.cs b/v2rayn/v2rayN/ServiceLib/Handler/Fmt/WireguardFmt.cs
index 571a38ab45..aaac166c45 100644
--- a/v2rayn/v2rayN/ServiceLib/Handler/Fmt/WireguardFmt.cs
+++ b/v2rayn/v2rayN/ServiceLib/Handler/Fmt/WireguardFmt.cs
@@ -34,25 +34,25 @@
string url = string.Empty;
string remark = string.Empty;
- if (!Utils.IsNullOrEmpty(item.remarks))
+ if (Utils.IsNotEmpty(item.remarks))
{
remark = "#" + Utils.UrlEncode(item.remarks);
}
var dicQuery = new Dictionary();
- if (!Utils.IsNullOrEmpty(item.publicKey))
+ if (Utils.IsNotEmpty(item.publicKey))
{
dicQuery.Add("publickey", Utils.UrlEncode(item.publicKey));
}
- if (!Utils.IsNullOrEmpty(item.path))
+ if (Utils.IsNotEmpty(item.path))
{
dicQuery.Add("reserved", Utils.UrlEncode(item.path));
}
- if (!Utils.IsNullOrEmpty(item.requestHost))
+ if (Utils.IsNotEmpty(item.requestHost))
{
dicQuery.Add("address", Utils.UrlEncode(item.requestHost));
}
- if (!Utils.IsNullOrEmpty(item.shortId))
+ if (Utils.IsNotEmpty(item.shortId))
{
dicQuery.Add("mtu", Utils.UrlEncode(item.shortId));
}
diff --git a/v2rayn/v2rayN/ServiceLib/Handler/LazyConfig.cs b/v2rayn/v2rayN/ServiceLib/Handler/LazyConfig.cs
index 55b7be8893..4830ba92b0 100644
--- a/v2rayn/v2rayN/ServiceLib/Handler/LazyConfig.cs
+++ b/v2rayn/v2rayN/ServiceLib/Handler/LazyConfig.cs
@@ -104,11 +104,11 @@
from ProfileItem a
left join SubItem b on a.subid = b.id
where 1=1 ";
- if (!Utils.IsNullOrEmpty(subid))
+ if (Utils.IsNotEmpty(subid))
{
sql += $" and a.subid = '{subid}'";
}
- if (!Utils.IsNullOrEmpty(filter))
+ if (Utils.IsNotEmpty(filter))
{
if (filter.Contains('\''))
{
diff --git a/v2rayn/v2rayN/ServiceLib/Handler/ProfileExHandler.cs b/v2rayn/v2rayN/ServiceLib/Handler/ProfileExHandler.cs
index 460692af95..adc4e3d425 100644
--- a/v2rayn/v2rayN/ServiceLib/Handler/ProfileExHandler.cs
+++ b/v2rayn/v2rayN/ServiceLib/Handler/ProfileExHandler.cs
@@ -35,7 +35,7 @@ namespace ServiceLib.Handler
private void IndexIdEnqueue(string indexId)
{
- if (!Utils.IsNullOrEmpty(indexId) && !_queIndexIds.Contains(indexId))
+ if (Utils.IsNotEmpty(indexId) && !_queIndexIds.Contains(indexId))
{
_queIndexIds.Enqueue(indexId);
}
diff --git a/v2rayn/v2rayN/ServiceLib/Handler/Statistics/StatisticsSingbox.cs b/v2rayn/v2rayN/ServiceLib/Handler/Statistics/StatisticsSingbox.cs
index b4627cafec..b26fd6b13f 100644
--- a/v2rayn/v2rayN/ServiceLib/Handler/Statistics/StatisticsSingbox.cs
+++ b/v2rayn/v2rayN/ServiceLib/Handler/Statistics/StatisticsSingbox.cs
@@ -88,7 +88,7 @@ namespace ServiceLib.Handler.Statistics
while (!res.CloseStatus.HasValue)
{
var result = Encoding.UTF8.GetString(buffer, 0, res.Count);
- if (!Utils.IsNullOrEmpty(result))
+ if (Utils.IsNotEmpty(result))
{
ParseOutput(result, out ulong up, out ulong down);
diff --git a/v2rayn/v2rayN/ServiceLib/Handler/UpdateHandler.cs b/v2rayn/v2rayN/ServiceLib/Handler/UpdateHandler.cs
index 11e7787457..dc097966dc 100644
--- a/v2rayn/v2rayN/ServiceLib/Handler/UpdateHandler.cs
+++ b/v2rayn/v2rayN/ServiceLib/Handler/UpdateHandler.cs
@@ -143,7 +143,7 @@ namespace ServiceLib.Handler
string url = item.url.TrimEx();
string userAgent = item.userAgent.TrimEx();
string hashCode = $"{item.remarks}->";
- if (Utils.IsNullOrEmpty(id) || Utils.IsNullOrEmpty(url) || (!Utils.IsNullOrEmpty(subId) && item.id != subId))
+ if (Utils.IsNullOrEmpty(id) || Utils.IsNullOrEmpty(url) || (Utils.IsNotEmpty(subId) && item.id != subId))
{
//_updateFunc(false, $"{hashCode}{ResUI.MsgNoValidSubscription}");
continue;
@@ -169,7 +169,7 @@ namespace ServiceLib.Handler
//one url
url = Utils.GetPunycode(url);
//convert
- if (!Utils.IsNullOrEmpty(item.convertTarget))
+ if (Utils.IsNotEmpty(item.convertTarget))
{
var subConvertUrl = Utils.IsNullOrEmpty(config.constItem.subConvertUrl) ? Global.SubConvertUrls.FirstOrDefault() : config.constItem.subConvertUrl;
url = string.Format(subConvertUrl!, Utils.UrlEncode(url));
@@ -189,9 +189,9 @@ namespace ServiceLib.Handler
}
//more url
- if (Utils.IsNullOrEmpty(item.convertTarget) && !Utils.IsNullOrEmpty(item.moreUrl.TrimEx()))
+ if (Utils.IsNullOrEmpty(item.convertTarget) && Utils.IsNotEmpty(item.moreUrl.TrimEx()))
{
- if (!Utils.IsNullOrEmpty(result) && Utils.IsBase64String(result!))
+ if (Utils.IsNotEmpty(result) && Utils.IsBase64String(result!))
{
result = Utils.Base64Decode(result);
}
@@ -210,7 +210,7 @@ namespace ServiceLib.Handler
{
result2 = await downloadHandle.TryDownloadString(url2, false, userAgent);
}
- if (!Utils.IsNullOrEmpty(result2))
+ if (Utils.IsNotEmpty(result2))
{
if (Utils.IsBase64String(result2!))
{
@@ -277,7 +277,7 @@ namespace ServiceLib.Handler
var url = coreInfo?.coreReleaseApiUrl;
var result = await downloadHandle.DownloadStringAsync(url, true, Global.AppName);
- if (!Utils.IsNullOrEmpty(result))
+ if (Utils.IsNotEmpty(result))
{
return await ParseDownloadUrl(type, result, preRelease);
}
diff --git a/v2rayn/v2rayN/ServiceLib/Resx/ResUI.Designer.cs b/v2rayn/v2rayN/ServiceLib/Resx/ResUI.Designer.cs
index 7248e78911..edb0a9d92e 100644
--- a/v2rayn/v2rayN/ServiceLib/Resx/ResUI.Designer.cs
+++ b/v2rayn/v2rayN/ServiceLib/Resx/ResUI.Designer.cs
@@ -105,6 +105,15 @@ namespace ServiceLib.Resx {
}
}
+ ///
+ /// 查找类似 Host filter 的本地化字符串。
+ ///
+ public static string ConnectionsHostFilterTitle {
+ get {
+ return ResourceManager.GetString("ConnectionsHostFilterTitle", resourceCulture);
+ }
+ }
+
///
/// 查找类似 Note that custom configuration relies entirely on your own configuration and does not work with all settings. If you want to use the system proxy, please modify the listening port manually. 的本地化字符串。
///
diff --git a/v2rayn/v2rayN/ServiceLib/Resx/ResUI.resx b/v2rayn/v2rayN/ServiceLib/Resx/ResUI.resx
index 2d51cec7e4..c9e7d71b02 100644
--- a/v2rayn/v2rayN/ServiceLib/Resx/ResUI.resx
+++ b/v2rayn/v2rayN/ServiceLib/Resx/ResUI.resx
@@ -1318,4 +1318,7 @@
Invalid backup file
+
+ Host filter
+
\ No newline at end of file
diff --git a/v2rayn/v2rayN/ServiceLib/Resx/ResUI.zh-Hans.resx b/v2rayn/v2rayN/ServiceLib/Resx/ResUI.zh-Hans.resx
index c7ae08e20d..b88be0c546 100644
--- a/v2rayn/v2rayN/ServiceLib/Resx/ResUI.zh-Hans.resx
+++ b/v2rayn/v2rayN/ServiceLib/Resx/ResUI.zh-Hans.resx
@@ -1315,4 +1315,7 @@
无效备份文件
+
+ 主机过滤器
+
\ No newline at end of file
diff --git a/v2rayn/v2rayN/ServiceLib/Resx/ResUI.zh-Hant.resx b/v2rayn/v2rayN/ServiceLib/Resx/ResUI.zh-Hant.resx
index 367aabcbf9..913705fb35 100644
--- a/v2rayn/v2rayN/ServiceLib/Resx/ResUI.zh-Hant.resx
+++ b/v2rayn/v2rayN/ServiceLib/Resx/ResUI.zh-Hant.resx
@@ -1195,4 +1195,7 @@
無效備份文件
+
+ 主機過濾器
+
\ No newline at end of file
diff --git a/v2rayn/v2rayN/ServiceLib/ServiceLib.csproj b/v2rayn/v2rayN/ServiceLib/ServiceLib.csproj
index ddef44e2c8..6f6bec694f 100644
--- a/v2rayn/v2rayN/ServiceLib/ServiceLib.csproj
+++ b/v2rayn/v2rayN/ServiceLib/ServiceLib.csproj
@@ -4,7 +4,7 @@
net8.0
enable
enable
- 6.58
+ 6.59.0
diff --git a/v2rayn/v2rayN/ServiceLib/ViewModels/AddServer2ViewModel.cs b/v2rayn/v2rayN/ServiceLib/ViewModels/AddServer2ViewModel.cs
index f2911c9a09..5f198da7c2 100644
--- a/v2rayn/v2rayN/ServiceLib/ViewModels/AddServer2ViewModel.cs
+++ b/v2rayn/v2rayN/ServiceLib/ViewModels/AddServer2ViewModel.cs
@@ -90,7 +90,7 @@ namespace ServiceLib.ViewModels
if (ConfigHandler.AddCustomServer(_config, item, false) == 0)
{
_noticeHandler?.Enqueue(ResUI.SuccessfullyImportedCustomServer);
- if (!Utils.IsNullOrEmpty(item.indexId))
+ if (Utils.IsNotEmpty(item.indexId))
{
SelectedSource = JsonUtils.DeepCopy(item);
}
diff --git a/v2rayn/v2rayN/ServiceLib/ViewModels/ClashConnectionsViewModel.cs b/v2rayn/v2rayN/ServiceLib/ViewModels/ClashConnectionsViewModel.cs
index 5adf7fc939..d621e4aa33 100644
--- a/v2rayn/v2rayN/ServiceLib/ViewModels/ClashConnectionsViewModel.cs
+++ b/v2rayn/v2rayN/ServiceLib/ViewModels/ClashConnectionsViewModel.cs
@@ -19,6 +19,9 @@ namespace ServiceLib.ViewModels
public ReactiveCommand ConnectionCloseCmd { get; }
public ReactiveCommand ConnectionCloseAllCmd { get; }
+ [Reactive]
+ public string HostFilter { get; set; }
+
[Reactive]
public int SortingSelected { get; set; }
@@ -34,7 +37,7 @@ namespace ServiceLib.ViewModels
var canEditRemove = this.WhenAnyValue(
x => x.SelectedSource,
- selectedSource => selectedSource != null && !string.IsNullOrEmpty(selectedSource.id));
+ selectedSource => selectedSource != null && Utils.IsNotEmpty(selectedSource.id));
this.WhenAnyValue(
x => x.SortingSelected,
@@ -77,7 +80,7 @@ namespace ServiceLib.ViewModels
{
var lastTime = DateTime.Now;
- Observable.Interval(TimeSpan.FromSeconds(10))
+ Observable.Interval(TimeSpan.FromSeconds(5))
.Subscribe(x =>
{
if (!(AutoRefresh && _config.uiItem.showInTaskbar && _config.IsRunningCore(ECoreType.clash)))
@@ -118,12 +121,18 @@ namespace ServiceLib.ViewModels
var lstModel = new List();
foreach (var item in connections ?? [])
{
+ var host = $"{(Utils.IsNullOrEmpty(item.metadata.host) ? item.metadata.destinationIP : item.metadata.host)}:{item.metadata.destinationPort}";
+ if (HostFilter.IsNotEmpty() && !host.Contains(HostFilter))
+ {
+ continue;
+ }
+
ClashConnectionModel model = new();
model.id = item.id;
model.network = item.metadata.network;
model.type = item.metadata.type;
- model.host = $"{(string.IsNullOrEmpty(item.metadata.host) ? item.metadata.destinationIP : item.metadata.host)}:{item.metadata.destinationPort}";
+ model.host = host;
var sp = (dtNow - item.start);
model.time = sp.TotalSeconds < 0 ? 1 : sp.TotalSeconds;
model.upload = item.upload;
diff --git a/v2rayn/v2rayN/ServiceLib/ViewModels/ClashProxiesViewModel.cs b/v2rayn/v2rayN/ServiceLib/ViewModels/ClashProxiesViewModel.cs
index 2992c3a66d..ff8cdd60a1 100644
--- a/v2rayn/v2rayN/ServiceLib/ViewModels/ClashProxiesViewModel.cs
+++ b/v2rayn/v2rayN/ServiceLib/ViewModels/ClashProxiesViewModel.cs
@@ -57,7 +57,7 @@ namespace ServiceLib.ViewModels
this.WhenAnyValue(
x => x.SelectedGroup,
- y => y != null && !string.IsNullOrEmpty(y.name))
+ y => y != null && Utils.IsNotEmpty(y.name))
.Subscribe(c => RefreshProxyDetails(c));
this.WhenAnyValue(
@@ -194,7 +194,7 @@ namespace ServiceLib.ViewModels
{
foreach (var it in proxyGroups)
{
- if (string.IsNullOrEmpty(it.name) || !_proxies.ContainsKey(it.name))
+ if (Utils.IsNullOrEmpty(it.name) || !_proxies.ContainsKey(it.name))
{
continue;
}
@@ -220,7 +220,7 @@ namespace ServiceLib.ViewModels
continue;
}
var item = _proxyGroups.Where(t => t.name == kv.Key).FirstOrDefault();
- if (item != null && !string.IsNullOrEmpty(item.name))
+ if (item != null && Utils.IsNotEmpty(item.name))
{
continue;
}
@@ -257,7 +257,7 @@ namespace ServiceLib.ViewModels
return;
}
var name = SelectedGroup?.name;
- if (string.IsNullOrEmpty(name))
+ if (Utils.IsNullOrEmpty(name))
{
return;
}
@@ -342,21 +342,21 @@ namespace ServiceLib.ViewModels
public void SetActiveProxy()
{
- if (SelectedGroup == null || string.IsNullOrEmpty(SelectedGroup.name))
+ if (SelectedGroup == null || Utils.IsNullOrEmpty(SelectedGroup.name))
{
return;
}
- if (SelectedDetail == null || string.IsNullOrEmpty(SelectedDetail.name))
+ if (SelectedDetail == null || Utils.IsNullOrEmpty(SelectedDetail.name))
{
return;
}
var name = SelectedGroup.name;
- if (string.IsNullOrEmpty(name))
+ if (Utils.IsNullOrEmpty(name))
{
return;
}
var nameNode = SelectedDetail.name;
- if (string.IsNullOrEmpty(nameNode))
+ if (Utils.IsNullOrEmpty(nameNode))
{
return;
}
@@ -393,7 +393,7 @@ namespace ServiceLib.ViewModels
GetClashProxies(true);
return;
}
- if (string.IsNullOrEmpty(result))
+ if (Utils.IsNullOrEmpty(result))
{
return;
}
diff --git a/v2rayn/v2rayN/ServiceLib/ViewModels/DNSSettingViewModel.cs b/v2rayn/v2rayN/ServiceLib/ViewModels/DNSSettingViewModel.cs
index b5bbb399d3..3541ff043c 100644
--- a/v2rayn/v2rayN/ServiceLib/ViewModels/DNSSettingViewModel.cs
+++ b/v2rayn/v2rayN/ServiceLib/ViewModels/DNSSettingViewModel.cs
@@ -58,7 +58,7 @@ namespace ServiceLib.ViewModels
private async Task SaveSettingAsync()
{
- if (!Utils.IsNullOrEmpty(normalDNS))
+ if (Utils.IsNotEmpty(normalDNS))
{
var obj = JsonUtils.ParseJson(normalDNS);
if (obj != null && obj["servers"] != null)
@@ -73,7 +73,7 @@ namespace ServiceLib.ViewModels
}
}
}
- if (!Utils.IsNullOrEmpty(normalDNS2))
+ if (Utils.IsNotEmpty(normalDNS2))
{
var obj2 = JsonUtils.Deserialize(normalDNS2);
if (obj2 == null)
@@ -82,7 +82,7 @@ namespace ServiceLib.ViewModels
return;
}
}
- if (!Utils.IsNullOrEmpty(tunDNS2))
+ if (Utils.IsNotEmpty(tunDNS2))
{
var obj2 = JsonUtils.Deserialize(tunDNS2);
if (obj2 == null)
diff --git a/v2rayn/v2rayN/ServiceLib/ViewModels/MsgViewModel.cs b/v2rayn/v2rayN/ServiceLib/ViewModels/MsgViewModel.cs
index c2d9f1cd54..0f924c36c1 100644
--- a/v2rayn/v2rayN/ServiceLib/ViewModels/MsgViewModel.cs
+++ b/v2rayn/v2rayN/ServiceLib/ViewModels/MsgViewModel.cs
@@ -76,7 +76,7 @@ namespace ServiceLib.ViewModels
{
//filter msg
if (MsgFilter != _lastMsgFilter) _lastMsgFilterNotAvailable = false;
- if (!Utils.IsNullOrEmpty(MsgFilter) && !_lastMsgFilterNotAvailable)
+ if (Utils.IsNotEmpty(MsgFilter) && !_lastMsgFilterNotAvailable)
{
try
{
diff --git a/v2rayn/v2rayN/ServiceLib/ViewModels/ProfilesViewModel.cs b/v2rayn/v2rayN/ServiceLib/ViewModels/ProfilesViewModel.cs
index 14e79a9b03..dca473fa58 100644
--- a/v2rayn/v2rayN/ServiceLib/ViewModels/ProfilesViewModel.cs
+++ b/v2rayn/v2rayN/ServiceLib/ViewModels/ProfilesViewModel.cs
@@ -265,13 +265,13 @@ namespace ServiceLib.ViewModels
var item = _profileItems.Where(it => it.indexId == result.IndexId).FirstOrDefault();
if (item != null)
{
- if (!Utils.IsNullOrEmpty(result.Delay))
+ if (Utils.IsNotEmpty(result.Delay))
{
int.TryParse(result.Delay, out int temp);
item.delay = temp;
item.delayVal = $"{result.Delay} {Global.DelayUnit}";
}
- if (!Utils.IsNullOrEmpty(result.Speed))
+ if (Utils.IsNotEmpty(result.Speed))
{
item.speedVal = $"{result.Speed} {Global.SpeedUnit}";
}
diff --git a/v2rayn/v2rayN/ServiceLib/ViewModels/RoutingRuleDetailsViewModel.cs b/v2rayn/v2rayN/ServiceLib/ViewModels/RoutingRuleDetailsViewModel.cs
index 8acfc234dc..4c9f03db25 100644
--- a/v2rayn/v2rayN/ServiceLib/ViewModels/RoutingRuleDetailsViewModel.cs
+++ b/v2rayn/v2rayN/ServiceLib/ViewModels/RoutingRuleDetailsViewModel.cs
@@ -80,7 +80,7 @@ namespace ServiceLib.ViewModels
|| SelectedSource.ip?.Count > 0
|| SelectedSource.protocol?.Count > 0
|| SelectedSource.process?.Count > 0
- || !Utils.IsNullOrEmpty(SelectedSource.port);
+ || Utils.IsNotEmpty(SelectedSource.port);
if (!hasRule)
{
diff --git a/v2rayn/v2rayN/v2rayN.Desktop/App.axaml b/v2rayn/v2rayN/v2rayN.Desktop/App.axaml
index d326e4c0d2..12b0fc39be 100644
--- a/v2rayn/v2rayN/v2rayN.Desktop/App.axaml
+++ b/v2rayn/v2rayN/v2rayN.Desktop/App.axaml
@@ -13,7 +13,10 @@
-
+
diff --git a/v2rayn/v2rayN/v2rayN.Desktop/ViewModels/ThemeSettingViewModel.cs b/v2rayn/v2rayN/v2rayN.Desktop/ViewModels/ThemeSettingViewModel.cs
index 0794c1b9db..86b0529298 100644
--- a/v2rayn/v2rayN/v2rayN.Desktop/ViewModels/ThemeSettingViewModel.cs
+++ b/v2rayn/v2rayN/v2rayN.Desktop/ViewModels/ThemeSettingViewModel.cs
@@ -70,7 +70,7 @@ namespace v2rayN.Desktop.ViewModels
y => y != null && !y.IsNullOrEmpty())
.Subscribe(c =>
{
- if (!Utils.IsNullOrEmpty(CurrentLanguage) && _config.uiItem.currentLanguage != CurrentLanguage)
+ if (Utils.IsNotEmpty(CurrentLanguage) && _config.uiItem.currentLanguage != CurrentLanguage)
{
_config.uiItem.currentLanguage = CurrentLanguage;
Thread.CurrentThread.CurrentUICulture = new(CurrentLanguage);
diff --git a/v2rayn/v2rayN/v2rayN.Desktop/Views/ClashConnectionsView.axaml b/v2rayn/v2rayN/v2rayN.Desktop/Views/ClashConnectionsView.axaml
index 196980fc16..07adf5e2bf 100644
--- a/v2rayn/v2rayN/v2rayN.Desktop/Views/ClashConnectionsView.axaml
+++ b/v2rayn/v2rayN/v2rayN.Desktop/Views/ClashConnectionsView.axaml
@@ -18,6 +18,13 @@
DockPanel.Dock="Top"
Orientation="Horizontal">
+
+
vm.ConnectionCloseCmd, v => v.menuConnectionClose).DisposeWith(disposables);
this.BindCommand(ViewModel, vm => vm.ConnectionCloseAllCmd, v => v.menuConnectionCloseAll).DisposeWith(disposables);
+ this.Bind(ViewModel, vm => vm.HostFilter, v => v.txtHostFilter.Text).DisposeWith(disposables);
this.Bind(ViewModel, vm => vm.SortingSelected, v => v.cmbSorting.SelectedIndex).DisposeWith(disposables);
this.BindCommand(ViewModel, vm => vm.ConnectionCloseAllCmd, v => v.btnConnectionCloseAll).DisposeWith(disposables);
this.Bind(ViewModel, vm => vm.AutoRefresh, v => v.togAutoRefresh.IsChecked).DisposeWith(disposables);
diff --git a/v2rayn/v2rayN/v2rayN.Desktop/Views/ClashProxiesView.axaml b/v2rayn/v2rayN/v2rayN.Desktop/Views/ClashProxiesView.axaml
index d03c864fdb..e37b5c4d4e 100644
--- a/v2rayn/v2rayN/v2rayN.Desktop/Views/ClashProxiesView.axaml
+++ b/v2rayn/v2rayN/v2rayN.Desktop/Views/ClashProxiesView.axaml
@@ -92,7 +92,6 @@
@@ -108,16 +107,17 @@
Padding="0"
Theme="{StaticResource CardBorder}">
-
+
-
-
+
+
+
-
+
@@ -141,6 +141,7 @@
@@ -152,16 +153,17 @@
CornerRadius="4"
DockPanel.Dock="Left"
IsVisible="{Binding isActive}" />
-
+
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/v2rayn/v2rayN/v2rayN/Converters/MaterialDesignFonts.cs b/v2rayn/v2rayN/v2rayN/Converters/MaterialDesignFonts.cs
index 37d17f820d..0be5bade53 100644
--- a/v2rayn/v2rayN/v2rayN/Converters/MaterialDesignFonts.cs
+++ b/v2rayn/v2rayN/v2rayN/Converters/MaterialDesignFonts.cs
@@ -11,7 +11,7 @@ namespace v2rayN.Converters
try
{
var fontFamily = LazyConfig.Instance.Config.uiItem.currentFontFamily;
- if (!Utils.IsNullOrEmpty(fontFamily))
+ if (Utils.IsNotEmpty(fontFamily))
{
var fontPath = Utils.GetFontsPath();
MyFont = new FontFamily(new Uri(@$"file:///{fontPath}\"), $"./#{fontFamily}");
diff --git a/v2rayn/v2rayN/v2rayN/ViewModels/ThemeSettingViewModel.cs b/v2rayn/v2rayN/v2rayN/ViewModels/ThemeSettingViewModel.cs
index abdd473664..f64b416ffc 100644
--- a/v2rayn/v2rayN/v2rayN/ViewModels/ThemeSettingViewModel.cs
+++ b/v2rayn/v2rayN/v2rayN/ViewModels/ThemeSettingViewModel.cs
@@ -156,7 +156,7 @@ namespace v2rayN.ViewModels
y => y != null && !y.IsNullOrEmpty())
.Subscribe(c =>
{
- if (!Utils.IsNullOrEmpty(CurrentLanguage) && _config.uiItem.currentLanguage != CurrentLanguage)
+ if (Utils.IsNotEmpty(CurrentLanguage) && _config.uiItem.currentLanguage != CurrentLanguage)
{
_config.uiItem.currentLanguage = CurrentLanguage;
Thread.CurrentThread.CurrentUICulture = new(CurrentLanguage);
diff --git a/v2rayn/v2rayN/v2rayN/Views/ClashConnectionsView.xaml b/v2rayn/v2rayN/v2rayN/Views/ClashConnectionsView.xaml
index 4a00013559..b9e3ef5e2c 100644
--- a/v2rayn/v2rayN/v2rayN/Views/ClashConnectionsView.xaml
+++ b/v2rayn/v2rayN/v2rayN/Views/ClashConnectionsView.xaml
@@ -1,11 +1,11 @@
+
+
vm.ConnectionCloseCmd, v => v.menuConnectionClose).DisposeWith(disposables);
this.BindCommand(ViewModel, vm => vm.ConnectionCloseAllCmd, v => v.menuConnectionCloseAll).DisposeWith(disposables);
+ this.Bind(ViewModel, vm => vm.HostFilter, v => v.txtHostFilter.Text).DisposeWith(disposables);
this.Bind(ViewModel, vm => vm.SortingSelected, v => v.cmbSorting.SelectedIndex).DisposeWith(disposables);
this.BindCommand(ViewModel, vm => vm.ConnectionCloseAllCmd, v => v.btnConnectionCloseAll).DisposeWith(disposables);
this.Bind(ViewModel, vm => vm.AutoRefresh, v => v.togAutoRefresh.IsChecked).DisposeWith(disposables);
diff --git a/v2rayng/V2rayNG/app/build.gradle.kts b/v2rayng/V2rayNG/app/build.gradle.kts
index fa511b3ad2..6a390d83ee 100644
--- a/v2rayng/V2rayNG/app/build.gradle.kts
+++ b/v2rayng/V2rayNG/app/build.gradle.kts
@@ -11,8 +11,8 @@ android {
applicationId = "com.v2ray.ang"
minSdk = 21
targetSdk = 34
- versionCode = 586
- versionName = "1.8.40"
+ versionCode = 591
+ versionName = "1.9.0"
multiDexEnabled = true
splits {
abi {
diff --git a/v2rayng/V2rayNG/app/src/main/kotlin/com/v2ray/ang/dto/V2rayConfig.kt b/v2rayng/V2rayNG/app/src/main/kotlin/com/v2ray/ang/dto/V2rayConfig.kt
index 4a6b00b11f..969297bfc2 100644
--- a/v2rayng/V2rayNG/app/src/main/kotlin/com/v2ray/ang/dto/V2rayConfig.kt
+++ b/v2rayng/V2rayNG/app/src/main/kotlin/com/v2ray/ang/dto/V2rayConfig.kt
@@ -85,7 +85,7 @@ data class V2rayConfig(
data class OutSettingsBean(
var vnext: List? = null,
var fragment: FragmentBean? = null,
- var noise: NoiseBean? = null,
+ var noises: List? = null,
var servers: List? = null,
/*Blackhole*/
var response: Response? = null,
@@ -129,6 +129,7 @@ data class V2rayConfig(
)
data class NoiseBean(
+ var type: String? = null,
var packet: String? = null,
var delay: String? = null
)
diff --git a/v2rayng/V2rayNG/app/src/main/kotlin/com/v2ray/ang/extension/_Ext.kt b/v2rayng/V2rayNG/app/src/main/kotlin/com/v2ray/ang/extension/_Ext.kt
index f4c3a6f420..77ace45f0d 100644
--- a/v2rayng/V2rayNG/app/src/main/kotlin/com/v2ray/ang/extension/_Ext.kt
+++ b/v2rayng/V2rayNG/app/src/main/kotlin/com/v2ray/ang/extension/_Ext.kt
@@ -54,4 +54,6 @@ val URLConnection.responseLength: Long
val URI.idnHost: String
get() = host?.replace("[", "")?.replace("]", "").orEmpty()
-fun String.removeWhiteSpace(): String = replace("\\s+".toRegex(), "")
\ No newline at end of file
+fun String.removeWhiteSpace(): String = replace("\\s+".toRegex(), "")
+
+fun String.toLongEx(): Long = toLongOrNull() ?: 0
\ No newline at end of file
diff --git a/v2rayng/V2rayNG/app/src/main/kotlin/com/v2ray/ang/ui/SettingsActivity.kt b/v2rayng/V2rayNG/app/src/main/kotlin/com/v2ray/ang/ui/SettingsActivity.kt
index 305ed27412..cad09316f1 100644
--- a/v2rayng/V2rayNG/app/src/main/kotlin/com/v2ray/ang/ui/SettingsActivity.kt
+++ b/v2rayng/V2rayNG/app/src/main/kotlin/com/v2ray/ang/ui/SettingsActivity.kt
@@ -17,6 +17,7 @@ import com.tencent.mmkv.MMKV
import com.v2ray.ang.AngApplication
import com.v2ray.ang.AppConfig
import com.v2ray.ang.R
+import com.v2ray.ang.extension.toLongEx
import com.v2ray.ang.service.SubscriptionUpdater
import com.v2ray.ang.util.MmkvManager
import com.v2ray.ang.util.Utils
@@ -128,7 +129,7 @@ class SettingsActivity : BaseActivity() {
val value = newValue as Boolean
autoUpdateCheck?.isChecked = value
autoUpdateInterval?.isEnabled = value
- autoUpdateInterval?.text?.toLong()?.let {
+ autoUpdateInterval?.text?.toLongEx()?.let {
if (newValue) configureUpdateTask(it) else cancelUpdateTask()
}
true
@@ -138,9 +139,9 @@ class SettingsActivity : BaseActivity() {
// It must be greater than 15 minutes because WorkManager couldn't run tasks under 15 minutes intervals
nval =
- if (TextUtils.isEmpty(nval) || nval.toLong() < 15) AppConfig.SUBSCRIPTION_DEFAULT_UPDATE_INTERVAL else nval
+ if (TextUtils.isEmpty(nval) || nval.toLongEx() < 15) AppConfig.SUBSCRIPTION_DEFAULT_UPDATE_INTERVAL else nval
autoUpdateInterval?.summary = nval
- configureUpdateTask(nval.toLong())
+ configureUpdateTask(nval.toLongEx())
true
}
diff --git a/v2rayng/V2rayNG/app/src/main/kotlin/com/v2ray/ang/util/V2rayConfigUtil.kt b/v2rayng/V2rayNG/app/src/main/kotlin/com/v2ray/ang/util/V2rayConfigUtil.kt
index 33f73a63e5..7123ff38da 100644
--- a/v2rayng/V2rayNG/app/src/main/kotlin/com/v2ray/ang/util/V2rayConfigUtil.kt
+++ b/v2rayng/V2rayNG/app/src/main/kotlin/com/v2ray/ang/util/V2rayConfigUtil.kt
@@ -641,9 +641,12 @@ object V2rayConfigUtil {
interval = settingsStorage?.decodeString(AppConfig.PREF_FRAGMENT_INTERVAL)
?: "10-20"
),
- noise = V2rayConfig.OutboundBean.OutSettingsBean.NoiseBean(
- packet = "rand:100-200",
- delay = "10-20",
+ noises = listOf(
+ V2rayConfig.OutboundBean.OutSettingsBean.NoiseBean(
+ type = "rand",
+ packet = "100-200",
+ delay = "10-20",
+ )
),
)
fragmentOutbound.streamSettings = V2rayConfig.OutboundBean.StreamSettingsBean(
diff --git a/v2rayng/V2rayNG/gradle/libs.versions.toml b/v2rayng/V2rayNG/gradle/libs.versions.toml
index 685754e4aa..f8aa64d996 100644
--- a/v2rayng/V2rayNG/gradle/libs.versions.toml
+++ b/v2rayng/V2rayNG/gradle/libs.versions.toml
@@ -1,26 +1,26 @@
[versions]
-activityKtx = "1.9.1"
+activityKtx = "1.9.2"
appcompat = "1.7.0"
cardview = "1.0.0"
constraintlayout = "2.1.4"
core = "3.5.3"
editorkit = "2.9.0"
flexbox = "3.0.0"
-fragmentKtx = "1.8.2"
+fragmentKtx = "1.8.3"
gson = "2.11.0"
junit = "4.13.2"
-kotlinReflect = "2.0.0"
-kotlinxCoroutinesCore = "1.8.1"
+kotlinReflect = "2.0.20"
+kotlinxCoroutinesCore = "1.9.0"
legacySupportV4 = "1.0.0"
-lifecycleViewmodelKtx = "2.8.4"
+lifecycleViewmodelKtx = "2.8.5"
material = "1.12.0"
-mmkvStatic = "1.3.4"
+mmkvStatic = "1.3.9"
multidex = "2.0.1"
preferenceKtx = "1.2.1"
-quickieBundled = "1.9.0"
+quickieBundled = "1.10.0"
recyclerview = "1.3.2"
rxandroid = "3.0.2"
-rxjava = "3.1.8"
+rxjava = "3.1.9"
rxpermissions = "0.12"
toastcompat = "1.1.0"
viewpager2 = "1.1.0"
diff --git a/yass/.github/workflows/compiler.yml b/yass/.github/workflows/compiler.yml
index 0bdc3f2d17..9085aa0d4f 100644
--- a/yass/.github/workflows/compiler.yml
+++ b/yass/.github/workflows/compiler.yml
@@ -383,10 +383,9 @@ jobs:
# brew update
# brew install ninja cmake p7zip
brew install ninja
- - name: Set up Xcode to 15.4 (macos 14)
- if: ${{ matrix.os == 'macos-14' }}
+ - name: Set up Xcode to 16.0
run: |
- sudo xcode-select -s /Applications/Xcode_15.4.app
+ sudo xcode-select -s /Applications/Xcode_16.0.app
- name: Build
run: |
export CC=$(xcrun --find clang)
diff --git a/yass/.github/workflows/releases-ios.yml b/yass/.github/workflows/releases-ios.yml
index a9ded508fb..e29bd46ac9 100644
--- a/yass/.github/workflows/releases-ios.yml
+++ b/yass/.github/workflows/releases-ios.yml
@@ -87,6 +87,10 @@ jobs:
- name: Set up Xcode to 15.4
run: |
sudo xcode-select -s /Applications/Xcode_15.4.app
+ # FIXME
+ #- name: Set up Xcode to 16.0
+ # run: |
+ # sudo xcode-select -s /Applications/Xcode_16.0.app
- name: Build and Run tests (arm64)
if: ${{ matrix.arch == 'arm64' }}
run: |
diff --git a/yass/.github/workflows/releases-macos.yml b/yass/.github/workflows/releases-macos.yml
index cfac44a491..4cdfe49626 100644
--- a/yass/.github/workflows/releases-macos.yml
+++ b/yass/.github/workflows/releases-macos.yml
@@ -97,9 +97,9 @@ jobs:
brew install ninja
# for depot_tools (required by crashpad)
brew install python-setuptools
- - name: Set up Xcode to 15.4
+ - name: Set up Xcode to 16.0
run: |
- sudo xcode-select -s /Applications/Xcode_15.4.app
+ sudo xcode-select -s /Applications/Xcode_16.0.app
- name: Download and Build Crashpad (include depot_tools)
if: ${{ steps.depot-cache.outputs.cache-hit != 'true' || steps.crashpad-cache.outputs.cache-hit != 'true' }}
shell: bash
diff --git a/yass/.gitmodules b/yass/.gitmodules
index e1dbed428e..fd5978faf8 100644
--- a/yass/.gitmodules
+++ b/yass/.gitmodules
@@ -26,9 +26,6 @@
[submodule "third_party/libc++"]
path = third_party/libc++/trunk
url = https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxx
-[submodule "third_party/json"]
- path = third_party/json
- url = https://github.com/nlohmann/json
[submodule "third_party/googleurl"]
path = third_party/googleurl
url = https://quiche.googlesource.com/googleurl/
diff --git a/yass/CMakeLists.txt b/yass/CMakeLists.txt
index 9b81cf33fc..37bbc4abc1 100644
--- a/yass/CMakeLists.txt
+++ b/yass/CMakeLists.txt
@@ -511,13 +511,10 @@ cmake_dependent_option(
USE_SYSTEM_ZLIB "Build with system or vendored zlib" OFF
USE_ZLIB OFF)
-option(USE_JSONCPP "Build with jsoncpp library" OFF)
+option(USE_JSONCPP "Build with jsoncpp library" ON)
cmake_dependent_option(
USE_SYSTEM_JSONCPP "Build with system or vendered jsoncpp library" OFF
"USE_JSONCPP AND NOT USE_LIBCXX" OFF)
-cmake_dependent_option(
- USE_SYSTEM_JSON "Build with system or vendered nlohmann json library" OFF
- "NOT USE_JSONCPP" OFF)
option(ENABLE_FORTIFY "Enable build with Fortify Source (linux only)" OFF)
option(ENABLE_LTO "Enable build with LTO" OFF)
@@ -2994,14 +2991,21 @@ set(SUPPORT_LIBS modp_b64 ${SUPPORT_LIBS})
# pip install -U jinja2
if (USE_SYSTEM_MBEDTLS)
- check_library_exists(mbedcrypto mbedtls_cipher_init "" HAVE_SYSTEM_MBEDTLS)
- if (NOT HAVE_SYSTEM_MBEDTLS)
+ find_package(PkgConfig)
+ if (PKG_CONFIG_FOUND)
+ # IMPORTED_TARGET require cmake 3.6
+ pkg_check_modules(MBEDCRYPTO mbedcrypto IMPORTED_TARGET)
+ endif()
+ if(NOT MBEDCRYPTO_FOUND)
+ check_library_exists(mbedcrypto mbedtls_cipher_init "" HAVE_SYSTEM_MBEDTLS)
+ endif()
+ if (NOT MBEDCRYPTO_FOUND AND NOT HAVE_SYSTEM_MBEDTLS)
message(STATUS "System mbedtls not found, using bundled one")
- set(HAVE_SYSTEM_MBEDTLS FALSE)
+ set(USE_SYSTEM_MBEDTLS FALSE)
endif()
endif()
-if (USE_SYSTEM_MBEDTLS AND USE_MBEDTLS)
+if (USE_SYSTEM_MBEDTLS)
message(STATUS "Compiling with system mbedtls library")
list(APPEND YASS_APP_FEATURES "system mbedtls")
set(SUPPORT_DEFINITIONS
@@ -3009,7 +3013,11 @@ if (USE_SYSTEM_MBEDTLS AND USE_MBEDTLS)
${SUPPORT_DEFINITIONS}
)
- set(SUPPORT_LIBS mbedcrypto ${SUPPORT_LIBS})
+ if (MBEDCRYPTO_FOUND)
+ set(SUPPORT_LIBS PkgConfig::MBEDCRYPTO ${SUPPORT_LIBS})
+ else()
+ set(SUPPORT_LIBS mbedcrypto ${SUPPORT_LIBS})
+ endif()
elseif (USE_MBEDTLS)
message(STATUS "Compiling with bundled mbedtls library")
set(USE_SHARED_MBEDTLS_LIBRARY "OFF" CACHE STRING "")
@@ -3206,6 +3214,10 @@ set(SUPPORT_LIBS asio ${SUPPORT_LIBS})
# jsoncpp Library
# *****************************************************************************************
+if (USE_SYSTEM_JSON)
+ message(WARNING "Compiling with nlohmann json support is no longer supported, ignoring...")
+endif()
+
if (USE_SYSTEM_JSONCPP)
find_package(PkgConfig)
if (PKG_CONFIG_FOUND)
@@ -3221,10 +3233,6 @@ endif()
if (USE_SYSTEM_JSONCPP)
message(STATUS "Compiling with system jsoncpp")
list(APPEND YASS_APP_FEATURES "system jsoncpp")
- set(SUPPORT_DEFINITIONS
- HAVE_JSONCPP
- ${SUPPORT_DEFINITIONS}
- )
set(CORE_LIBS PkgConfig::JSONCPP ${CORE_LIBS})
elseif (USE_JSONCPP)
message(STATUS "Compiling with bundled jsoncpp library")
@@ -3255,40 +3263,13 @@ elseif (USE_JSONCPP)
target_include_directories(jsoncpp PUBLIC third_party/jsoncpp/include)
target_include_directories(jsoncpp PRIVATE third_party/jsoncpp/src/lib_json)
list(APPEND YASS_APP_FEATURES "jsoncpp")
- set(SUPPORT_DEFINITIONS
- HAVE_JSONCPP
- ${SUPPORT_DEFINITIONS}
- )
set(SUPPORT_INCLUDE_DIRS
third_party/jsoncpp/include
${SUPPORT_INCLUDE_DIRS}
)
set(CORE_LIBS jsoncpp ${CORE_LIBS})
-endif()
-
-# *****************************************************************************************
-# nlohmann json Library
-# *****************************************************************************************
-
-if (USE_SYSTEM_JSON)
- check_cxx_source_compiles ("
-#include
-int main() {}
-" HAVE_SYSTEM_JSON)
- if (NOT HAVE_SYSTEM_JSON)
- message(STATUS "System nlohmann json library not found, using bundled one")
- set(USE_SYSTEM_JSON FALSE)
- endif()
-endif()
-
-if (USE_SYSTEM_JSON)
- message(STATUS "Compiling with system nlohmann json library")
-elseif (NOT USE_JSONCPP)
- message(STATUS "Compiling with bundled nlohmann json library")
- set(SUPPORT_INCLUDE_DIRS
- third_party/json/include
- ${SUPPORT_INCLUDE_DIRS}
- )
+else()
+ message(FATAL_ERROR "Compiling without jsoncpp support is no longer supported")
endif()
# *****************************************************************************************
@@ -4303,6 +4284,7 @@ target_include_directories(yass_net PUBLIC
target_compile_definitions(yass_net PUBLIC
${SUPPORT_DEFINITIONS})
+target_link_directories(yass_net PUBLIC ${SUPPORT_LIB_DIRS})
target_link_libraries(yass_net PUBLIC ${SUPPORT_LIBS})
if (ANDROID)
@@ -5065,12 +5047,11 @@ endif()
# *****************************************************************************************
if(NOT CMAKE_SKIP_INSTALL_RULES)
- file(READ LICENSE _YASS_LICENSE)
+ file(READ LICENSES/GPL-2.0 _YASS_LICENSE)
file(READ third_party/abseil-cpp/LICENSE _ABSEIL_CPP_LICENSE)
file(READ third_party/asio/asio/LICENSE_1_0.txt _ASIO_LICENSE)
file(READ third_party/boringssl/src/LICENSE _BORINGSSL_LICENSE)
file(READ third_party/googleurl/LICENSE _GOOGLEURL_LICENSE)
- file(READ third_party/json/LICENSE.MIT _JSON_LICENSE)
file(READ third_party/jsoncpp/LICENSE _JSONCPP_LICENSE)
file(READ third_party/leveldb/LICENSE _LEVELDB_LICENSE)
file(READ third_party/libc++/trunk/LICENSE.TXT _LIBCXX_LICENSE)
@@ -5090,7 +5071,7 @@ if(NOT CMAKE_SKIP_INSTALL_RULES)
file(READ third_party/mimalloc/LICENSE _MIMALLOC_LICENSE)
set(LICENSE_FILE "${CMAKE_CURRENT_BINARY_DIR}/LICENSE")
- configure_file("LICENSE.cmake.in" "${LICENSE_FILE}" @ONLY)
+ configure_file("LICENSES/LICENSE.cmake.in" "${LICENSE_FILE}" @ONLY)
install(FILES "${LICENSE_FILE}" DESTINATION "${CMAKE_INSTALL_DOCDIR}")
endif()
diff --git a/yass/COPYING b/yass/COPYING
index 31307f3243..bcc475fae5 100644
--- a/yass/COPYING
+++ b/yass/COPYING
@@ -5,4 +5,6 @@ The YetAnotherShadowSocket is provided under:
Being under the terms of the GNU General Public License version 2 only,
according with:
- GPL-2.0
+ LICENSES/GPL-2.0
+
+All contributions to the YetAnotherShadowSocket are subject to this COPYING file.
diff --git a/yass/LICENSE b/yass/LICENSE
deleted file mode 100644
index 3912109b5c..0000000000
--- a/yass/LICENSE
+++ /dev/null
@@ -1,340 +0,0 @@
- GNU GENERAL PUBLIC LICENSE
- Version 2, June 1991
-
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
- 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
- Preamble
-
- The licenses for most software are designed to take away your
-freedom to share and change it. By contrast, the GNU General Public
-License is intended to guarantee your freedom to share and change free
-software--to make sure the software is free for all its users. This
-General Public License applies to most of the Free Software
-Foundation's software and to any other program whose authors commit to
-using it. (Some other Free Software Foundation software is covered by
-the GNU Library General Public License instead.) You can apply it to
-your programs, too.
-
- When we speak of free software, we are referring to freedom, not
-price. Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-this service if you wish), that you receive source code or can get it
-if you want it, that you can change the software or use pieces of it
-in new free programs; and that you know you can do these things.
-
- To protect your rights, we need to make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the rights.
-These restrictions translate to certain responsibilities for you if you
-distribute copies of the software, or if you modify it.
-
- For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must give the recipients all the rights that
-you have. You must make sure that they, too, receive or can get the
-source code. And you must show them these terms so they know their
-rights.
-
- We protect your rights with two steps: (1) copyright the software, and
-(2) offer you this license which gives you legal permission to copy,
-distribute and/or modify the software.
-
- Also, for each author's protection and ours, we want to make certain
-that everyone understands that there is no warranty for this free
-software. If the software is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original, so
-that any problems introduced by others will not reflect on the original
-authors' reputations.
-
- Finally, any free program is threatened constantly by software
-patents. We wish to avoid the danger that redistributors of a free
-program will individually obtain patent licenses, in effect making the
-program proprietary. To prevent this, we have made it clear that any
-patent must be licensed for everyone's free use or not licensed at all.
-
- The precise terms and conditions for copying, distribution and
-modification follow.
-
- GNU GENERAL PUBLIC LICENSE
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
- 0. This License applies to any program or other work which contains
-a notice placed by the copyright holder saying it may be distributed
-under the terms of this General Public License. The "Program", below,
-refers to any such program or work, and a "work based on the Program"
-means either the Program or any derivative work under copyright law:
-that is to say, a work containing the Program or a portion of it,
-either verbatim or with modifications and/or translated into another
-language. (Hereinafter, translation is included without limitation in
-the term "modification".) Each licensee is addressed as "you".
-
-Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope. The act of
-running the Program is not restricted, and the output from the Program
-is covered only if its contents constitute a work based on the
-Program (independent of having been made by running the Program).
-Whether that is true depends on what the Program does.
-
- 1. You may copy and distribute verbatim copies of the Program's
-source code as you receive it, in any medium, provided that you
-conspicuously and appropriately publish on each copy an appropriate
-copyright notice and disclaimer of warranty; keep intact all the
-notices that refer to this License and to the absence of any warranty;
-and give any other recipients of the Program a copy of this License
-along with the Program.
-
-You may charge a fee for the physical act of transferring a copy, and
-you may at your option offer warranty protection in exchange for a fee.
-
- 2. You may modify your copy or copies of the Program or any portion
-of it, thus forming a work based on the Program, and copy and
-distribute such modifications or work under the terms of Section 1
-above, provided that you also meet all of these conditions:
-
- a) You must cause the modified files to carry prominent notices
- stating that you changed the files and the date of any change.
-
- b) You must cause any work that you distribute or publish, that in
- whole or in part contains or is derived from the Program or any
- part thereof, to be licensed as a whole at no charge to all third
- parties under the terms of this License.
-
- c) If the modified program normally reads commands interactively
- when run, you must cause it, when started running for such
- interactive use in the most ordinary way, to print or display an
- announcement including an appropriate copyright notice and a
- notice that there is no warranty (or else, saying that you provide
- a warranty) and that users may redistribute the program under
- these conditions, and telling the user how to view a copy of this
- License. (Exception: if the Program itself is interactive but
- does not normally print such an announcement, your work based on
- the Program is not required to print an announcement.)
-
-These requirements apply to the modified work as a whole. If
-identifiable sections of that work are not derived from the Program,
-and can be reasonably considered independent and separate works in
-themselves, then this License, and its terms, do not apply to those
-sections when you distribute them as separate works. But when you
-distribute the same sections as part of a whole which is a work based
-on the Program, the distribution of the whole must be on the terms of
-this License, whose permissions for other licensees extend to the
-entire whole, and thus to each and every part regardless of who wrote it.
-
-Thus, it is not the intent of this section to claim rights or contest
-your rights to work written entirely by you; rather, the intent is to
-exercise the right to control the distribution of derivative or
-collective works based on the Program.
-
-In addition, mere aggregation of another work not based on the Program
-with the Program (or with a work based on the Program) on a volume of
-a storage or distribution medium does not bring the other work under
-the scope of this License.
-
- 3. You may copy and distribute the Program (or a work based on it,
-under Section 2) in object code or executable form under the terms of
-Sections 1 and 2 above provided that you also do one of the following:
-
- a) Accompany it with the complete corresponding machine-readable
- source code, which must be distributed under the terms of Sections
- 1 and 2 above on a medium customarily used for software interchange; or,
-
- b) Accompany it with a written offer, valid for at least three
- years, to give any third party, for a charge no more than your
- cost of physically performing source distribution, a complete
- machine-readable copy of the corresponding source code, to be
- distributed under the terms of Sections 1 and 2 above on a medium
- customarily used for software interchange; or,
-
- c) Accompany it with the information you received as to the offer
- to distribute corresponding source code. (This alternative is
- allowed only for noncommercial distribution and only if you
- received the program in object code or executable form with such
- an offer, in accord with Subsection b above.)
-
-The source code for a work means the preferred form of the work for
-making modifications to it. For an executable work, complete source
-code means all the source code for all modules it contains, plus any
-associated interface definition files, plus the scripts used to
-control compilation and installation of the executable. However, as a
-special exception, the source code distributed need not include
-anything that is normally distributed (in either source or binary
-form) with the major components (compiler, kernel, and so on) of the
-operating system on which the executable runs, unless that component
-itself accompanies the executable.
-
-If distribution of executable or object code is made by offering
-access to copy from a designated place, then offering equivalent
-access to copy the source code from the same place counts as
-distribution of the source code, even though third parties are not
-compelled to copy the source along with the object code.
-
- 4. You may not copy, modify, sublicense, or distribute the Program
-except as expressly provided under this License. Any attempt
-otherwise to copy, modify, sublicense or distribute the Program is
-void, and will automatically terminate your rights under this License.
-However, parties who have received copies, or rights, from you under
-this License will not have their licenses terminated so long as such
-parties remain in full compliance.
-
- 5. You are not required to accept this License, since you have not
-signed it. However, nothing else grants you permission to modify or
-distribute the Program or its derivative works. These actions are
-prohibited by law if you do not accept this License. Therefore, by
-modifying or distributing the Program (or any work based on the
-Program), you indicate your acceptance of this License to do so, and
-all its terms and conditions for copying, distributing or modifying
-the Program or works based on it.
-
- 6. Each time you redistribute the Program (or any work based on the
-Program), the recipient automatically receives a license from the
-original licensor to copy, distribute or modify the Program subject to
-these terms and conditions. You may not impose any further
-restrictions on the recipients' exercise of the rights granted herein.
-You are not responsible for enforcing compliance by third parties to
-this License.
-
- 7. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues),
-conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License. If you cannot
-distribute so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you
-may not distribute the Program at all. For example, if a patent
-license would not permit royalty-free redistribution of the Program by
-all those who receive copies directly or indirectly through you, then
-the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Program.
-
-If any portion of this section is held invalid or unenforceable under
-any particular circumstance, the balance of the section is intended to
-apply and the section as a whole is intended to apply in other
-circumstances.
-
-It is not the purpose of this section to induce you to infringe any
-patents or other property right claims or to contest validity of any
-such claims; this section has the sole purpose of protecting the
-integrity of the free software distribution system, which is
-implemented by public license practices. Many people have made
-generous contributions to the wide range of software distributed
-through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing
-to distribute software through any other system and a licensee cannot
-impose that choice.
-
-This section is intended to make thoroughly clear what is believed to
-be a consequence of the rest of this License.
-
- 8. If the distribution and/or use of the Program is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Program under this License
-may add an explicit geographical distribution limitation excluding
-those countries, so that distribution is permitted only in or among
-countries not thus excluded. In such case, this License incorporates
-the limitation as if written in the body of this License.
-
- 9. The Free Software Foundation may publish revised and/or new versions
-of the General Public License from time to time. Such new versions will
-be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
-Each version is given a distinguishing version number. If the Program
-specifies a version number of this License which applies to it and "any
-later version", you have the option of following the terms and conditions
-either of that version or of any later version published by the Free
-Software Foundation. If the Program does not specify a version number of
-this License, you may choose any version ever published by the Free Software
-Foundation.
-
- 10. If you wish to incorporate parts of the Program into other free
-programs whose distribution conditions are different, write to the author
-to ask for permission. For software which is copyrighted by the Free
-Software Foundation, write to the Free Software Foundation; we sometimes
-make exceptions for this. Our decision will be guided by the two goals
-of preserving the free status of all derivatives of our free software and
-of promoting the sharing and reuse of software generally.
-
- NO WARRANTY
-
- 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
-FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
-OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
-PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
-OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
-TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
-PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
-REPAIR OR CORRECTION.
-
- 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
-REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
-INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
-OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
-TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
-YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
-PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGES.
-
- END OF TERMS AND CONDITIONS
-
- How to Apply These Terms to Your New Programs
-
- If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
- To do so, attach the following notices to the program. It is safest
-to attach them to the start of each source file to most effectively
-convey the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
-
- Copyright (C)
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
-
-Also add information on how to contact you by electronic and paper mail.
-
-If the program is interactive, make it output a short notice like this
-when it starts in an interactive mode:
-
- Gnomovision version 69, Copyright (C) year name of author
- Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
- This is free software, and you are welcome to redistribute it
- under certain conditions; type `show c' for details.
-
-The hypothetical commands `show w' and `show c' should show the appropriate
-parts of the General Public License. Of course, the commands you use may
-be called something other than `show w' and `show c'; they could even be
-mouse-clicks or menu items--whatever suits your program.
-
-You should also get your employer (if you work as a programmer) or your
-school, if any, to sign a "copyright disclaimer" for the program, if
-necessary. Here is a sample; alter the names:
-
- Yoyodyne, Inc., hereby disclaims all copyright interest in the program
- `Gnomovision' (which makes passes at compilers) written by James Hacker.
-
- , 1 April 1989
- Ty Coon, President of Vice
-
-This General Public License does not permit incorporating your program into
-proprietary programs. If your program is a subroutine library, you may
-consider it more useful to permit linking proprietary applications with the
-library. If this is what you want to do, use the GNU Library General
-Public License instead of this License.
diff --git a/yass/GPL-2.0 b/yass/LICENSES/GPL-2.0
similarity index 100%
rename from yass/GPL-2.0
rename to yass/LICENSES/GPL-2.0
diff --git a/yass/LICENSE.cmake.in b/yass/LICENSES/LICENSE.cmake.in
similarity index 95%
rename from yass/LICENSE.cmake.in
rename to yass/LICENSES/LICENSE.cmake.in
index cefa710854..bbe8d31a3c 100644
--- a/yass/LICENSE.cmake.in
+++ b/yass/LICENSES/LICENSE.cmake.in
@@ -1,3 +1,5 @@
+=== yass ==
+
@_YASS_LICENSE@
=== abseil-cpp ==
@@ -16,10 +18,6 @@
@_GOOGLEURL_LICENSE@
-=== nlohmann json ==
-
-@_JSON_LICENSE@
-
=== jsoncpp ==
@_JSONCPP_LICENSE@
diff --git a/yass/README.md b/yass/README.md
index 0bb61c401e..113f2fc6ba 100644
--- a/yass/README.md
+++ b/yass/README.md
@@ -2,9 +2,6 @@
yass is an efficient forward proxy client supporting http/socks4/socks4a/socks5/socks5h protocol running on PC and mobile devices.
-## License
-[][license-link]
-
## Releases
[](https://github.com/Chilledheart/yass/releases)
@@ -14,15 +11,16 @@ yass is an efficient forward proxy client supporting http/socks4/socks4a/socks5/
Because we are reusing chromium's network stack directly,
we are following [chromium's release schedule](https://chromiumdash.appspot.com/schedule) and delivering new versions based on its beta branch.
-- [Latest M129's Release (1.13.x)](https://github.com/Chilledheart/yass/releases/tag/1.13.2) will become Stable since _Sep 17, 2024_.
-- [Latest M128's Release (1.12.x)](https://github.com/Chilledheart/yass/releases/tag/1.12.5) has become Stable since _Aug 20, 2024_ (Extended Support).
-- [Latest M127's Release (1.11.x)](https://github.com/Chilledheart/yass/releases/tag/1.11.5) has become Stable since _Jul 23, 2024_
-- [Latest M126's Release (1.10.x)](https://github.com/Chilledheart/yass/releases/tag/1.10.7) has become Stable since _Jun 11, 2024_ (Extended Support)
-- [Latest M125's Release (1.9.x)](https://github.com/Chilledheart/yass/releases/tag/1.9.7) has become Stable since _May 14, 2024_
-- [Latest M124's Release (1.8.x)](https://github.com/Chilledheart/yass/releases/tag/1.8.7) has become Stable since _Apr 16, 2024_ (Extended Support)
-- [Latest M123's Release (1.7.x)](https://github.com/Chilledheart/yass/releases/tag/1.7.7) has become Stable since _Mar 19, 2024_
-- [Latest M122's Release (1.6.x)](https://github.com/Chilledheart/yass/releases/tag/1.6.5) has become Stable since _Feb 20, 2024_ (Extended Support)
-- [Latest M121's Release (1.5.x)](https://github.com/Chilledheart/yass/releases/tag/1.5.24) has become Stable since _Jan 23, 2024_
+- [Latest M130's Release (1.14.x)](https://github.com/Chilledheart/yass/releases/tag/1.14.0) will become Stable Release since _Oct 15, 2024_ (Extended Support).
+- [Latest M129's Release (1.13.x)](https://github.com/Chilledheart/yass/releases/tag/1.13.2) has become Stable Release since _Sep 17, 2024_.
+- [Latest M128's Release (1.12.x)](https://github.com/Chilledheart/yass/releases/tag/1.12.5) has become Stable Release since _Aug 20, 2024_ (Extended Support).
+- [Latest M127's Release (1.11.x)](https://github.com/Chilledheart/yass/releases/tag/1.11.5) has become Stable Release since _Jul 23, 2024_
+- [Latest M126's Release (1.10.x)](https://github.com/Chilledheart/yass/releases/tag/1.10.7) has become Stable Release since _Jun 11, 2024_ (Extended Support)
+- [Latest M125's Release (1.9.x)](https://github.com/Chilledheart/yass/releases/tag/1.9.7) has become Stable Release since _May 14, 2024_
+- [Latest M124's Release (1.8.x)](https://github.com/Chilledheart/yass/releases/tag/1.8.7) has become Stable Release since _Apr 16, 2024_ (Extended Support)
+- [Latest M123's Release (1.7.x)](https://github.com/Chilledheart/yass/releases/tag/1.7.7) has become Stable Release since _Mar 19, 2024_
+- [Latest M122's Release (1.6.x)](https://github.com/Chilledheart/yass/releases/tag/1.6.5) has become Stable Release since _Feb 20, 2024_ (Extended Support)
+- [Latest M121's Release (1.5.x)](https://github.com/Chilledheart/yass/releases/tag/1.5.24) has become Stable Release since _Jan 23, 2024_
### Prebuilt binaries (Linux)
- GTK3 [download rpm][gtk3_rpm_url] or [download deb][gtk3_deb_url] (minimum requirement: _CentOS 8_ or _Ubuntu 16.04_)
@@ -30,8 +28,6 @@ we are following [chromium's release schedule](https://chromiumdash.appspot.com/
- GTK4 [download rpm][gtk4_rpm_url] or [download deb][gtk4_deb_url] (minimum requirement: _openSUSE Leap 15.5_, _CentOS 9_ or _Ubuntu 22.04_)
- Qt6 [download rpm][qt6_rpm_url] or [download deb][qt6_deb_url] (minimum requirement: _openSUSE Leap 15.5_, _CentOS 9_ with epel or _Ubuntu 22.04_)
-- GTK4 (Archlinux) [download binary pkg file][gtk4_arch_url] (PGP Keys: `sudo pacman -S archlinuxcn-keyring`)
-
[](https://aur.archlinux.org/packages/yass-proxy-gtk3)
[](https://aur.archlinux.org/packages/yass-proxy-qt5)
[](https://aur.archlinux.org/packages/yass-proxy)
@@ -52,12 +48,6 @@ See [Status of Package Store](https://github.com/Chilledheart/yass/wiki/Status-o
- iOS [Continue to accept TestFlight invitation][ios_testflight_invitation] (require [TestFlight][ios_testflight_appstore_url] from _AppStore_, and _iOS 13.0_ or above)
- Windows [download 64-bit installer][windows_64_installer_url] (require [KB2999226] on _windows 7/8/8.1_) or [download 32-bit installer][windows_32_installer_url] (require [vc 2010 runtime][vs2010_x86] on _windows xp sp3_) or [download arm64 installer][windows_arm64_installer_url] (require _windows 10/11_)
- macOS [download intel dmg][macos_intel_dmg_url] or [download apple silicon dmg][macos_arm_dmg_url] (require _macOS 10.14_ or above)
-> via [Homebrew](https://brew.sh): `brew install --formula yass-cli`
-> via [Homebrew Cask](https://brew.sh): `brew install --cask yass`
-
-[](https://formulae.brew.sh/formula/yass-cli)
-[](https://formulae.brew.sh/formula/yass-cli)
-[](https://formulae.brew.sh/cask/yass)
- Flatpak for Linux (Qt5) [download flatpak][qt5_flatpak_x86_64_url] (unsandboxed edition) for _x86_64_ machine only.
@@ -143,46 +133,43 @@ Please visit [the pages site](https://letshack.info).
[](https://github.com/Chilledheart/yass/actions/workflows/releases-mingw.yml)
[](https://github.com/Chilledheart/yass/actions/workflows/clang-tidy.yml)
-[license-link]: LICENSE
-
[flathub_url]: https://flathub.org/apps/io.github.chilledheart.yass
[ios_testflight_invitation]: https://testflight.apple.com/join/6AkiEq09
[ios_testflight_appstore_url]: https://apps.apple.com/us/app/testflight/id899247664
[KB2999226]: https://support.microsoft.com/en-us/topic/update-for-universal-c-runtime-in-windows-c0514201-7fe6-95a3-b0a5-287930f3560c
[vs2010_x86]: https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe
-[gtk3_rpm_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass-gtk3.el8.x86_64.1.13.2.rpm
-[gtk3_deb_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass-gtk3-ubuntu-16.04-xenial_amd64.1.13.2.deb
-[qt5_rpm_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass-qt5.el8.x86_64.1.13.2.rpm
-[qt5_deb_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass-qt5-ubuntu-16.04-xenial_amd64.1.13.2.deb
-[gtk4_rpm_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass-gtk4.lp155.x86_64.1.13.2.rpm
-[gtk4_deb_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass-gtk4-ubuntu-22.04-jammy_amd64.1.13.2.deb
-[qt6_rpm_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass-qt6.lp155.x86_64.1.13.2.rpm
-[qt6_deb_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass-qt6-ubuntu-22.04-jammy_amd64.1.13.2.deb
+[gtk3_rpm_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass-gtk3.el8.x86_64.1.14.0.rpm
+[gtk3_deb_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass-gtk3-ubuntu-16.04-xenial_amd64.1.14.0.deb
+[qt5_rpm_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass-qt5.el8.x86_64.1.14.0.rpm
+[qt5_deb_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass-qt5-ubuntu-16.04-xenial_amd64.1.14.0.deb
+[gtk4_rpm_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass-gtk4.lp155.x86_64.1.14.0.rpm
+[gtk4_deb_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass-gtk4-ubuntu-22.04-jammy_amd64.1.14.0.deb
+[qt6_rpm_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass-qt6.lp155.x86_64.1.14.0.rpm
+[qt6_deb_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass-qt6-ubuntu-22.04-jammy_amd64.1.14.0.deb
-[qt5_flatpak_x86_64_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass-x86_64-1.13.2.flatpak
-[gtk4_arch_url]: https://repo.archlinuxcn.org/x86_64/yass-proxy-1.13.2-1-x86_64.pkg.tar.zst
+[qt5_flatpak_x86_64_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass-x86_64-1.14.0.flatpak
-[cli_tgz_amd64_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass_cli-linux-release-amd64-1.13.2.tgz
-[cli_tgz_i386_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass_cli-linux-release-amd64-1.13.2.tgz
-[cli_tgz_arm64_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass_cli-linux-release-arm64-1.13.2.tgz
-[cli_tgz_loongarch64_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass_cli-linux-release-loongarch64-1.13.2.tgz
-[cli_tgz_riscv64_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass_cli-linux-release-riscv64-1.13.2.tgz
-[cli_tgz_riscv32_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass_cli-linux-release-riscv32-1.13.2.tgz
+[cli_tgz_amd64_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass_cli-linux-release-amd64-1.14.0.tgz
+[cli_tgz_i386_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass_cli-linux-release-amd64-1.14.0.tgz
+[cli_tgz_arm64_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass_cli-linux-release-arm64-1.14.0.tgz
+[cli_tgz_loongarch64_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass_cli-linux-release-loongarch64-1.14.0.tgz
+[cli_tgz_riscv64_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass_cli-linux-release-riscv64-1.14.0.tgz
+[cli_tgz_riscv32_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass_cli-linux-release-riscv32-1.14.0.tgz
-[cli_openwrt_amd64_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass_cli-linux-openwrt-release-x86_64-1.13.2.tgz
-[cli_openwrt_i486_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass_cli-linux-openwrt-release-i486-1.13.2.tgz
-[cli_openwrt_aarch64_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass_cli-linux-openwrt-release-aarch64-1.13.2.tgz
+[cli_openwrt_amd64_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass_cli-linux-openwrt-release-x86_64-1.14.0.tgz
+[cli_openwrt_i486_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass_cli-linux-openwrt-release-i486-1.14.0.tgz
+[cli_openwrt_aarch64_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass_cli-linux-openwrt-release-aarch64-1.14.0.tgz
-[cli_musl_amd64_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass_cli-linux-musl-release-amd64-1.13.2.tgz
-[cli_musl_i386_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass_cli-linux-musl-release-i386-1.13.2.tgz
+[cli_musl_amd64_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass_cli-linux-musl-release-amd64-1.14.0.tgz
+[cli_musl_i386_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass_cli-linux-musl-release-i386-1.14.0.tgz
-[android_64_apk_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass-android-release-arm64-1.13.2.apk
-[android_32_apk_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass-android-release-arm-1.13.2.apk
+[android_64_apk_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass-android-release-arm64-1.14.0.apk
+[android_32_apk_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass-android-release-arm-1.14.0.apk
-[windows_64_installer_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass-mingw-win7-release-x86_64-1.13.2-system-installer.exe
-[windows_32_installer_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass-mingw-winxp-release-i686-1.13.2-system-installer.exe
+[windows_64_installer_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass-mingw-win7-release-x86_64-1.14.0-system-installer.exe
+[windows_32_installer_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass-mingw-winxp-release-i686-1.14.0-system-installer.exe
-[windows_arm64_installer_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass-mingw-release-aarch64-1.13.2-system-installer.exe
-[macos_intel_dmg_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass-macos-release-x64-1.13.2.dmg
-[macos_arm_dmg_url]: https://github.com/Chilledheart/yass/releases/download/1.13.2/yass-macos-release-arm64-1.13.2.dmg
+[windows_arm64_installer_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass-mingw-release-aarch64-1.14.0-system-installer.exe
+[macos_intel_dmg_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass-macos-release-x64-1.14.0.dmg
+[macos_arm_dmg_url]: https://github.com/Chilledheart/yass/releases/download/1.14.0/yass-macos-release-arm64-1.14.0.dmg
diff --git a/yass/debian/changelog b/yass/debian/changelog
index 24d352cca3..1f44330d36 100644
--- a/yass/debian/changelog
+++ b/yass/debian/changelog
@@ -1,3 +1,11 @@
+yass (1.14.0-1) UNRELEASED; urgency=medium
+
+ * bump to chromium 130 dependents.
+ * config: use jsoncpp for configuration reader and writer.
+ * net: apply tcp congestion only to connections between cli and server.
+ * c-ares: backport some patches from upstream.
+
+ -- Chilledheart Tue, 17 Sep 2024 08:29:20 +0800
yass (1.13.2-1) UNRELEASED; urgency=medium
* some trivial changes.
diff --git a/yass/debian/copyright b/yass/debian/copyright
index ad0f285065..f044f617f3 100644
--- a/yass/debian/copyright
+++ b/yass/debian/copyright
@@ -7,10 +7,6 @@ Files: *
Copyright: 2019-2024, Chilledheart
License: GPL-2
-Files: third_party/chromium/*
-Copyright: 2015 The Chromium Authors
-License: BSD-3-clause
-
Files: debian/*
Copyright: 2019-2024, Chilledheart
License: GPL-2
@@ -36,30 +32,3 @@ License: GPL-2
On Debian systems, the full text of the GNU General Public
License version 2 can be found in the file
`/usr/share/common-licenses/GPL-2'.
-
-License: BSD-3-clause
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are
- met:
-
- * Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above
- copyright notice, this list of conditions and the following disclaimer
- in the documentation and/or other materials provided with the
- distribution.
- * Neither the name of Google Inc. nor the names of its
- contributors may be used to endorse or promote products derived from
- this software without specific prior written permission.
-
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/yass/src/config/config_impl_local.hpp b/yass/src/config/config_impl_local.hpp
index 50619953ff..4fd4167d1c 100644
--- a/yass/src/config/config_impl_local.hpp
+++ b/yass/src/config/config_impl_local.hpp
@@ -24,12 +24,7 @@
#include "core/utils.hpp"
#include "core/utils_fs.hpp"
-#ifdef HAVE_JSONCPP
#include
-#else
-#include
-using json = nlohmann::json;
-#endif
using namespace yass;
@@ -60,7 +55,6 @@ class ConfigImplLocal : public ConfigImpl {
break;
}
std::string_view json_content(buffer, ret);
-#ifdef HAVE_JSONCPP
Json::CharReaderBuilder builder;
builder["collectComments"] = false;
Json::String err;
@@ -74,13 +68,6 @@ class ConfigImplLocal : public ConfigImpl {
std::cerr << "bad config file: " << path_ << " content: \"" << json_content << "\"" << std::endl;
break;
}
-#else
- root_ = json::parse(json_content, nullptr, false);
- if (root_.is_discarded() || !root_.is_object()) {
- std::cerr << "bad config file: " << path_ << " content: \"" << json_content << "\"" << std::endl;
- break;
- }
-#endif
std::cerr << "loaded from config file: " << path_ << std::endl;
return true;
} while (false);
@@ -89,11 +76,7 @@ class ConfigImplLocal : public ConfigImpl {
return false;
}
-#ifdef HAVE_JSONCPP
root_ = Json::objectValue;
-#else
- root_ = json::object();
-#endif
return true;
}
@@ -109,16 +92,10 @@ class ConfigImplLocal : public ConfigImpl {
std::cerr << "configure dir could not create: " << dir << std::endl;
return false;
}
-#ifdef HAVE_JSONCPP
Json::StreamWriterBuilder builder;
builder["commentStyle"] = "None";
builder["indentation"] = " ";
const std::string json_content = Json::writeString(builder, root_);
-#else
- // Call with defaults except in the case of UTF-8 errors which we replace
- // invalid UTF-8 characters instead of throwing an exception.
- const std::string json_content = root_.dump(4, ' ', false, nlohmann::detail::error_handler_t::replace);
-#endif
if (static_cast(json_content.size()) != WriteFileWithBuffer(path_, json_content)) {
std::cerr << "failed to write to path: \"" << path_ << " with content \"" << json_content << "\"" << std::endl;
return false;
@@ -131,145 +108,79 @@ class ConfigImplLocal : public ConfigImpl {
}
bool HasKeyStringImpl(const std::string& key) override {
-#ifdef HAVE_JSONCPP
return root_.isMember(key) && root_[key].isString();
-#else
- return root_.contains(key) && root_[key].is_string();
-#endif
}
bool HasKeyBoolImpl(const std::string& key) override {
-#ifdef HAVE_JSONCPP
return root_.isMember(key) && root_[key].isBool();
-#else
- return root_.contains(key) && root_[key].is_boolean();
-#endif
}
bool HasKeyUint32Impl(const std::string& key) override {
-#ifdef HAVE_JSONCPP
return root_.isMember(key) && root_[key].isUInt();
-#else
- return root_.contains(key) && root_[key].is_number_unsigned() && root_[key].is_number_integer();
-#endif
}
bool HasKeyUint64Impl(const std::string& key) override {
-#ifdef HAVE_JSONCPP
return root_.isMember(key) && root_[key].isUInt64();
-#else
- return root_.contains(key) && root_[key].is_number_unsigned() && root_[key].is_number_integer();
-#endif
}
bool HasKeyInt32Impl(const std::string& key) override {
-#ifdef HAVE_JSONCPP
return root_.isMember(key) && root_[key].isInt();
-#else
- return root_.contains(key) && root_[key].is_number_integer();
-#endif
}
bool HasKeyInt64Impl(const std::string& key) override {
-#ifdef HAVE_JSONCPP
return root_.isMember(key) && root_[key].isInt64();
-#else
- return root_.contains(key) && root_[key].is_number_integer();
-#endif
}
bool ReadImpl(const std::string& key, std::string* value) override {
-#ifdef HAVE_JSONCPP
if (root_.isMember(key) && root_[key].isString()) {
*value = root_[key].asString();
return true;
}
-#else
- if (root_.contains(key) && root_[key].is_string()) {
- *value = root_[key].get();
- return true;
- }
-#endif
std::cerr << "bad field: " << key << std::endl;
return false;
}
bool ReadImpl(const std::string& key, bool* value) override {
-#ifdef HAVE_JSONCPP
if (root_.isMember(key) && root_[key].isBool()) {
*value = root_[key].asBool();
return true;
}
-#else
- if (root_.contains(key) && root_[key].is_boolean()) {
- *value = root_[key].get();
- return true;
- }
-#endif
std::cerr << "bad field: " << key << std::endl;
return false;
}
bool ReadImpl(const std::string& key, uint32_t* value) override {
-#ifdef HAVE_JSONCPP
if (root_.isMember(key) && root_[key].isUInt()) {
*value = root_[key].asUInt();
return true;
}
-#else
- if (root_.contains(key) && root_[key].is_number_unsigned() && root_[key].is_number_integer()) {
- *value = root_[key].get();
- return true;
- }
-#endif
std::cerr << "bad field: " << key << std::endl;
return false;
}
bool ReadImpl(const std::string& key, int32_t* value) override {
-#ifdef HAVE_JSONCPP
if (root_.isMember(key) && root_[key].isInt()) {
*value = root_[key].asInt();
return true;
}
-#else
- if (root_.contains(key) && root_[key].is_number_integer()) {
- *value = root_[key].get();
- return true;
- }
-#endif
std::cerr << "bad field: " << key << std::endl;
return false;
}
bool ReadImpl(const std::string& key, uint64_t* value) override {
-#ifdef HAVE_JSONCPP
if (root_.isMember(key) && root_[key].isUInt64()) {
*value = root_[key].asUInt64();
return true;
}
-#else
- if (root_.contains(key) && root_[key].is_number_unsigned() && root_[key].is_number_integer()) {
- *value = root_[key].get();
- return true;
- }
-#endif
std::cerr << "bad field: " << key << std::endl;
return false;
}
bool ReadImpl(const std::string& key, int64_t* value) override {
-#ifdef HAVE_JSONCPP
if (root_.isMember(key) && root_[key].isInt64()) {
*value = root_[key].asInt64();
return true;
}
-#else
- if (root_.contains(key) && root_[key].is_number_integer()) {
- *value = root_[key].get();
- return true;
- }
-#endif
std::cerr << "bad field: " << key << std::endl;
return false;
}
@@ -305,26 +216,13 @@ class ConfigImplLocal : public ConfigImpl {
}
bool DeleteImpl(const std::string& key) override {
-#ifdef HAVE_JSONCPP
Json::Value got;
return root_.removeMember(key, &got);
-#else
- auto iter = root_.find(key);
- if (iter != root_.end()) {
- root_.erase(iter);
- return true;
- }
- return false;
-#endif
}
private:
std::string path_;
-#ifdef HAVE_JSONCPP
Json::Value root_;
-#else
- json root_;
-#endif
};
} // namespace config
diff --git a/yass/src/gtk4/yass.cpp b/yass/src/gtk4/yass.cpp
index 922354be12..be100ebc74 100644
--- a/yass/src/gtk4/yass.cpp
+++ b/yass/src/gtk4/yass.cpp
@@ -32,7 +32,7 @@ ABSL_FLAG(bool, background, false, "start up background");
YASSApp* mApp = nullptr;
-static const char* kAppId = "io.github.Chilledheart.yass";
+static const char* kAppId = "io.github.chilledheart.yass";
static const char* kAppName = YASS_APP_PRODUCT_NAME;
extern "C" {
diff --git a/yass/src/gtk4/yass_window.ui b/yass/src/gtk4/yass_window.ui
index 9764307fac..6aa20b55aa 100644
--- a/yass/src/gtk4/yass_window.ui
+++ b/yass/src/gtk4/yass_window.ui
@@ -9,7 +9,7 @@
diff --git a/yass/src/ios/utils.cpp b/yass/src/ios/utils.cpp
index cf47680dd6..86c16ff504 100644
--- a/yass/src/ios/utils.cpp
+++ b/yass/src/ios/utils.cpp
@@ -9,15 +9,9 @@
#include
#include
-#ifdef HAVE_JSONCPP
#include
-#else
-#include
-using json = nlohmann::json;
-#endif
std::string serializeTelemetryJson(uint64_t total_rx_bytes, uint64_t total_tx_bytes) {
-#ifdef HAVE_JSONCPP
Json::Value j = Json::objectValue;
j["total_rx_bytes"] = total_rx_bytes;
j["total_tx_bytes"] = total_tx_bytes;
@@ -25,16 +19,9 @@ std::string serializeTelemetryJson(uint64_t total_rx_bytes, uint64_t total_tx_by
builder["commentStyle"] = "None";
builder["indentation"] = " ";
return Json::writeString(builder, j);
-#else
- json j;
- j["total_rx_bytes"] = total_rx_bytes;
- j["total_tx_bytes"] = total_tx_bytes;
- return j.dump(4);
-#endif
}
bool parseTelemetryJson(std::string_view resp, uint64_t* total_rx_bytes, uint64_t* total_tx_bytes) {
-#ifdef HAVE_JSONCPP
Json::Value root;
Json::CharReaderBuilder builder;
builder["collectComments"] = false;
@@ -54,19 +41,5 @@ bool parseTelemetryJson(std::string_view resp, uint64_t* total_rx_bytes, uint64_
if (root.isMember("total_tx_bytes") && root["total_tx_bytes"].isUInt64()) {
*total_tx_bytes = root["total_tx_bytes"].asUInt64();
}
-#else
- auto root = json::parse(resp, nullptr, false);
- if (root.is_discarded() || !root.is_object()) {
- return false;
- }
- *total_rx_bytes = 0;
- if (root.contains("total_rx_bytes") && root["total_rx_bytes"].is_number_unsigned()) {
- *total_rx_bytes = root["total_rx_bytes"].get();
- }
- *total_tx_bytes = 0;
- if (root.contains("total_tx_bytes") && root["total_tx_bytes"].is_number_unsigned()) {
- *total_tx_bytes = root["total_tx_bytes"].get();
- }
-#endif
return true;
}
diff --git a/yass/src/net/content_server.hpp b/yass/src/net/content_server.hpp
index e495b0c373..d9d650ba06 100644
--- a/yass/src/net/content_server.hpp
+++ b/yass/src/net/content_server.hpp
@@ -80,6 +80,10 @@ class ContentServer {
VLOG(1) << "ContentServer (" << T::Name << ") "
<< " freed memory";
+ CHECK_EQ(pending_next_listen_ctxes_.size(), 0u) << "ContentServer freed on pending listen ctx";
+ CHECK_EQ(opened_connections_, 0u) << "ContentServer freed on non-closed connections";
+ CHECK_EQ(connection_map_.size(), 0u) << "ContentServer freed on non-closed connections";
+
client_instance_ = nullptr;
work_guard_.reset();
@@ -170,6 +174,9 @@ class ContentServer {
}
}
}
+
+ pending_next_listen_ctxes_.clear();
+
if (connection_map_.empty()) {
LOG(WARNING) << "No more connections alive... ready to stop";
work_guard_.reset();
@@ -196,6 +203,8 @@ class ContentServer {
}
}
+ pending_next_listen_ctxes_.clear();
+
auto connection_map = std::move(connection_map_);
// FIXME silence some false-positive warning from abseil-cpp
connection_map_ = absl::flat_hash_map>();
diff --git a/yass/third_party/json/.cirrus.yml b/yass/third_party/json/.cirrus.yml
deleted file mode 100644
index be63315062..0000000000
--- a/yass/third_party/json/.cirrus.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-arm_container:
- image: gcc:latest
-
-check_task:
- check_script:
- - wget https://github.com/Kitware/CMake/releases/download/v3.20.2/cmake-3.20.2.tar.gz
- - tar xfz cmake-3.20.2.tar.gz
- - cd cmake-3.20.2
- - ./configure
- - make cmake ctest -j4
- - cd ..
- - mkdir build
- - cd build
- - ../cmake-3.20.2/bin/cmake .. -DJSON_FastTests=ON
- - make -j4
- - cd tests
- - ../../cmake-3.20.2/bin/ctest -j4
diff --git a/yass/third_party/json/.clang-format b/yass/third_party/json/.clang-format
deleted file mode 100644
index 5b9e3fd530..0000000000
--- a/yass/third_party/json/.clang-format
+++ /dev/null
@@ -1,84 +0,0 @@
-#AccessModifierOffset: 2
-AlignAfterOpenBracket: Align
-AlignConsecutiveAssignments: false
-#AlignConsecutiveBitFields: false
-AlignConsecutiveDeclarations: false
-AlignConsecutiveMacros: false
-AlignEscapedNewlines: Right
-#AlignOperands: AlignAfterOperator
-AlignTrailingComments: true
-AllowAllArgumentsOnNextLine: false
-AllowAllConstructorInitializersOnNextLine: false
-AllowAllParametersOfDeclarationOnNextLine: false
-AllowShortBlocksOnASingleLine: Empty
-AllowShortCaseLabelsOnASingleLine: false
-#AllowShortEnumsOnASingleLine: true
-AllowShortFunctionsOnASingleLine: Empty
-AllowShortIfStatementsOnASingleLine: Never
-AllowShortLambdasOnASingleLine: Empty
-AllowShortLoopsOnASingleLine: false
-AlwaysBreakAfterReturnType: None
-AlwaysBreakBeforeMultilineStrings: false
-AlwaysBreakTemplateDeclarations: Yes
-BinPackArguments: false
-BinPackParameters: false
-#BitFieldColonSpacing: Both
-BreakBeforeBraces: Custom # or Allman
-BraceWrapping:
- AfterCaseLabel: true
- AfterClass: true
- AfterControlStatement: Always
- AfterEnum: true
- AfterFunction: true
- AfterNamespace: false
- AfterStruct: true
- AfterUnion: true
- AfterExternBlock: false
- BeforeCatch: true
- BeforeElse: true
- #BeforeLambdaBody: false
- #BeforeWhile: false
- SplitEmptyFunction: false
- SplitEmptyRecord: false
- SplitEmptyNamespace: false
-BreakBeforeTernaryOperators: true
-BreakConstructorInitializers: BeforeComma
-BreakStringLiterals: false
-ColumnLimit: 0
-CompactNamespaces: false
-ConstructorInitializerIndentWidth: 2
-Cpp11BracedListStyle: true
-PointerAlignment: Left
-FixNamespaceComments: true
-IncludeBlocks: Preserve
-#IndentCaseBlocks: false
-IndentCaseLabels: true
-IndentGotoLabels: false
-IndentPPDirectives: BeforeHash
-IndentWidth: 4
-KeepEmptyLinesAtTheStartOfBlocks: false
-MaxEmptyLinesToKeep: 1
-NamespaceIndentation: None
-ReflowComments: false
-SortIncludes: true
-SortUsingDeclarations: true
-SpaceAfterCStyleCast: false
-SpaceAfterLogicalNot: false
-SpaceAfterTemplateKeyword: false
-SpaceBeforeAssignmentOperators: true
-SpaceBeforeCpp11BracedList: false
-SpaceBeforeParens: ControlStatements
-SpaceBeforeRangeBasedForLoopColon: true
-SpaceBeforeSquareBrackets: false
-SpaceInEmptyBlock: false
-SpaceInEmptyParentheses: false
-SpacesBeforeTrailingComments: 2
-SpacesInAngles: false
-SpacesInCStyleCastParentheses: false
-SpacesInConditionalStatement: false
-SpacesInContainerLiterals: false
-SpacesInParentheses: false
-SpacesInSquareBrackets: false
-Standard: c++11
-TabWidth: 4
-UseTab: Never
diff --git a/yass/third_party/json/.clang-tidy b/yass/third_party/json/.clang-tidy
deleted file mode 100644
index 339360b085..0000000000
--- a/yass/third_party/json/.clang-tidy
+++ /dev/null
@@ -1,65 +0,0 @@
-Checks: '*,
- -altera-id-dependent-backward-branch,
- -altera-struct-pack-align,
- -altera-unroll-loops,
- -android-cloexec-fopen,
- -bugprone-easily-swappable-parameters,
- -cert-err58-cpp,
- -concurrency-mt-unsafe,
- -cppcoreguidelines-avoid-const-or-ref-data-members,
- -cppcoreguidelines-avoid-do-while,
- -cppcoreguidelines-avoid-goto,
- -cppcoreguidelines-avoid-magic-numbers,
- -cppcoreguidelines-avoid-non-const-global-variables,
- -cppcoreguidelines-macro-usage,
- -cppcoreguidelines-pro-bounds-array-to-pointer-decay,
- -cppcoreguidelines-pro-bounds-constant-array-index,
- -cppcoreguidelines-pro-bounds-pointer-arithmetic,
- -cppcoreguidelines-pro-type-reinterpret-cast,
- -cppcoreguidelines-pro-type-union-access,
- -cppcoreguidelines-rvalue-reference-param-not-moved,
- -cppcoreguidelines-virtual-class-destructor,
- -fuchsia-default-arguments-calls,
- -fuchsia-default-arguments-declarations,
- -fuchsia-overloaded-operator,
- -google-explicit-constructor,
- -google-readability-function-size,
- -google-runtime-int,
- -google-runtime-references,
- -hicpp-avoid-goto,
- -hicpp-explicit-conversions,
- -hicpp-function-size,
- -hicpp-no-array-decay,
- -hicpp-no-assembler,
- -hicpp-signed-bitwise,
- -hicpp-uppercase-literal-suffix,
- -llvm-header-guard,
- -llvm-include-order,
- -llvmlibc-*,
- -misc-use-anonymous-namespace,
- -misc-confusable-identifiers,
- -misc-include-cleaner,
- -misc-no-recursion,
- -misc-non-private-member-variables-in-classes,
- -modernize-concat-nested-namespaces,
- -modernize-type-traits,
- -modernize-use-constraints,
- -modernize-use-nodiscard,
- -modernize-use-trailing-return-type,
- -performance-enum-size,
- -readability-function-cognitive-complexity,
- -readability-function-size,
- -readability-identifier-length,
- -readability-magic-numbers,
- -readability-redundant-access-specifiers,
- -readability-simplify-boolean-expr,
- -readability-uppercase-literal-suffix'
-
-CheckOptions:
- - key: hicpp-special-member-functions.AllowSoleDefaultDtor
- value: 1
-
-WarningsAsErrors: '*'
-
-#HeaderFilterRegex: '.*nlohmann.*'
-HeaderFilterRegex: '.*hpp$'
diff --git a/yass/third_party/json/.github/CODEOWNERS b/yass/third_party/json/.github/CODEOWNERS
deleted file mode 100644
index e1e1040fc6..0000000000
--- a/yass/third_party/json/.github/CODEOWNERS
+++ /dev/null
@@ -1,6 +0,0 @@
-# JSON for Modern C++ was originally written by Niels Lohmann.
-# Since 2013, over 250 contributors have helped to improve the library.
-# This CODEOWNERS file is only to make sure that @nlohmann is requested
-# for a code review in case of a pull request.
-
-* @nlohmann
diff --git a/yass/third_party/json/.github/CODE_OF_CONDUCT.md b/yass/third_party/json/.github/CODE_OF_CONDUCT.md
deleted file mode 100644
index 770b8173e1..0000000000
--- a/yass/third_party/json/.github/CODE_OF_CONDUCT.md
+++ /dev/null
@@ -1,46 +0,0 @@
-# Contributor Covenant Code of Conduct
-
-## Our Pledge
-
-In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
-
-## Our Standards
-
-Examples of behavior that contributes to creating a positive environment include:
-
-* Using welcoming and inclusive language
-* Being respectful of differing viewpoints and experiences
-* Gracefully accepting constructive criticism
-* Focusing on what is best for the community
-* Showing empathy towards other community members
-
-Examples of unacceptable behavior by participants include:
-
-* The use of sexualized language or imagery and unwelcome sexual attention or advances
-* Trolling, insulting/derogatory comments, and personal or political attacks
-* Public or private harassment
-* Publishing others' private information, such as a physical or electronic address, without explicit permission
-* Other conduct which could reasonably be considered inappropriate in a professional setting
-
-## Our Responsibilities
-
-Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
-
-Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
-
-## Scope
-
-This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
-
-## Enforcement
-
-Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at mail@nlohmann.me. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
-
-Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
-
-## Attribution
-
-This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
-
-[homepage]: http://contributor-covenant.org
-[version]: http://contributor-covenant.org/version/1/4/
diff --git a/yass/third_party/json/.github/CONTRIBUTING.md b/yass/third_party/json/.github/CONTRIBUTING.md
deleted file mode 100644
index 4d33c67bf2..0000000000
--- a/yass/third_party/json/.github/CONTRIBUTING.md
+++ /dev/null
@@ -1,71 +0,0 @@
-[](http://issuestats.com/github/nlohmann/json) [](http://issuestats.com/github/nlohmann/json)
-
-# How to contribute
-
-This project started as a little excuse to exercise some of the cool new C++11 features. Over time, people actually started to use the JSON library (yey!) and started to help improve it by proposing features, finding bugs, or even fixing my mistakes. I am really [thankful](https://github.com/nlohmann/json/blob/master/README.md#thanks) for this and try to keep track of all the helpers.
-
-To make it as easy as possible for you to contribute and for me to keep an overview, here are a few guidelines which should help us avoid all kinds of unnecessary work or disappointment. And of course, this document is subject to discussion, so please [create an issue](https://github.com/nlohmann/json/issues/new/choose) or a pull request if you find a way to improve it!
-
-## Private reports
-
-Usually, all issues are tracked publicly on [GitHub](https://github.com/nlohmann/json/issues). If you want to make a private report (e.g., for a vulnerability or to attach an example that is not meant to be published), please send an email to .
-
-## Prerequisites
-
-Please [create an issue](https://github.com/nlohmann/json/issues/new/choose), assuming one does not already exist, and describe your concern. Note you need a [GitHub account](https://github.com/signup/free) for this.
-
-## Describe your issue
-
-Clearly describe the issue:
-
-- If it is a bug, please describe how to **reproduce** it. If possible, attach a complete example which demonstrates the error. Please also state what you **expected** to happen instead of the error.
-- If you propose a change or addition, try to give an **example** how the improved code could look like or how to use it.
-- If you found a compilation error, please tell us which **compiler** (version and operating system) you used and paste the (relevant part of) the error messages to the ticket.
-
-Please stick to the provided issue template ([bug report](https://github.com/nlohmann/json/blob/develop/.github/ISSUE_TEMPLATE/bug.yml) if possible. For questions, feature or support requests, please [open a discussion](https://github.com/nlohmann/json/discussions/new).
-
-## Files to change
-
-:exclamation: Before you make any changes, note the single-header files [`single_include/nlohmann/json.hpp`](https://github.com/nlohmann/json/blob/develop/single_include/nlohmann/json.hpp) and [`single_include/nlohmann/json_fwd.hpp`](https://github.com/nlohmann/json/blob/develop/single_include/nlohmann/json_fwd.hpp) are **generated** from the source files in the [`include/nlohmann` directory](https://github.com/nlohmann/json/tree/develop/include/nlohmann). Please **do not** edit the files `single_include/nlohmann/json.hpp` and `single_include/nlohmann/json_fwd.hpp` directly, but change the `include/nlohmann` sources and regenerate the files by executing `make amalgamate`.
-
-To make changes, you need to edit the following files:
-
-1. [`include/nlohmann/*`](https://github.com/nlohmann/json/tree/develop/include/nlohmann) - These files are the sources of the library. Before testing or creating a pull request, execute `make amalgamate` to regenerate `single_include/nlohmann/json.hpp` and `single_include/nlohmann/json_fwd.hpp`.
-
-2. [`tests/src/unit-*.cpp`](https://github.com/nlohmann/json/tree/develop/tests/src) - These files contain the [doctest](https://github.com/onqtam/doctest) unit tests which currently cover [100 %](https://coveralls.io/github/nlohmann/json) of the library's code. Before creating a pull request, execute `make pretty` to make sure that the style is correct, as this will be checked by the CI.
-
- If you add or change a feature, please also add a unit test to this file. The unit tests can be compiled and executed with
-
- ```sh
- $ mkdir build
- $ cd build
- $ cmake ..
- $ cmake --build .
- $ ctest
- ```
-
- The test cases are also executed with several different compilers on [Travis](https://travis-ci.org/nlohmann/json) once you open a pull request.
-
-
-## Note
-
-- If you open a pull request, the code will be automatically tested with [Valgrind](http://valgrind.org)'s Memcheck tool to detect memory leaks. Please be aware that the execution with Valgrind _may_ in rare cases yield different behavior than running the code directly. This can result in failing unit tests which run successfully without Valgrind.
-- There is a Makefile target `make pretty` which runs [Artistic Style](http://astyle.sourceforge.net) to fix indentation. If possible, run it before opening the pull request. Otherwise, we shall run it afterward.
-
-## Please don't
-
-- The C++11 support varies between different **compilers** and versions. Please note the [list of supported compilers](https://github.com/nlohmann/json/blob/master/README.md#supported-compilers). Some compilers like GCC 4.7 (and earlier), Clang 3.3 (and earlier), or Microsoft Visual Studio 13.0 and earlier are known not to work due to missing or incomplete C++11 support. Please refrain from proposing changes that work around these compiler's limitations with `#ifdef`s or other means.
-- Specifically, I am aware of compilation problems with **Microsoft Visual Studio** (there even is an [issue label](https://github.com/nlohmann/json/issues?utf8=✓&q=label%3A%22visual+studio%22+) for this kind of bug). I understand that even in 2016, complete C++11 support isn't there yet. But please also understand that I do not want to drop features or uglify the code just to make Microsoft's sub-standard compiler happy. The past has shown that there are ways to express the functionality such that the code compiles with the most recent MSVC - unfortunately, this is not the main objective of the project.
-- Please refrain from proposing changes that would **break [JSON](https://json.org) conformance**. If you propose a conformant extension of JSON to be supported by the library, please motivate this extension.
- - We shall not extend the library to **support comments**. There is quite some [controversy](https://www.reddit.com/r/programming/comments/4v6chu/why_json_doesnt_support_comments_douglas_crockford/) around this topic, and there were quite some [issues](https://github.com/nlohmann/json/issues/376) on this. We believe that JSON is fine without comments.
- - We do not preserve the **insertion order of object elements**. The [JSON standard](https://tools.ietf.org/html/rfc8259.html) defines objects as "an unordered collection of zero or more name/value pairs". To this end, this library does not preserve insertion order of name/value pairs. (In fact, keys will be traversed in alphabetical order as `std::map` with `std::less` is used by default.) Note this behavior conforms to the standard, and we shall not change it to any other order. If you do want to preserve the insertion order, you can specialize the object type with containers like [`tsl::ordered_map`](https://github.com/Tessil/ordered-map) or [`nlohmann::fifo_map`](https://github.com/nlohmann/fifo_map).
-
-- Please do not open pull requests that address **multiple issues**.
-
-## Wanted
-
-The following areas really need contribution:
-
-- Extending the **continuous integration** toward more exotic compilers such as Android NDK, Intel's Compiler, or the bleeding-edge versions Clang.
-- Improving the efficiency of the **JSON parser**. The current parser is implemented as a naive recursive descent parser with hand coded string handling. More sophisticated approaches like LALR parsers would be really appreciated. That said, parser generators like Bison or ANTLR do not play nice with single-header files -- I really would like to keep the parser inside the `json.hpp` header, and I am not aware of approaches similar to [`re2c`](http://re2c.org) for parsing.
-- Extending and updating existing **benchmarks** to include (the most recent version of) this library. Though efficiency is not everything, speed and memory consumption are very important characteristics for C++ developers, so having proper comparisons would be interesting.
diff --git a/yass/third_party/json/.github/FUNDING.yml b/yass/third_party/json/.github/FUNDING.yml
deleted file mode 100644
index a6c972e819..0000000000
--- a/yass/third_party/json/.github/FUNDING.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-github: nlohmann
-custom: http://paypal.me/nlohmann
diff --git a/yass/third_party/json/.github/ISSUE_TEMPLATE/bug.yaml b/yass/third_party/json/.github/ISSUE_TEMPLATE/bug.yaml
deleted file mode 100644
index f7acdf18b2..0000000000
--- a/yass/third_party/json/.github/ISSUE_TEMPLATE/bug.yaml
+++ /dev/null
@@ -1,93 +0,0 @@
-name: Bug Report
-description: Create a bug report
-labels:
- - 'kind: bug'
-body:
- - type: markdown
- attributes:
- value: >
- Thanks for taking the time to fill out this bug report!
-
- Make sure you give it a short and specific **title** so that the report
- is searchable and uniquely identifiable.
-
- Note that this form is for bug reports only. Please
- [open a discussion](https://github.com/nlohmann/json/discussions/new)
- for questions, feature requests, or support requests
- - type: textarea
- id: summary
- attributes:
- label: Description
- description: >
- Please provide an abstract description of the issue to the developers,
- and why you consider it to be a bug. Please include any specific links
- to the documentation, JSON specification, or code.
- validations:
- required: true
- - type: textarea
- id: reproduce
- attributes:
- label: Reproduction steps
- description: >
- How do you trigger the bug? Please walk us through step by step. Be as
- specific as possible.
- validations:
- required: true
- - type: textarea
- id: results
- attributes:
- label: Expected vs. actual results
- description: >
- Please describe what you expected to happen after the steps above and
- what actually happened.
- validations:
- required: true
- - type: textarea
- id: code
- attributes:
- label: Minimal code example
- description: >
- If possible, provide a small and self-contained example that triggers
- the bug. Please understand that we cannot analyze and debug large code
- bases. Please do not paste screenshots here.
- render: Shell
- - type: textarea
- id: output
- attributes:
- label: Error messages
- description: >
- Please provide any kind of error output (compilation errors, exception
- messages, stack traces, etc.) which can help to diagnose the error.
- render: Shell
- - type: input
- id: compiler
- attributes:
- label: Compiler and operating system
- description: >
- On which operating systems and compilers have you observed the issue?
- Include as many relevant details about the environment you experienced
- the bug in. Make sure you use a
- [supported compiler](https://github.com/nlohmann/json#supported-compilers).
- validations:
- required: true
- - type: input
- id: version
- attributes:
- label: Library version
- description: >
- Which version of the library did you use? If it is a released version,
- please enter the version number (e.g., 3.11.3). Otherwise, please enter
- the commit hash. If you got the library from another source as the
- GitHub repository (e.g., via a package manager), please also state
- this.
- validations:
- required: true
- - type: checkboxes
- id: validation
- attributes:
- label: Validation
- description: >
- Please check these additional steps:
- options:
- - label: The bug also occurs if the latest version from the [`develop`](https://github.com/nlohmann/json/tree/develop) branch is used.
- - label: I can successfully [compile and run the unit tests](https://github.com/nlohmann/json#execute-unit-tests).
diff --git a/yass/third_party/json/.github/ISSUE_TEMPLATE/config.yml b/yass/third_party/json/.github/ISSUE_TEMPLATE/config.yml
deleted file mode 100644
index 0e96633842..0000000000
--- a/yass/third_party/json/.github/ISSUE_TEMPLATE/config.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-blank_issues_enabled: false
-contact_links:
- - name: Ask a question
- url: https://github.com/nlohmann/json/discussions
- about: Ask questions and discuss with other community members
diff --git a/yass/third_party/json/.github/PULL_REQUEST_TEMPLATE.md b/yass/third_party/json/.github/PULL_REQUEST_TEMPLATE.md
deleted file mode 100644
index c9c7cb7931..0000000000
--- a/yass/third_party/json/.github/PULL_REQUEST_TEMPLATE.md
+++ /dev/null
@@ -1,19 +0,0 @@
-[Describe your pull request here. Please read the text below the line, and make sure you follow the checklist.]
-
-* * *
-
-## Pull request checklist
-
-Read the [Contribution Guidelines](https://github.com/nlohmann/json/blob/develop/.github/CONTRIBUTING.md) for detailed information.
-
-- [ ] Changes are described in the pull request, or an [existing issue is referenced](https://github.com/nlohmann/json/issues).
-- [ ] The test suite [compiles and runs](https://github.com/nlohmann/json/blob/develop/README.md#execute-unit-tests) without error.
-- [ ] [Code coverage](https://coveralls.io/github/nlohmann/json) is 100%. Test cases can be added by editing the [test suite](https://github.com/nlohmann/json/tree/develop/test/src).
-- [ ] The source code is amalgamated; that is, after making changes to the sources in the `include/nlohmann` directory, run `make amalgamate` to create the single-header files `single_include/nlohmann/json.hpp` and `single_include/nlohmann/json_fwd.hpp`. The whole process is described [here](https://github.com/nlohmann/json/blob/develop/.github/CONTRIBUTING.md#files-to-change).
-
-## Please don't
-
-- The C++11 support varies between different **compilers** and versions. Please note the [list of supported compilers](https://github.com/nlohmann/json/blob/master/README.md#supported-compilers). Some compilers like GCC 4.7 (and earlier), Clang 3.3 (and earlier), or Microsoft Visual Studio 13.0 and earlier are known not to work due to missing or incomplete C++11 support. Please refrain from proposing changes that work around these compiler's limitations with `#ifdef`s or other means.
-- Specifically, I am aware of compilation problems with **Microsoft Visual Studio** (there even is an [issue label](https://github.com/nlohmann/json/issues?utf8=✓&q=label%3A%22visual+studio%22+) for this kind of bug). I understand that even in 2016, complete C++11 support isn't there yet. But please also understand that I do not want to drop features or uglify the code just to make Microsoft's sub-standard compiler happy. The past has shown that there are ways to express the functionality such that the code compiles with the most recent MSVC - unfortunately, this is not the main objective of the project.
-- Please refrain from proposing changes that would **break [JSON](https://json.org) conformance**. If you propose a conformant extension of JSON to be supported by the library, please motivate this extension.
-- Please do not open pull requests that address **multiple issues**.
diff --git a/yass/third_party/json/.github/SECURITY.md b/yass/third_party/json/.github/SECURITY.md
deleted file mode 100644
index 4d010ebda9..0000000000
--- a/yass/third_party/json/.github/SECURITY.md
+++ /dev/null
@@ -1,5 +0,0 @@
-# Security Policy
-
-## Reporting a Vulnerability
-
-Usually, all issues are tracked publicly on [GitHub](https://github.com/nlohmann/json/issues). If you want to make a private report (e.g., for a vulnerability or to attach an example that is not meant to be published), please send an email to . You can use [this key](https://keybase.io/nlohmann/pgp_keys.asc?fingerprint=797167ae41c0a6d9232e48457f3cea63ae251b69) for encryption.
diff --git a/yass/third_party/json/.github/config.yml b/yass/third_party/json/.github/config.yml
deleted file mode 100644
index 7a8f41e6d6..0000000000
--- a/yass/third_party/json/.github/config.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-# Configuration for sentiment-bot - https://github.com/behaviorbot/sentiment-bot
-
-# *Required* toxicity threshold between 0 and .99 with the higher numbers being the most toxic
-# Anything higher than this threshold will be marked as toxic and commented on
-sentimentBotToxicityThreshold: .7
-
-# *Required* Comment to reply with
-sentimentBotReplyComment: >
- Please be sure to review the [code of conduct](https://github.com/nlohmann/json/blob/develop/CODE_OF_CONDUCT.md) and be respectful of other users. cc/ @nlohmann
-
-
-# Configuration for request-info - https://github.com/behaviorbot/request-info
-
-# *Required* Comment to reply with
-requestInfoReplyComment: >
- We would appreciate it if you could provide us with more info about this issue or pull request! Please check the [issue template](https://github.com/nlohmann/json/blob/develop/.github/ISSUE_TEMPLATE.md) and the [pull request template](https://github.com/nlohmann/json/blob/develop/.github/PULL_REQUEST_TEMPLATE.md).
-
-# *OPTIONAL* Label to be added to Issues and Pull Requests with insufficient information given
-requestInfoLabelToAdd: "state: needs more info"
diff --git a/yass/third_party/json/.github/external_ci/appveyor.yml b/yass/third_party/json/.github/external_ci/appveyor.yml
deleted file mode 100644
index 126ed99b35..0000000000
--- a/yass/third_party/json/.github/external_ci/appveyor.yml
+++ /dev/null
@@ -1,91 +0,0 @@
-version: '{build}'
-
-# only build PRs and commits to develop branch
-# (see https://help.appveyor.com/discussions/questions/55079-two-builds-per-commit-to-pull-request)
-branches:
- only:
- - develop
-
-only_commits:
- files:
- - .github/external_ci/appveyor.yml
- - cmake/
- - include/
- - tests/
- - CMakeLists.txt
-
-environment:
- matrix:
- - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
- configuration: Debug
- platform: x86
- CXX_FLAGS: "/W4 /WX"
- CMAKE_OPTIONS: ""
- GENERATOR: Visual Studio 14 2015
-
- - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
- configuration: Release
- platform: x86
- CXX_FLAGS: "/W4 /WX"
- CMAKE_OPTIONS: ""
- GENERATOR: Visual Studio 14 2015
-
- - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
- configuration: Release
- platform: x86
- name: with_win_header
- CXX_FLAGS: "/W4 /WX"
- CMAKE_OPTIONS: ""
- GENERATOR: Visual Studio 14 2015
-
- - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
- configuration: Release
- platform: x86
- CXX_FLAGS: "/permissive- /std:c++latest /utf-8 /W4 /WX"
- CMAKE_OPTIONS: ""
- GENERATOR: Visual Studio 15 2017
-
- - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
- configuration: Release
- platform: x86
- CXX_FLAGS: "/W4 /WX"
- CMAKE_OPTIONS: "-DJSON_ImplicitConversions=OFF"
- GENERATOR: Visual Studio 16 2019
-
- - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
- configuration: Release
- platform: x64
- CXX_FLAGS: "/W4 /WX"
- CMAKE_OPTIONS: ""
- GENERATOR: Visual Studio 14 2015
-
- - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
- configuration: Release
- platform: x64
- CXX_FLAGS: "/permissive- /std:c++latest /Zc:__cplusplus /utf-8 /W4 /WX"
- CMAKE_OPTIONS: ""
- GENERATOR: Visual Studio 15 2017
-
-init:
- - cmake --version
- - msbuild /version
-
-install:
- - if "%platform%"=="x86" set GENERATOR_PLATFORM=Win32
-
-before_build:
- # for with_win_header build, inject the inclusion of Windows.h to the single-header library
- - ps: if ($env:name -Eq "with_win_header") { $header_path = "single_include\nlohmann\json.hpp" }
- - ps: if ($env:name -Eq "with_win_header") { "#include `n" + (Get-Content $header_path | Out-String) | Set-Content $header_path }
- - cmake . -G "%GENERATOR%" -A "%GENERATOR_PLATFORM%" -DCMAKE_CXX_FLAGS="%CXX_FLAGS%" -DCMAKE_IGNORE_PATH="C:/Program Files/Git/usr/bin" -DJSON_BuildTests=On "%CMAKE_OPTIONS%"
-
-build_script:
- - cmake --build . --config "%configuration%" --parallel 2
-
-test_script:
- - if "%configuration%"=="Release" ctest -C "%configuration%" --parallel 2 --output-on-failure
- # On Debug builds, skip test-unicode_all
- # as it is extremely slow to run and cause
- # occasional timeouts on AppVeyor.
- # More info: https://github.com/nlohmann/json/pull/1570
- - if "%configuration%"=="Debug" ctest --exclude-regex "test-unicode" -C "%configuration%" --parallel 2 --output-on-failure
diff --git a/yass/third_party/json/.github/labeler.yml b/yass/third_party/json/.github/labeler.yml
deleted file mode 100644
index 024d3e6da2..0000000000
--- a/yass/third_party/json/.github/labeler.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-version: 1
-
-labels:
-- label: "documentation"
- files:
- - "README.md"
-
-- label: "documentation"
- files:
- - "docs/.*"
-
-- label: "tests"
- files:
- - "tests/.*"
-
-- label: "CMake"
- files:
- - ".*CMakeLists.txt"
-
-- label: "CMake"
- files:
- - "cmake/.*"
-
-- label: "CI"
- files:
- - "github/workflows/.*"
-
-- label: "CI"
- files:
- - "github/external_ci/.*"
-
-- label: "S"
- size-below: 10
-- label: "M"
- size-above: 9
- size-below: 100
-- label: "L"
- size-above: 100
diff --git a/yass/third_party/json/.github/stale.yml b/yass/third_party/json/.github/stale.yml
deleted file mode 100644
index d30c78be77..0000000000
--- a/yass/third_party/json/.github/stale.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-# Number of days of inactivity before an issue becomes stale
-daysUntilStale: 30
-# Number of days of inactivity before a stale issue is closed
-daysUntilClose: 7
-# Issues with these labels will never be considered stale
-exemptLabels:
- - pinned
- - security
-# Label to use when marking an issue as stale
-staleLabel: "state: stale"
-# Comment to post when marking an issue as stale. Set to `false` to disable
-markComment: >
- This issue has been automatically marked as stale because it has not had
- recent activity. It will be closed if no further activity occurs. Thank you
- for your contributions.
-# Comment to post when closing a stale issue. Set to `false` to disable
-closeComment: false
diff --git a/yass/third_party/json/.github/workflows/check_amalgamation.yml b/yass/third_party/json/.github/workflows/check_amalgamation.yml
deleted file mode 100644
index 0fadb52065..0000000000
--- a/yass/third_party/json/.github/workflows/check_amalgamation.yml
+++ /dev/null
@@ -1,70 +0,0 @@
-name: "Check amalgamation"
-
-on:
- pull_request:
-
-permissions: read-all
-
-jobs:
- save:
- runs-on: ubuntu-latest
- steps:
- - name: Save PR number
- run: |
- mkdir -p ./pr
- echo ${{ github.event.number }} > ./pr/number
- echo ${{ github.event.pull_request.user.login }} > ./pr/author
- - uses: actions/upload-artifact@v2
- with:
- name: pr
- path: pr/
-
- check:
- runs-on: ubuntu-latest
- env:
- MAIN_DIR: ${{ github.workspace }}/main
- INCLUDE_DIR: ${{ github.workspace }}/main/single_include/nlohmann
- TOOL_DIR: ${{ github.workspace }}/tools/tools/amalgamate
- ASTYLE_FLAGS: >
- --style=allman --indent=spaces=4 --indent-modifiers --indent-switches --indent-preproc-block
- --indent-preproc-define --indent-col1-comments --pad-oper --pad-header --align-pointer=type
- --align-reference=type --add-brackets --convert-tabs --close-templates --lineend=linux --preserve-date
- --formatted
-
- steps:
- - name: Checkout pull request
- uses: actions/checkout@v3
- with:
- path: main
- ref: ${{ github.event.pull_request.head.sha }}
-
- - name: Checkout tools
- uses: actions/checkout@v3
- with:
- path: tools
- ref: develop
-
- - name: Install astyle
- run: |
- sudo apt-get update
- sudo apt-get install astyle
-
- - name: Check amalgamation
- run: |
- cd $MAIN_DIR
-
- rm -fr $INCLUDE_DIR/json.hpp~ $INCLUDE_DIR/json_fwd.hpp~
- cp $INCLUDE_DIR/json.hpp $INCLUDE_DIR/json.hpp~
- cp $INCLUDE_DIR/json_fwd.hpp $INCLUDE_DIR/json_fwd.hpp~
-
- python3 $TOOL_DIR/amalgamate.py -c $TOOL_DIR/config_json.json -s .
- python3 $TOOL_DIR/amalgamate.py -c $TOOL_DIR/config_json_fwd.json -s .
- echo "Format (1)"
- astyle $ASTYLE_FLAGS --suffix=none --quiet $INCLUDE_DIR/json.hpp $INCLUDE_DIR/json_fwd.hpp
-
- diff $INCLUDE_DIR/json.hpp~ $INCLUDE_DIR/json.hpp
- diff $INCLUDE_DIR/json_fwd.hpp~ $INCLUDE_DIR/json_fwd.hpp
-
- astyle $ASTYLE_FLAGS $(find docs/examples include tests -type f \( -name '*.hpp' -o -name '*.cpp' -o -name '*.cu' \) -not -path 'tests/thirdparty/*' -not -path 'tests/abi/include/nlohmann/*' | sort)
- echo Check
- find $MAIN_DIR -name '*.orig' -exec false {} \+
diff --git a/yass/third_party/json/.github/workflows/cifuzz.yml b/yass/third_party/json/.github/workflows/cifuzz.yml
deleted file mode 100644
index 0fd355bce5..0000000000
--- a/yass/third_party/json/.github/workflows/cifuzz.yml
+++ /dev/null
@@ -1,30 +0,0 @@
-name: CIFuzz
-on: [pull_request]
-
-permissions:
- contents: read
-
-jobs:
- Fuzzing:
- runs-on: ubuntu-latest
- steps:
- - name: Build Fuzzers
- id: build
- uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
- with:
- oss-fuzz-project-name: 'json'
- dry-run: false
- language: c++
- - name: Run Fuzzers
- uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
- with:
- oss-fuzz-project-name: 'json'
- fuzz-seconds: 300
- dry-run: false
- language: c++
- - name: Upload Crash
- uses: actions/upload-artifact@v3
- if: failure() && steps.build.outcome == 'success'
- with:
- name: artifacts
- path: ./out/artifacts
diff --git a/yass/third_party/json/.github/workflows/codeql-analysis.yml b/yass/third_party/json/.github/workflows/codeql-analysis.yml
deleted file mode 100644
index 93923a1827..0000000000
--- a/yass/third_party/json/.github/workflows/codeql-analysis.yml
+++ /dev/null
@@ -1,44 +0,0 @@
-name: "Code scanning - action"
-
-on:
- push:
- branches:
- - develop
- - master
- - release/*
- pull_request:
- schedule:
- - cron: '0 19 * * 1'
- workflow_dispatch:
-
-permissions:
- contents: read
-
-concurrency:
- group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
- cancel-in-progress: true
-
-jobs:
- CodeQL-Build:
-
- runs-on: ubuntu-latest
- permissions:
- security-events: write
-
- steps:
- - name: Checkout repository
- uses: actions/checkout@v3
-
- # Initializes the CodeQL tools for scanning.
- - name: Initialize CodeQL
- uses: github/codeql-action/init@v2
- with:
- languages: c-cpp
-
- # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
- # If this step fails, then you should remove it and run the build manually (see below)
- - name: Autobuild
- uses: github/codeql-action/autobuild@v2
-
- - name: Perform CodeQL Analysis
- uses: github/codeql-action/analyze@v2
diff --git a/yass/third_party/json/.github/workflows/comment_check_amalgamation.yml b/yass/third_party/json/.github/workflows/comment_check_amalgamation.yml
deleted file mode 100644
index 2ab5ebb978..0000000000
--- a/yass/third_party/json/.github/workflows/comment_check_amalgamation.yml
+++ /dev/null
@@ -1,75 +0,0 @@
-name: Comment Check Amalgamation
-on:
- workflow_run:
- workflows: ["Check amalgamation"]
- types:
- - completed
-
-permissions: {}
-
-jobs:
- comment:
- if: ${{ github.event.workflow_run.conclusion == 'failure' }}
- runs-on: ubuntu-latest
- permissions:
- contents: read
- actions: read
- issues: read
- pull-requests: write
- steps:
- - name: 'Download artifact'
- uses: actions/github-script@98814c53be79b1d30f795b907e553d8679345975 # v6.4.0
- with:
- script: |
- var artifacts = await github.rest.actions.listWorkflowRunArtifacts({
- owner: context.repo.owner,
- repo: context.repo.repo,
- run_id: ${{github.event.workflow_run.id }},
- });
- var matchArtifact = artifacts.data.artifacts.filter((artifact) => {
- return artifact.name == "pr"
- })[0];
- var download = await github.rest.actions.downloadArtifact({
- owner: context.repo.owner,
- repo: context.repo.repo,
- artifact_id: matchArtifact.id,
- archive_format: 'zip',
- });
- var fs = require('fs');
- fs.writeFileSync('${{github.workspace}}/pr.zip', Buffer.from(download.data));
- - run: unzip pr.zip
-
- - name: 'Comment on PR'
- uses: actions/github-script@98814c53be79b1d30f795b907e553d8679345975 # v6.4.0
- with:
- github-token: ${{ secrets.GITHUB_TOKEN }}
- script: |
- var fs = require('fs');
- const author = fs.readFileSync('./author')
- const issue_number = Number(fs.readFileSync('./number'));
- const opts = github.rest.issues.listForRepo.endpoint.merge({
- owner: context.repo.owner,
- repo: context.repo.repo,
- creator: author,
- state: 'all'
- })
- let first = true
- const issues = await github.paginate(opts)
- for (const issue of issues) {
- if (issue.number === issue_number) {
- continue
- }
- if (issue.pull_request) {
- first = false
- break
- }
- }
- await github.rest.issues.createComment({
- issue_number: issue_number,
- owner: context.repo.owner,
- repo: context.repo.repo,
- body: '## 🔴 Amalgamation check failed! 🔴\nThe source code has not been amalgamated.'
- + (first ? ' @' + author + ' Please read and follow the [Contribution Guidelines]'
- + '(https://github.com/nlohmann/json/blob/develop/.github/CONTRIBUTING.md#files-to-change).'
- : '')
- })
diff --git a/yass/third_party/json/.github/workflows/labeler.yml b/yass/third_party/json/.github/workflows/labeler.yml
deleted file mode 100644
index 11925e1af0..0000000000
--- a/yass/third_party/json/.github/workflows/labeler.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-name: "Pull Request Labeler"
-
-on:
- pull_request_target:
- types: [opened, synchronize]
-
-permissions: {}
-
-jobs:
- label:
- permissions:
- contents: read
- pull-requests: write
-
- runs-on: ubuntu-latest
-
- steps:
- - uses: srvaroa/labeler@master
- env:
- GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
diff --git a/yass/third_party/json/.github/workflows/macos.yml b/yass/third_party/json/.github/workflows/macos.yml
deleted file mode 100644
index 9ac1fe3fa7..0000000000
--- a/yass/third_party/json/.github/workflows/macos.yml
+++ /dev/null
@@ -1,67 +0,0 @@
-name: macOS
-
-on:
- push:
- branches:
- - develop
- - master
- - release/*
- pull_request:
- workflow_dispatch:
-
-permissions:
- contents: read
-
-concurrency:
- group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
- cancel-in-progress: true
-
-jobs:
- xcode_1:
- runs-on: macos-11
- strategy:
- matrix:
- xcode: ['11.7', '12.4', '12.5.1', '13.0']
- env:
- DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
-
- steps:
- - uses: actions/checkout@v3
- - name: Run CMake
- run: cmake -S . -B build -D CMAKE_BUILD_TYPE=Debug -DJSON_BuildTests=On -DJSON_FastTests=ON
- - name: Build
- run: cmake --build build --parallel 10
- - name: Test
- run: cd build ; ctest -j 10 --output-on-failure
-
- xcode_2:
- runs-on: macos-12
- strategy:
- matrix:
- xcode: ['13.1', '13.2.1', '13.3.1', '13.4.1', '14.0', '14.0.1', '14.1']
- env:
- DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
-
- steps:
- - uses: actions/checkout@v3
- - name: Run CMake
- run: cmake -S . -B build -D CMAKE_BUILD_TYPE=Debug -DJSON_BuildTests=On -DJSON_FastTests=ON
- - name: Build
- run: cmake --build build --parallel 10
- - name: Test
- run: cd build ; ctest -j 10 --output-on-failure
-
- xcode_standards:
- runs-on: macos-latest
- strategy:
- matrix:
- standard: [11, 14, 17, 20, 23]
-
- steps:
- - uses: actions/checkout@v3
- - name: Run CMake
- run: cmake -S . -B build -D CMAKE_BUILD_TYPE=Debug -DJSON_BuildTests=On -DJSON_TestStandards=${{ matrix.standard }}
- - name: Build
- run: cmake --build build --parallel 10
- - name: Test
- run: cd build ; ctest -j 10 --output-on-failure
diff --git a/yass/third_party/json/.github/workflows/publish_documentation.yml b/yass/third_party/json/.github/workflows/publish_documentation.yml
deleted file mode 100644
index 5a32d13a41..0000000000
--- a/yass/third_party/json/.github/workflows/publish_documentation.yml
+++ /dev/null
@@ -1,41 +0,0 @@
-name: Publish documentation
-
-# publish the documentation on every merge to develop branch
-on:
- push:
- branches:
- - develop
- paths:
- - docs/mkdocs/**
- - docs/examples/**
- workflow_dispatch:
-
-permissions:
- contents: read
-
-# we don't want to have concurrent jobs, and we don't want to cancel running jobs to avoid broken publications
-concurrency:
- group: documentation
- cancel-in-progress: false
-
-jobs:
- publish_documentation:
- if: github.repository == 'nlohmann/json'
- runs-on: ubuntu-22.04
- steps:
- - uses: actions/checkout@v3
-
- - name: Install and update PlantUML
- run: sudo apt-get update ; sudo apt-get install -y plantuml
-
- - name: Install virtual environment
- run: make install_venv -C docs/mkdocs
-
- - name: Build documentation
- run: make build -C docs/mkdocs
-
- - name: Deploy documentation
- uses: peaceiris/actions-gh-pages@v3
- with:
- github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: ./docs/mkdocs/site
diff --git a/yass/third_party/json/.github/workflows/ubuntu.yml b/yass/third_party/json/.github/workflows/ubuntu.yml
deleted file mode 100644
index 35fb9573cc..0000000000
--- a/yass/third_party/json/.github/workflows/ubuntu.yml
+++ /dev/null
@@ -1,248 +0,0 @@
-name: Ubuntu
-
-on:
- push:
- branches:
- - develop
- - master
- - release/*
- pull_request:
- workflow_dispatch:
-
-permissions:
- contents: read
-
-concurrency:
- group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
- cancel-in-progress: true
-
-jobs:
- ci_test_clang:
- runs-on: ubuntu-latest
- container: silkeh/clang:dev
- steps:
- - name: Install git and unzip
- run: apt-get update ; apt-get install -y git unzip
- - uses: actions/checkout@v3
- - name: Get latest CMake and ninja
- uses: lukka/get-cmake@v3.27.7
- - name: Run CMake
- run: cmake -S . -B build -DJSON_CI=On
- - name: Build
- run: cmake --build build --target ci_test_clang
-
- ci_test_gcc:
- runs-on: ubuntu-latest
- container: ghcr.io/nlohmann/json-ci:v2.4.0
- steps:
- - uses: actions/checkout@v3
- - name: Run CMake
- run: cmake -S . -B build -DJSON_CI=On
- - name: Build
- run: cmake --build build --target ci_test_gcc
-
- ci_static_analysis:
- runs-on: ubuntu-latest
- container: ghcr.io/nlohmann/json-ci:v2.4.0
- strategy:
- matrix:
- target: [ci_cppcheck, ci_test_valgrind, ci_test_amalgamation, ci_test_single_header, ci_single_binaries, ci_infer]
- steps:
- - uses: actions/checkout@v3
- - name: Run CMake
- run: cmake -S . -B build -DJSON_CI=On
- - name: Build
- run: cmake --build build --target ${{ matrix.target }}
-
- ci_static_analysis_ubuntu:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- target: [ci_cpplint, ci_reproducible_tests, ci_non_git_tests, ci_offline_testdata]
- steps:
- - uses: actions/checkout@v3
- - name: Get latest CMake and ninja
- uses: lukka/get-cmake@v3.27.7
- - name: Run CMake
- run: cmake -S . -B build -DJSON_CI=On
- - name: Build
- run: cmake --build build --target ${{ matrix.target }}
-
- ci_static_analysis_clang:
- runs-on: ubuntu-latest
- container: silkeh/clang:dev
- strategy:
- matrix:
- target: [ci_clang_tidy, ci_test_clang_sanitizer, ci_clang_analyze]
- steps:
- - name: Install git, clang-tools, and unzip
- run: apt-get update ; apt-get install -y git clang-tools unzip
- - uses: actions/checkout@v3
- - name: Get latest CMake and ninja
- uses: lukka/get-cmake@v3.27.7
- - name: Run CMake
- run: cmake -S . -B build -DJSON_CI=On
- - name: Build
- run: cmake --build build --target ${{ matrix.target }}
-
- ci_cmake_options:
- runs-on: ubuntu-latest
- container: ubuntu:focal
- strategy:
- matrix:
- target: [ci_cmake_flags, ci_test_diagnostics, ci_test_noexceptions, ci_test_noimplicitconversions, ci_test_legacycomparison, ci_test_noglobaludls]
- steps:
- - name: Install build-essential
- run: apt-get update ; apt-get install -y build-essential unzip wget git
- - uses: actions/checkout@v3
- - name: Get latest CMake and ninja
- uses: lukka/get-cmake@v3.27.7
- - name: Run CMake
- run: cmake -S . -B build -DJSON_CI=On
- - name: Build
- run: cmake --build build --target ${{ matrix.target }}
-
- ci_test_coverage:
- runs-on: ubuntu-latest
- container: ghcr.io/nlohmann/json-ci:v2.4.0
- permissions:
- contents: read
- checks: write
- steps:
- - uses: actions/checkout@v3
- - name: Run CMake
- run: cmake -S . -B build -DJSON_CI=On
- - name: Build
- run: cmake --build build --target ci_test_coverage
- - name: Archive coverage report
- uses: actions/upload-artifact@v3
- with:
- name: code-coverage-report
- path: ${{ github.workspace }}/build/html
- - name: Publish report to Coveralls
- uses: coverallsapp/github-action@master
- with:
- github-token: ${{ secrets.GITHUB_TOKEN }}
- path-to-lcov: ${{ github.workspace }}/build/json.info.filtered.noexcept
-
- ci_test_compilers_gcc:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- compiler: ['4', '5', '6', '7', '8', '9', '10', '11', '12', 'latest']
- container: gcc:${{ matrix.compiler }}
- steps:
- - uses: actions/checkout@v3
- - name: Get latest CMake and ninja
- uses: lukka/get-cmake@v3.27.7
- - name: Run CMake
- run: cmake -S . -B build -DJSON_CI=On
- - name: Build
- run: cmake --build build --target ci_test_compiler_default
-
- ci_test_compilers_clang:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- compiler: ['3.5', '3.6', '3.7', '3.8', '3.9', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15-bullseye', 'latest']
- container: silkeh/clang:${{ matrix.compiler }}
- steps:
- - name: Install unzip and git
- run: apt-get update ; apt-get install -y unzip git
- - uses: actions/checkout@v3
- - name: Get latest CMake and ninja
- uses: lukka/get-cmake@v3.27.7
- - name: Set env FORCE_STDCPPFS_FLAG for clang 7 / 8 / 9 / 10
- run: echo "JSON_FORCED_GLOBAL_COMPILE_OPTIONS=-DJSON_HAS_FILESYSTEM=0;-DJSON_HAS_EXPERIMENTAL_FILESYSTEM=0" >> "$GITHUB_ENV"
- if: ${{ matrix.compiler == '7' || matrix.compiler == '8' || matrix.compiler == '9' || matrix.compiler == '10' }}
- - name: Run CMake
- run: cmake -S . -B build -DJSON_CI=On
- - name: Build
- run: cmake --build build --target ci_test_compiler_default
-
- ci_test_compilers:
- runs-on: ubuntu-latest
- container: ghcr.io/nlohmann/json-ci:v2.4.0
- strategy:
- matrix:
- compiler: [g++-4.8]
- steps:
- - uses: actions/checkout@v3
- - name: Run CMake
- run: cmake -S . -B build -DJSON_CI=On
- - name: Build
- run: cmake --build build --target ci_test_compiler_${{ matrix.compiler }}
-
- ci_test_standards_gcc:
- runs-on: ubuntu-latest
- container: ghcr.io/nlohmann/json-ci:v2.4.0
- strategy:
- matrix:
- standard: [11, 14, 17, 20, 23]
- steps:
- - uses: actions/checkout@v3
- - name: Run CMake
- run: cmake -S . -B build -DJSON_CI=On
- - name: Build
- run: cmake --build build --target ci_test_gcc_cxx${{ matrix.standard }}
-
- ci_test_standards_clang:
- runs-on: ubuntu-latest
- container: silkeh/clang:latest
- strategy:
- matrix:
- standard: [11, 14, 17, 20, 23]
- steps:
- - name: Install git and unzip
- run: apt-get update ; apt-get install -y git unzip
- - uses: actions/checkout@v3
- - name: Get latest CMake and ninja
- uses: lukka/get-cmake@v3.27.7
- - name: Run CMake
- run: cmake -S . -B build -DJSON_CI=On
- - name: Build
- run: cmake --build build --target ci_test_clang_cxx${{ matrix.standard }}
-
- ci_cuda_example:
- runs-on: ubuntu-latest
- container: ghcr.io/nlohmann/json-ci:v2.4.0
- steps:
- - uses: actions/checkout@v3
- - name: Run CMake
- run: cmake -S . -B build -DJSON_CI=On
- - name: Build
- run: cmake --build build --target ci_cuda_example
-
- ci_icpc:
- runs-on: ubuntu-latest
- container: ghcr.io/nlohmann/json-ci:v2.2.0
- steps:
- - uses: actions/checkout@v2
- - name: Run CMake
- run: cmake -S . -B build -DJSON_CI=On
- - name: Build
- run: |
- . /opt/intel/oneapi/setvars.sh
- cmake --build build --target ci_icpc
-
- ci_reuse_compliance:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- - uses: actions/setup-python@v3
- - name: Install REUSE tool
- run: python -m pip install reuse
- - name: Run REUSE lint
- run: reuse lint
-
- ci_test_documentation:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- target: [ci_test_examples, ci_test_api_documentation]
- steps:
- - uses: actions/checkout@v3
- - name: Run CMake
- run: cmake -S . -B build -DJSON_CI=On
- - name: Build
- run: cmake --build build --target ${{ matrix.target }}
diff --git a/yass/third_party/json/.github/workflows/windows.yml b/yass/third_party/json/.github/workflows/windows.yml
deleted file mode 100644
index 7ddd4be256..0000000000
--- a/yass/third_party/json/.github/workflows/windows.yml
+++ /dev/null
@@ -1,134 +0,0 @@
-name: Windows
-
-on:
- push:
- branches:
- - develop
- - master
- - release/*
- pull_request:
- workflow_dispatch:
-
-permissions:
- contents: read
-
-concurrency:
- group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
- cancel-in-progress: true
-
-jobs:
- mingw:
- runs-on: windows-2019
- strategy:
- matrix:
- architecture: [x64, x86]
-
- steps:
- - uses: actions/checkout@v3
- - name: Set up MinGW
- uses: egor-tensin/setup-mingw@v2
- with:
- platform: ${{ matrix.architecture }}
- version: 12.2.0 # https://github.com/egor-tensin/setup-mingw/issues/14
- - name: Run CMake
- run: cmake -S . -B build -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug -DJSON_BuildTests=On
- - name: Build
- run: cmake --build build --parallel 10
- - name: Test
- run: cd build ; ctest -j 10 -C Debug --output-on-failure
-
- msvc2019:
- runs-on: windows-2019
- strategy:
- matrix:
- build_type: [Debug, Release]
- architecture: [Win32, x64]
-
- steps:
- - uses: actions/checkout@v3
- - name: Run CMake
- run: cmake -S . -B build -G "Visual Studio 16 2019" -A ${{ matrix.architecture }} -DJSON_BuildTests=On -DCMAKE_CXX_FLAGS="/W4 /WX"
- if: matrix.build_type == 'Release'
- - name: Run CMake
- run: cmake -S . -B build -G "Visual Studio 16 2019" -A ${{ matrix.architecture }} -DJSON_BuildTests=On -DJSON_FastTests=ON -DCMAKE_CXX_FLAGS="/W4 /WX"
- if: matrix.build_type == 'Debug'
- - name: Build
- run: cmake --build build --config ${{ matrix.build_type }} --parallel 10
- - name: Test
- run: cd build ; ctest -j 10 -C ${{ matrix.build_type }} --output-on-failure
-
- msvc2019_latest:
- runs-on: windows-2019
-
- steps:
- - uses: actions/checkout@v3
- - name: Run CMake
- run: cmake -S . -B build -G "Visual Studio 16 2019" -DJSON_BuildTests=On -DCMAKE_CXX_FLAGS="/permissive- /std:c++latest /utf-8 /W4 /WX"
- - name: Build
- run: cmake --build build --config Release --parallel 10
- - name: Test
- run: cd build ; ctest -j 10 -C Release --output-on-failure
-
- msvc2022:
- runs-on: windows-2022
- strategy:
- matrix:
- build_type: [Debug, Release]
- architecture: [Win32, x64]
-
- steps:
- - uses: actions/checkout@v3
- - name: Run CMake
- run: cmake -S . -B build -G "Visual Studio 17 2022" -A ${{ matrix.architecture }} -DJSON_BuildTests=On -DCMAKE_CXX_FLAGS="/W4 /WX"
- if: matrix.build_type == 'Release'
- - name: Run CMake
- run: cmake -S . -B build -G "Visual Studio 17 2022" -A ${{ matrix.architecture }} -DJSON_BuildTests=On -DJSON_FastTests=ON -DCMAKE_CXX_FLAGS="/W4 /WX"
- if: matrix.build_type == 'Debug'
- - name: Build
- run: cmake --build build --config ${{ matrix.build_type }} --parallel 10
- - name: Test
- run: cd build ; ctest -j 10 -C ${{ matrix.build_type }} --output-on-failure
-
- msvc2022_latest:
- runs-on: windows-2022
-
- steps:
- - uses: actions/checkout@v3
- - name: Run CMake
- run: cmake -S . -B build -G "Visual Studio 17 2022" -DJSON_BuildTests=On -DCMAKE_CXX_FLAGS="/permissive- /std:c++latest /utf-8 /W4 /WX"
- - name: Build
- run: cmake --build build --config Release --parallel 10
- - name: Test
- run: cd build ; ctest -j 10 -C Release --output-on-failure
-
- clang:
- runs-on: windows-2019
- strategy:
- matrix:
- version: [11, 12, 13, 14, 15]
-
- steps:
- - uses: actions/checkout@v3
- - name: Install Clang
- run: curl -fsSL -o LLVM${{ matrix.version }}.exe https://github.com/llvm/llvm-project/releases/download/llvmorg-${{ matrix.version }}.0.0/LLVM-${{ matrix.version }}.0.0-win64.exe ; 7z x LLVM${{ matrix.version }}.exe -y -o"C:/Program Files/LLVM"
- - name: Run CMake
- run: cmake -S . -B build -DCMAKE_CXX_COMPILER="C:/Program Files/LLVM/bin/clang++.exe" -G"MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug -DJSON_BuildTests=On
- - name: Build
- run: cmake --build build --parallel 10
- - name: Test
- run: cd build ; ctest -j 10 -C Debug --exclude-regex "test-unicode" --output-on-failure
-
- clang-cl-11:
- runs-on: windows-2019
- strategy:
- matrix:
- architecture: [Win32, x64]
-
- steps:
- - uses: actions/checkout@v3
- - name: Run CMake
- run: cmake -S . -B build -G "Visual Studio 16 2019" -A ${{ matrix.architecture }} -T ClangCL -DJSON_BuildTests=On
- - name: Build
- run: cmake --build build --config Debug --parallel 10
- - name: Test
- run: cd build ; ctest -j 10 -C Debug --exclude-regex "test-unicode" --output-on-failure
diff --git a/yass/third_party/json/.gitignore b/yass/third_party/json/.gitignore
deleted file mode 100644
index bfd52b4c66..0000000000
--- a/yass/third_party/json/.gitignore
+++ /dev/null
@@ -1,44 +0,0 @@
-*.dSYM
-*.o
-*.gcno
-*.gcda
-.DS_Store
-
-.wsjcpp-logs/*
-.wsjcpp/*
-
-/.idea
-/cmake-build-*
-
-# Visual Studio / Visual Studio Code
-/.vs/
-/.vscode/
-/out/
-
-# clangd cache
-/.cache/
-
-# build directories (vscode-cmake-tools, user-defined, ...)
-/build*/
-
-# fuzzers
-/tests/corpus_*
-/tests/parse_*_fuzzer
-
-# documentation
-/docs/docset/docSet.dsidx
-/docs/docset/JSON_for_Modern_C++.docset/
-/docs/docset/JSON_for_Modern_C++.tgz
-/docs/mkdocs/docs/__pycache__/
-/docs/mkdocs/docs/examples/
-/docs/mkdocs/docs/images/json.gif
-/docs/mkdocs/site/
-/docs/mkdocs/venv/
-
-# serve_header
-/localhost.pem
-/localhost-key.pem
-/serve_header.yml
-
-# Swift Package Manager build directory
-/.build
\ No newline at end of file
diff --git a/yass/third_party/json/.lgtm.yml b/yass/third_party/json/.lgtm.yml
deleted file mode 100644
index b62f9fb37b..0000000000
--- a/yass/third_party/json/.lgtm.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-path_classifiers:
- thirdparty:
- - /tools/amalgamate
- - /tools/cpplint
diff --git a/yass/third_party/json/.reuse/README.md b/yass/third_party/json/.reuse/README.md
deleted file mode 100644
index 29c2b67a1d..0000000000
--- a/yass/third_party/json/.reuse/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-# REUSE Software
-
-This directory contains supporting files to make the project compliant with the REUSE specification.
-
-The root `Makefile` contains a target `reuse` that updates copyright headers and checks for compliance.
-
-See for more information.
diff --git a/yass/third_party/json/.reuse/dep5 b/yass/third_party/json/.reuse/dep5
deleted file mode 100644
index 315cae923b..0000000000
--- a/yass/third_party/json/.reuse/dep5
+++ /dev/null
@@ -1,32 +0,0 @@
-Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
-Upstream-Name: json
-Upstream-Contact: Niels Lohmann
-Source: https://github.com/nlohmann/json
-
-Files: *
-Copyright: 2013-2022 Niels Lohmann
-License: MIT
-
-Files: tests/thirdparty/doctest/*
-Copyright: 2016-2021 Viktor Kirilov
-License: MIT
-
-Files: tests/thirdparty/fifo_map/*
-Copyright: 2015-2017 Niels Lohmann
-License: MIT
-
-Files: tests/thirdparty/Fuzzer/*
-Copyright: 2003-2022, LLVM Project.
-License: Apache-2.0
-
-Files: tests/thirdparty/imapdl/*
-Copyright: 2017 Georg Sauthoff
-License: GPL-3.0-only
-
-Files: tools/amalgamate/*
-Copyright: 2012 Erik Edlund
-License: BSD-3-Clause
-
-Files: tools/gdb_pretty_printer
-Copyright: 2020 Hannes Domani
-License: MIT
diff --git a/yass/third_party/json/.reuse/templates/json.jinja2 b/yass/third_party/json/.reuse/templates/json.jinja2
deleted file mode 100644
index 9f7df2a396..0000000000
--- a/yass/third_party/json/.reuse/templates/json.jinja2
+++ /dev/null
@@ -1,11 +0,0 @@
- __ _____ _____ _____
- __| | __| | | | JSON for Modern C++
-| | |__ | | | | | | version 3.11.3
-|_____|_____|_____|_|___| https://github.com/nlohmann/json
-
-{% for copyright_line in copyright_lines %}
-{{ copyright_line }}
-{% endfor %}
-{% for expression in spdx_expressions %}
-SPDX-License-Identifier: {{ expression }}
-{% endfor %}
diff --git a/yass/third_party/json/.reuse/templates/json_support.jinja2 b/yass/third_party/json/.reuse/templates/json_support.jinja2
deleted file mode 100644
index f12832cb8e..0000000000
--- a/yass/third_party/json/.reuse/templates/json_support.jinja2
+++ /dev/null
@@ -1,11 +0,0 @@
- __ _____ _____ _____
- __| | __| | | | JSON for Modern C++ (supporting code)
-| | |__ | | | | | | version 3.11.3
-|_____|_____|_____|_|___| https://github.com/nlohmann/json
-
-{% for copyright_line in copyright_lines %}
-{{ copyright_line }}
-{% endfor %}
-{% for expression in spdx_expressions %}
-SPDX-License-Identifier: {{ expression }}
-{% endfor %}
diff --git a/yass/third_party/json/BUILD.bazel b/yass/third_party/json/BUILD.bazel
deleted file mode 100644
index 15d84f16be..0000000000
--- a/yass/third_party/json/BUILD.bazel
+++ /dev/null
@@ -1,53 +0,0 @@
-cc_library(
- name = "json",
- hdrs = [
- "include/nlohmann/adl_serializer.hpp",
- "include/nlohmann/byte_container_with_subtype.hpp",
- "include/nlohmann/detail/abi_macros.hpp",
- "include/nlohmann/detail/conversions/from_json.hpp",
- "include/nlohmann/detail/conversions/to_chars.hpp",
- "include/nlohmann/detail/conversions/to_json.hpp",
- "include/nlohmann/detail/exceptions.hpp",
- "include/nlohmann/detail/hash.hpp",
- "include/nlohmann/detail/input/binary_reader.hpp",
- "include/nlohmann/detail/input/input_adapters.hpp",
- "include/nlohmann/detail/input/json_sax.hpp",
- "include/nlohmann/detail/input/lexer.hpp",
- "include/nlohmann/detail/input/parser.hpp",
- "include/nlohmann/detail/input/position_t.hpp",
- "include/nlohmann/detail/iterators/internal_iterator.hpp",
- "include/nlohmann/detail/iterators/iter_impl.hpp",
- "include/nlohmann/detail/iterators/iteration_proxy.hpp",
- "include/nlohmann/detail/iterators/iterator_traits.hpp",
- "include/nlohmann/detail/iterators/json_reverse_iterator.hpp",
- "include/nlohmann/detail/iterators/primitive_iterator.hpp",
- "include/nlohmann/detail/json_custom_base_class.hpp",
- "include/nlohmann/detail/json_pointer.hpp",
- "include/nlohmann/detail/json_ref.hpp",
- "include/nlohmann/detail/macro_scope.hpp",
- "include/nlohmann/detail/macro_unscope.hpp",
- "include/nlohmann/detail/meta/call_std/begin.hpp",
- "include/nlohmann/detail/meta/call_std/end.hpp",
- "include/nlohmann/detail/meta/cpp_future.hpp",
- "include/nlohmann/detail/meta/detected.hpp",
- "include/nlohmann/detail/meta/identity_tag.hpp",
- "include/nlohmann/detail/meta/is_sax.hpp",
- "include/nlohmann/detail/meta/std_fs.hpp",
- "include/nlohmann/detail/meta/type_traits.hpp",
- "include/nlohmann/detail/meta/void_t.hpp",
- "include/nlohmann/detail/output/binary_writer.hpp",
- "include/nlohmann/detail/output/output_adapters.hpp",
- "include/nlohmann/detail/output/serializer.hpp",
- "include/nlohmann/detail/string_concat.hpp",
- "include/nlohmann/detail/string_escape.hpp",
- "include/nlohmann/detail/value_t.hpp",
- "include/nlohmann/json.hpp",
- "include/nlohmann/json_fwd.hpp",
- "include/nlohmann/ordered_map.hpp",
- "include/nlohmann/thirdparty/hedley/hedley.hpp",
- "include/nlohmann/thirdparty/hedley/hedley_undef.hpp",
- ],
- includes = ["include"],
- visibility = ["//visibility:public"],
- alwayslink = True,
-)
diff --git a/yass/third_party/json/CITATION.cff b/yass/third_party/json/CITATION.cff
deleted file mode 100644
index fd3b767135..0000000000
--- a/yass/third_party/json/CITATION.cff
+++ /dev/null
@@ -1,14 +0,0 @@
-cff-version: 1.2.0
-message: "If you use this software, please cite it as below."
-authors:
- - family-names: Lohmann
- given-names: Niels
- orcid: https://orcid.org/0000-0001-9037-795X
- email: mail@nlohmann.me
- website: https://nlohmann.me
-title: "JSON for Modern C++"
-version: 3.11.3
-date-released: 2023-11-28
-license: MIT
-repository-code: "https://github.com/nlohmann"
-url: https://json.nlohmann.me
diff --git a/yass/third_party/json/CMakeLists.txt b/yass/third_party/json/CMakeLists.txt
deleted file mode 100644
index 7a49dc47ea..0000000000
--- a/yass/third_party/json/CMakeLists.txt
+++ /dev/null
@@ -1,209 +0,0 @@
-cmake_minimum_required(VERSION 3.1...3.14)
-
-##
-## PROJECT
-## name and version
-##
-project(nlohmann_json VERSION 3.11.3 LANGUAGES CXX)
-
-##
-## MAIN_PROJECT CHECK
-## determine if nlohmann_json is built as a subproject (using add_subdirectory) or if it is the main project
-##
-set(MAIN_PROJECT OFF)
-if (CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
- set(MAIN_PROJECT ON)
-endif()
-
-##
-## INCLUDE
-##
-##
-set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
-include(ExternalProject)
-
-##
-## OPTIONS
-##
-
-if (POLICY CMP0077)
- # Allow CMake 3.13+ to override options when using FetchContent / add_subdirectory.
- cmake_policy(SET CMP0077 NEW)
-endif ()
-
-# VERSION_GREATER_EQUAL is not available in CMake 3.1
-if(${MAIN_PROJECT} AND (${CMAKE_VERSION} VERSION_EQUAL 3.13 OR ${CMAKE_VERSION} VERSION_GREATER 3.13))
- set(JSON_BuildTests_INIT ON)
-else()
- set(JSON_BuildTests_INIT OFF)
-endif()
-option(JSON_BuildTests "Build the unit tests when BUILD_TESTING is enabled." ${JSON_BuildTests_INIT})
-option(JSON_CI "Enable CI build targets." OFF)
-option(JSON_Diagnostics "Use extended diagnostic messages." OFF)
-option(JSON_GlobalUDLs "Place use-defined string literals in the global namespace." ON)
-option(JSON_ImplicitConversions "Enable implicit conversions." ON)
-option(JSON_DisableEnumSerialization "Disable default integer enum serialization." OFF)
-option(JSON_LegacyDiscardedValueComparison "Enable legacy discarded value comparison." OFF)
-option(JSON_Install "Install CMake targets during install step." ${MAIN_PROJECT})
-option(JSON_MultipleHeaders "Use non-amalgamated version of the library." ON)
-option(JSON_SystemInclude "Include as system headers (skip for clang-tidy)." OFF)
-
-if (JSON_CI)
- include(ci)
-endif ()
-
-##
-## CONFIGURATION
-##
-include(GNUInstallDirs)
-
-set(NLOHMANN_JSON_TARGET_NAME ${PROJECT_NAME})
-set(NLOHMANN_JSON_CONFIG_INSTALL_DIR "${CMAKE_INSTALL_DATADIR}/cmake/${PROJECT_NAME}" CACHE INTERNAL "")
-set(NLOHMANN_JSON_INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_INCLUDEDIR}")
-set(NLOHMANN_JSON_TARGETS_EXPORT_NAME "${PROJECT_NAME}Targets")
-set(NLOHMANN_JSON_CMAKE_CONFIG_TEMPLATE "cmake/config.cmake.in")
-set(NLOHMANN_JSON_CMAKE_CONFIG_DIR "${CMAKE_CURRENT_BINARY_DIR}")
-set(NLOHMANN_JSON_CMAKE_VERSION_CONFIG_FILE "${NLOHMANN_JSON_CMAKE_CONFIG_DIR}/${PROJECT_NAME}ConfigVersion.cmake")
-set(NLOHMANN_JSON_CMAKE_PROJECT_CONFIG_FILE "${NLOHMANN_JSON_CMAKE_CONFIG_DIR}/${PROJECT_NAME}Config.cmake")
-set(NLOHMANN_JSON_CMAKE_PROJECT_TARGETS_FILE "${NLOHMANN_JSON_CMAKE_CONFIG_DIR}/${PROJECT_NAME}Targets.cmake")
-set(NLOHMANN_JSON_PKGCONFIG_INSTALL_DIR "${CMAKE_INSTALL_DATADIR}/pkgconfig")
-
-if (JSON_MultipleHeaders)
- set(NLOHMANN_JSON_INCLUDE_BUILD_DIR "${PROJECT_SOURCE_DIR}/include/")
- message(STATUS "Using the multi-header code from ${NLOHMANN_JSON_INCLUDE_BUILD_DIR}")
-else()
- set(NLOHMANN_JSON_INCLUDE_BUILD_DIR "${PROJECT_SOURCE_DIR}/single_include/")
- message(STATUS "Using the single-header code from ${NLOHMANN_JSON_INCLUDE_BUILD_DIR}")
-endif()
-
-if (NOT JSON_ImplicitConversions)
- message(STATUS "Implicit conversions are disabled")
-endif()
-
-if (JSON_DisableEnumSerialization)
- message(STATUS "Enum integer serialization is disabled")
-endif()
-
-if (JSON_LegacyDiscardedValueComparison)
- message(STATUS "Legacy discarded value comparison enabled")
-endif()
-
-if (JSON_Diagnostics)
- message(STATUS "Diagnostics enabled")
-endif()
-
-if (JSON_SystemInclude)
- set(NLOHMANN_JSON_SYSTEM_INCLUDE "SYSTEM")
-endif()
-
-##
-## TARGET
-## create target and add include path
-##
-add_library(${NLOHMANN_JSON_TARGET_NAME} INTERFACE)
-add_library(${PROJECT_NAME}::${NLOHMANN_JSON_TARGET_NAME} ALIAS ${NLOHMANN_JSON_TARGET_NAME})
-if (${CMAKE_VERSION} VERSION_LESS "3.8.0")
- target_compile_features(${NLOHMANN_JSON_TARGET_NAME} INTERFACE cxx_range_for)
-else()
- target_compile_features(${NLOHMANN_JSON_TARGET_NAME} INTERFACE cxx_std_11)
-endif()
-
-target_compile_definitions(
- ${NLOHMANN_JSON_TARGET_NAME}
- INTERFACE
- $<$>:JSON_USE_GLOBAL_UDLS=0>
- $<$>:JSON_USE_IMPLICIT_CONVERSIONS=0>
- $<$:JSON_DISABLE_ENUM_SERIALIZATION=1>
- $<$:JSON_DIAGNOSTICS=1>
- $<$:JSON_USE_LEGACY_DISCARDED_VALUE_COMPARISON=1>
-)
-
-target_include_directories(
- ${NLOHMANN_JSON_TARGET_NAME}
- ${NLOHMANN_JSON_SYSTEM_INCLUDE} INTERFACE
- $
- $
-)
-
-## add debug view definition file for msvc (natvis)
-if (MSVC)
- set(NLOHMANN_ADD_NATVIS TRUE)
- set(NLOHMANN_NATVIS_FILE "nlohmann_json.natvis")
- target_sources(
- ${NLOHMANN_JSON_TARGET_NAME}
- INTERFACE
- $
- $
- )
-endif()
-
-# Install a pkg-config file, so other tools can find this.
-CONFIGURE_FILE(
- "${CMAKE_CURRENT_SOURCE_DIR}/cmake/pkg-config.pc.in"
- "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}.pc"
-)
-
-##
-## TESTS
-## create and configure the unit test target
-##
-if (JSON_BuildTests)
- include(CTest)
- enable_testing()
- add_subdirectory(tests)
-endif()
-
-##
-## INSTALL
-## install header files, generate and install cmake config files for find_package()
-##
-include(CMakePackageConfigHelpers)
-# use a custom package version config file instead of
-# write_basic_package_version_file to ensure that it's architecture-independent
-# https://github.com/nlohmann/json/issues/1697
-configure_file(
- "cmake/nlohmann_jsonConfigVersion.cmake.in"
- ${NLOHMANN_JSON_CMAKE_VERSION_CONFIG_FILE}
- @ONLY
-)
-configure_file(
- ${NLOHMANN_JSON_CMAKE_CONFIG_TEMPLATE}
- ${NLOHMANN_JSON_CMAKE_PROJECT_CONFIG_FILE}
- @ONLY
-)
-
-if(JSON_Install)
- install(
- DIRECTORY ${NLOHMANN_JSON_INCLUDE_BUILD_DIR}
- DESTINATION ${NLOHMANN_JSON_INCLUDE_INSTALL_DIR}
- )
- install(
- FILES ${NLOHMANN_JSON_CMAKE_PROJECT_CONFIG_FILE} ${NLOHMANN_JSON_CMAKE_VERSION_CONFIG_FILE}
- DESTINATION ${NLOHMANN_JSON_CONFIG_INSTALL_DIR}
- )
- if (NLOHMANN_ADD_NATVIS)
- install(
- FILES ${NLOHMANN_NATVIS_FILE}
- DESTINATION .
- )
- endif()
- export(
- TARGETS ${NLOHMANN_JSON_TARGET_NAME}
- NAMESPACE ${PROJECT_NAME}::
- FILE ${NLOHMANN_JSON_CMAKE_PROJECT_TARGETS_FILE}
- )
- install(
- TARGETS ${NLOHMANN_JSON_TARGET_NAME}
- EXPORT ${NLOHMANN_JSON_TARGETS_EXPORT_NAME}
- INCLUDES DESTINATION ${NLOHMANN_JSON_INCLUDE_INSTALL_DIR}
- )
- install(
- EXPORT ${NLOHMANN_JSON_TARGETS_EXPORT_NAME}
- NAMESPACE ${PROJECT_NAME}::
- DESTINATION ${NLOHMANN_JSON_CONFIG_INSTALL_DIR}
- )
- install(
- FILES "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}.pc"
- DESTINATION ${NLOHMANN_JSON_PKGCONFIG_INSTALL_DIR}
- )
-endif()
diff --git a/yass/third_party/json/ChangeLog.md b/yass/third_party/json/ChangeLog.md
deleted file mode 100644
index 656d68bcfc..0000000000
--- a/yass/third_party/json/ChangeLog.md
+++ /dev/null
@@ -1,2943 +0,0 @@
-# Changelog
-All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).
-
-## [3.11.2](https://github.com/nlohmann/json/releases/tag/3.11.2) (2022-08-12)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.11.1...3.11.2)
-
-- MSVC natvis visualizer does not work after introduction of inline ABI namespace [\#3696](https://github.com/nlohmann/json/issues/3696)
-- The use of parenthesis gives compilation errors in some situations [\#3682](https://github.com/nlohmann/json/issues/3682)
-- extern from/to\_json result in linker error [\#3657](https://github.com/nlohmann/json/issues/3657)
-- json\_fwd.hpp no longer standalone [\#3656](https://github.com/nlohmann/json/issues/3656)
-- regression: `.value` is compilation error. [\#3655](https://github.com/nlohmann/json/issues/3655)
-- Regression: no match for 'operator!=' comparing json\_pointer and const char \*/string\_t [\#3654](https://github.com/nlohmann/json/issues/3654)
-- Regression: call to member function 'value' is ambiguous [\#3652](https://github.com/nlohmann/json/issues/3652)
-- macOS 10.15 Actions runner image deprecation [\#3612](https://github.com/nlohmann/json/issues/3612)
-
-- generate\_natvis.py: validate version number; cleanup [\#3698](https://github.com/nlohmann/json/pull/3698) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Add Python script for generating Natvis file and update file for 3.11.2 [\#3697](https://github.com/nlohmann/json/pull/3697) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- fix typo in json\_pointer.md [\#3692](https://github.com/nlohmann/json/pull/3692) ([eltociear](https://github.com/eltociear))
-- Add amalgamated json-fwd.hpp to release [\#3687](https://github.com/nlohmann/json/pull/3687) ([nlohmann](https://github.com/nlohmann))
-- Documentation updates for 3.11.2 [\#3686](https://github.com/nlohmann/json/pull/3686) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Make json\_pointer usable as map key \(again\) [\#3685](https://github.com/nlohmann/json/pull/3685) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Deprecate json\_pointer/string\_t comparisons [\#3684](https://github.com/nlohmann/json/pull/3684) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Restructure inline namespace and allow version component to be disabled [\#3683](https://github.com/nlohmann/json/pull/3683) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Properly constrain non-string json\_pointer overloads [\#3681](https://github.com/nlohmann/json/pull/3681) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Amalgamate the forward declaration header [\#3679](https://github.com/nlohmann/json/pull/3679) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Fix 'const' qualifier on bool& has no effect [\#3678](https://github.com/nlohmann/json/pull/3678) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Fix whitespace in workflow files [\#3675](https://github.com/nlohmann/json/pull/3675) ([nlohmann](https://github.com/nlohmann))
-- Attempt to fix labeler permissions [\#3674](https://github.com/nlohmann/json/pull/3674) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Refine 'Publish documentation' workflow [\#3673](https://github.com/nlohmann/json/pull/3673) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Documentation change [\#3672](https://github.com/nlohmann/json/pull/3672) ([nlohmann](https://github.com/nlohmann))
-- Add labeler action [\#3671](https://github.com/nlohmann/json/pull/3671) ([nlohmann](https://github.com/nlohmann))
-- Complete contributor list [\#3670](https://github.com/nlohmann/json/pull/3670) ([nlohmann](https://github.com/nlohmann))
-- Add json\_pointer/string\_t equality comparison operators [\#3664](https://github.com/nlohmann/json/pull/3664) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Reimplement value\(\) access functions [\#3663](https://github.com/nlohmann/json/pull/3663) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Complete contributor list [\#3662](https://github.com/nlohmann/json/pull/3662) ([nlohmann](https://github.com/nlohmann))
-- Adjust naming of GitHub action jobs [\#3661](https://github.com/nlohmann/json/pull/3661) ([nlohmann](https://github.com/nlohmann))
-- Publish documentation on push to develop branch [\#3660](https://github.com/nlohmann/json/pull/3660) ([nlohmann](https://github.com/nlohmann))
-- Add Discord badge to README [\#3651](https://github.com/nlohmann/json/pull/3651) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Miscellaneous small fixes [\#3643](https://github.com/nlohmann/json/pull/3643) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Minor BJData fixes [\#3637](https://github.com/nlohmann/json/pull/3637) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Update CI [\#3626](https://github.com/nlohmann/json/pull/3626) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-
-## [v3.11.1](https://github.com/nlohmann/json/releases/tag/v3.11.1) (2022-08-01)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.11.0...v3.11.1)
-
-- Regression: no matching literal operator for call to 'operator""\_json' [\#3645](https://github.com/nlohmann/json/issues/3645)
-- \_json operator""\(\) [\#3644](https://github.com/nlohmann/json/issues/3644)
-
-- Fix global UDLs [\#3646](https://github.com/nlohmann/json/pull/3646) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-
-## [v3.11.0](https://github.com/nlohmann/json/releases/tag/v3.11.0) (2022-08-01)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.10.5...v3.11.0)
-
-- ICPC: warning \#1098: the qualifier on this friend declaration is ignored [\#3632](https://github.com/nlohmann/json/issues/3632)
-- Starting with 3.10.4, just adding `\#include json.hpp` causes compile error: `overload resolution selected deleted operator '=' [\#3620](https://github.com/nlohmann/json/issues/3620)
-- xwidgets doesn't compile with version \>3.10.3 [\#3602](https://github.com/nlohmann/json/issues/3602)
-- json\_pointer\_\_pop\_back.cpp example does not compile [\#3600](https://github.com/nlohmann/json/issues/3600)
-- nlohmann::json::array 'push\_back' is ambiguous [\#3589](https://github.com/nlohmann/json/issues/3589)
-- Multiple versions causing conflict [\#3588](https://github.com/nlohmann/json/issues/3588)
-- ERROR: ThreadSanitizer: SEGV on unknown address [\#3584](https://github.com/nlohmann/json/issues/3584)
-- unicode4 test consistently fails on RISC-V hardware [\#3579](https://github.com/nlohmann/json/issues/3579)
-- sax\_parse\(iterator, json\_sax\_t \*\) string callback clobbers spaces [\#3574](https://github.com/nlohmann/json/issues/3574)
-- Nlohmann JSON Parse crash with raylib-cpp [\#3570](https://github.com/nlohmann/json/issues/3570)
-- ordered\_json doesn't accept keys of types other than string\_t \(e.g., string\_view\) [\#3558](https://github.com/nlohmann/json/issues/3558)
-- turning an object into an array [\#3547](https://github.com/nlohmann/json/issues/3547)
-- json:parse\_bjdata\_fuzzer: ASSERT: ref\_stack.back\(\)-\>is\_array\(\) [\#3541](https://github.com/nlohmann/json/issues/3541)
-- Warning about potential null dereference in GCC 12.1 \(Fedora 36\) [\#3525](https://github.com/nlohmann/json/issues/3525)
-- Enable 32bit unit test in CI [\#3524](https://github.com/nlohmann/json/issues/3524)
-- Error when roundtripping BJData [\#3519](https://github.com/nlohmann/json/issues/3519)
-- ASSERT error while parsing BJData [\#3513](https://github.com/nlohmann/json/issues/3513)
-- An exception occurred when sending a string with double quotes [\#3504](https://github.com/nlohmann/json/issues/3504)
-- Binary reader for BJData creates incorrect SAX events [\#3503](https://github.com/nlohmann/json/issues/3503)
-- It can't support "nan", "inf", "-inf" for float type [\#3494](https://github.com/nlohmann/json/issues/3494)
-- ASAN error while parsing BJData \(Heap-buffer-overflow READ 1\) [\#3492](https://github.com/nlohmann/json/issues/3492)
-- UBSAN error while parsing BJData \(Null-dereference\) [\#3491](https://github.com/nlohmann/json/issues/3491)
-- UBSAN error while parsing BJData \(Invalid-bool-value\) [\#3490](https://github.com/nlohmann/json/issues/3490)
-- json:parse\_bjdata\_fuzzer reaches assertion [\#3475](https://github.com/nlohmann/json/issues/3475)
-- Compilation with -fmodules-ts and use inside of a module [\#3472](https://github.com/nlohmann/json/issues/3472)
-- json.exception.parse\_error.101 only occurs outside of IDE [\#3467](https://github.com/nlohmann/json/issues/3467)
-- json:parse\_bjdata\_fuzzer reaches assertion [\#3461](https://github.com/nlohmann/json/issues/3461)
-- NLOHMANN\_DEFINE\_TYPE\_NON\_INTRUSIVE\_WITH\_DEFAULT can not parse { "key" : null} [\#3458](https://github.com/nlohmann/json/issues/3458)
-- Unable to compile when using Microsoft's \_CRTDBG [\#3457](https://github.com/nlohmann/json/issues/3457)
-- Compilation errors when including `` and using `--std=c++17` or above \(MinGW/Win10\) [\#3449](https://github.com/nlohmann/json/issues/3449)
-- Weird things on for statement [\#3447](https://github.com/nlohmann/json/issues/3447)
-- Parsing error when there is a json string within a Json [\#3445](https://github.com/nlohmann/json/issues/3445)
-- ordered\_json vs json types comparison [\#3443](https://github.com/nlohmann/json/issues/3443)
-- Error occurred when converting nlohmann::json to std::any [\#3428](https://github.com/nlohmann/json/issues/3428)
-- I was forced to report an assertion error when copying an array of strings [\#3419](https://github.com/nlohmann/json/issues/3419)
-- About Serialization Error invalid UTF-8 byte at index [\#3414](https://github.com/nlohmann/json/issues/3414)
-- Comparison of NaN differs between json and float [\#3409](https://github.com/nlohmann/json/issues/3409)
-- when i use it in C++ sserver,it it constantly show that fatal error: adl\_serializer.hpp: No such file or directory [\#3404](https://github.com/nlohmann/json/issues/3404)
-- parse error [\#3403](https://github.com/nlohmann/json/issues/3403)
-- CMake script MAIN\_PROJECT always OFF [\#3390](https://github.com/nlohmann/json/issues/3390)
-- Parser unable to handle large floating point numbers [\#3389](https://github.com/nlohmann/json/issues/3389)
-- Compilation error if json\_pointer is used with alternative string type [\#3388](https://github.com/nlohmann/json/issues/3388)
-- Unit tests conversions & items fail to build \(Clang \<4.0/C++14 only\) [\#3384](https://github.com/nlohmann/json/issues/3384)
-- Regression test for \#3070 is not being run and fails when enabled [\#3377](https://github.com/nlohmann/json/issues/3377)
-- Refactor unit tests to use more convenient doctest assertion macros [\#3365](https://github.com/nlohmann/json/issues/3365)
-- An json.h issue reported in a static code analyzer [\#3361](https://github.com/nlohmann/json/issues/3361)
-- Mixing different JSON\_DIAGNOSTICS settings in separately compiled units leads to core [\#3360](https://github.com/nlohmann/json/issues/3360)
-- json::out\_of\_range exception matches against lot of others while testing [\#3352](https://github.com/nlohmann/json/issues/3352)
-- use mipsel-openwrt-linux-g++ -std=c++11 to compile, it has some errors "error: 'snprintf' is not a member of 'std'" [\#3349](https://github.com/nlohmann/json/issues/3349)
-- Add proper issue templates [\#3348](https://github.com/nlohmann/json/issues/3348)
-- switch from json to ordered\_json [\#3343](https://github.com/nlohmann/json/issues/3343)
-- Json dump use to compilation errors [\#3339](https://github.com/nlohmann/json/issues/3339)
-- Ambiguous conversion from nlohmann::basic\_json\<\> to custom class. [\#3333](https://github.com/nlohmann/json/issues/3333)
-- Iterator doesn't satisfy std::incrementable because post-increment may change constness [\#3331](https://github.com/nlohmann/json/issues/3331)
-- Inconsistent handling of floating point numbers after parse\(\) [\#3329](https://github.com/nlohmann/json/issues/3329)
-- Documentation for `ordered_json` should show proper use of the `parse()` function. [\#3325](https://github.com/nlohmann/json/issues/3325)
-- "type must be boolean, but is object" error thrown on non-boolean object [\#3319](https://github.com/nlohmann/json/issues/3319)
-- Incomplete Type in request parms [\#3318](https://github.com/nlohmann/json/issues/3318)
-- 小米 MIX4 MIUI13 bug [\#3316](https://github.com/nlohmann/json/issues/3316)
-- json.exception.parse\_error.101 when parsing data received over a socket [\#3313](https://github.com/nlohmann/json/issues/3313)
-- Parse to custom class from unordered\_json breaks on G++11.2.0 with C++20 [\#3312](https://github.com/nlohmann/json/issues/3312)
-- try to assign dumped string to a class member varible [\#3300](https://github.com/nlohmann/json/issues/3300)
-- includedir in pkgconfig is error if install\_headers\(\) has subdir argument. [\#3284](https://github.com/nlohmann/json/issues/3284)
-- SHA-256 sum of json-3.10.5.tar.xz changes over time \(but not the content itself\) [\#3281](https://github.com/nlohmann/json/issues/3281)
-- items\(\) method does not follow order of json message [\#3278](https://github.com/nlohmann/json/issues/3278)
-- Perplexing template deduction failure serialising a 3rd party type using base class [\#3267](https://github.com/nlohmann/json/issues/3267)
-- json.hpp 'isfinite' is not a member of 'std' also isinf; snprintf; stoull and to\_string members of std [\#3263](https://github.com/nlohmann/json/issues/3263)
-- JSON build fails for C++ cmake [\#3256](https://github.com/nlohmann/json/issues/3256)
-- Unexpected implicit conversion [\#3254](https://github.com/nlohmann/json/issues/3254)
-- Add a function that checks for valid json in a C++ string [\#3245](https://github.com/nlohmann/json/issues/3245)
-- Replace use of standard IO from error handling [\#3239](https://github.com/nlohmann/json/issues/3239)
-- Use Catch for unit tests [\#3232](https://github.com/nlohmann/json/issues/3232)
-- Exception thrown during initialization causes a memory leak [\#3215](https://github.com/nlohmann/json/issues/3215)
-- Tests failing when compiling with c++20 [\#3207](https://github.com/nlohmann/json/issues/3207)
-- ambiguous regression [\#3204](https://github.com/nlohmann/json/issues/3204)
-- Deserialization: if class is\_constructible from std::string wrong from\_json overload is being selected, compilation failed [\#3171](https://github.com/nlohmann/json/issues/3171)
-- 'clang++ ./json.hpp' with no usage: Compiler syntax problem in clang 3.7.0 \(tizen :/ \) [\#3153](https://github.com/nlohmann/json/issues/3153)
-- build failure on upcoming gcc-12: test/src/unit-regression1.cpp:392:22: error: ambiguous overload for 'operator=' [\#3138](https://github.com/nlohmann/json/issues/3138)
-- Applying JSON patch creates parent object [\#3134](https://github.com/nlohmann/json/issues/3134)
-- Iterators cannot be used with range-v3 [\#3130](https://github.com/nlohmann/json/issues/3130)
-- std::shared\_ptr\ == nlohmann::json compiles, which seem undesirable [\#3026](https://github.com/nlohmann/json/issues/3026)
-- Error in test\download\_test\_data.vcxproj custom build step when compiling with Visual Studio 2019 16.7.7 msbuild on Windows 10 [\#2593](https://github.com/nlohmann/json/issues/2593)
-- Consider putting the user-defined literals in a namespace [\#1682](https://github.com/nlohmann/json/issues/1682)
-- Using versioned namespaces [\#1539](https://github.com/nlohmann/json/issues/1539)
-- How can I use std::string\_view as the json\_key to "operator \[\]" ? [\#1529](https://github.com/nlohmann/json/issues/1529)
-- serialize std::variant\<...\> [\#1261](https://github.com/nlohmann/json/issues/1261)
-
-- Prepare 3.11.0 release [\#3635](https://github.com/nlohmann/json/pull/3635) ([nlohmann](https://github.com/nlohmann))
-- Fix warning [\#3634](https://github.com/nlohmann/json/pull/3634) ([nlohmann](https://github.com/nlohmann))
-- Add license header to new files [\#3633](https://github.com/nlohmann/json/pull/3633) ([nlohmann](https://github.com/nlohmann))
-- Add a unit test including windows.h [\#3631](https://github.com/nlohmann/json/pull/3631) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Fixed latest build error in msvc platform [\#3630](https://github.com/nlohmann/json/pull/3630) ([KsaNL](https://github.com/KsaNL))
-- Add regression tests for \#3204 and \#3333 [\#3629](https://github.com/nlohmann/json/pull/3629) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Fix patch::add creating nonexistent parents [\#3628](https://github.com/nlohmann/json/pull/3628) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Adjust JSON Pointer examples [\#3622](https://github.com/nlohmann/json/pull/3622) ([nlohmann](https://github.com/nlohmann))
-- Disable exceptions on ICPC [\#3621](https://github.com/nlohmann/json/pull/3621) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- build: install .pc and .cmake files to share/ [\#3619](https://github.com/nlohmann/json/pull/3619) ([Tachi107](https://github.com/Tachi107))
-- Fix MinGW CI failures [\#3618](https://github.com/nlohmann/json/pull/3618) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Fix Unicode test timeout \(for real this time!\) [\#3614](https://github.com/nlohmann/json/pull/3614) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Use 'concurrency' in GitHub workflows [\#3610](https://github.com/nlohmann/json/pull/3610) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Use swap\(\) by ADL [\#3609](https://github.com/nlohmann/json/pull/3609) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Move UDLs out of the global namespace [\#3605](https://github.com/nlohmann/json/pull/3605) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Re-add value\_type detection to distinguish string types [\#3604](https://github.com/nlohmann/json/pull/3604) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Add operator\<\<\(json\_pointer\) [\#3601](https://github.com/nlohmann/json/pull/3601) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Add documentation for comparing json and ordered\_json [\#3599](https://github.com/nlohmann/json/pull/3599) ([nlohmann](https://github.com/nlohmann))
-- Clean up after \#3581 [\#3596](https://github.com/nlohmann/json/pull/3596) ([nlohmann](https://github.com/nlohmann))
-- Add assertion if nullptr is passed to parse function [\#3593](https://github.com/nlohmann/json/pull/3593) ([nlohmann](https://github.com/nlohmann))
-- Minor documentation fixes [\#3592](https://github.com/nlohmann/json/pull/3592) ([nlohmann](https://github.com/nlohmann))
-- Add versioned, ABI-tagged inline namespace and namespace macros [\#3590](https://github.com/nlohmann/json/pull/3590) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Add badge for https://repology.org/project/nlohmann-json/versions [\#3586](https://github.com/nlohmann/json/pull/3586) ([nlohmann](https://github.com/nlohmann))
-- Add error message if test suite cannot be found [\#3585](https://github.com/nlohmann/json/pull/3585) ([nlohmann](https://github.com/nlohmann))
-- add patch\_inplace function [\#3581](https://github.com/nlohmann/json/pull/3581) ([wolfv](https://github.com/wolfv))
-- Enable overriding test properties and set Unicode test timeouts [\#3580](https://github.com/nlohmann/json/pull/3580) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Ignore output directory [\#3572](https://github.com/nlohmann/json/pull/3572) ([NN---](https://github.com/NN---))
-- Optimize output vector adapter write [\#3569](https://github.com/nlohmann/json/pull/3569) ([romainreignier](https://github.com/romainreignier))
-- Add overloads for more key types to ordered\_map and fix ordered\_map::erase\(first, last\) with first == last [\#3564](https://github.com/nlohmann/json/pull/3564) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Make certain usage patterns more prominent in the README [\#3557](https://github.com/nlohmann/json/pull/3557) ([jez](https://github.com/jez))
-- CI: fix "JSON\_MultipleHeaders" option spelling [\#3555](https://github.com/nlohmann/json/pull/3555) ([karzhenkov](https://github.com/karzhenkov))
-- More documentation updates for 3.11.0 [\#3553](https://github.com/nlohmann/json/pull/3553) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Use DOCTEST\_\* compiler macros and suppress pragmas warning [\#3550](https://github.com/nlohmann/json/pull/3550) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Add unit test to make sure iterator\_input\_adapter advances iterators correctly [\#3548](https://github.com/nlohmann/json/pull/3548) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Use REUSE framework [\#3546](https://github.com/nlohmann/json/pull/3546) ([nlohmann](https://github.com/nlohmann))
-- Use `std::iterator_traits` to extract `iterator_category` [\#3544](https://github.com/nlohmann/json/pull/3544) ([Mike-Leo-Smith](https://github.com/Mike-Leo-Smith))
-- BJData dimension length can not be string\_t::npos, fix \#3541 [\#3543](https://github.com/nlohmann/json/pull/3543) ([fangq](https://github.com/fangq))
-- Allow disabling default enum conversions [\#3536](https://github.com/nlohmann/json/pull/3536) ([zxey](https://github.com/zxey))
-- Add to\_json\(\) for std::vector\::reference [\#3534](https://github.com/nlohmann/json/pull/3534) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- CI: Enable 32bit unit test \(3\) [\#3532](https://github.com/nlohmann/json/pull/3532) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Use new CI image [\#3528](https://github.com/nlohmann/json/pull/3528) ([nlohmann](https://github.com/nlohmann))
-- Fix ndarray dimension signedness, fix ndarray length overflow \(2\); add 32bit unit test [\#3523](https://github.com/nlohmann/json/pull/3523) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Small documentation fixes [\#3520](https://github.com/nlohmann/json/pull/3520) ([nlohmann](https://github.com/nlohmann))
-- Add assertion to converting constructor [\#3517](https://github.com/nlohmann/json/pull/3517) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- CI: Remove -Wstrict-overflow [\#3516](https://github.com/nlohmann/json/pull/3516) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Fix nlohmann/json\#3513, explain is\_ndarray flag [\#3514](https://github.com/nlohmann/json/pull/3514) ([fangq](https://github.com/fangq))
-- Prevent ndarray size vector from recursive use, fix nlohmann/json\#3503 [\#3505](https://github.com/nlohmann/json/pull/3505) ([fangq](https://github.com/fangq))
-- prevent ndarray dimension vector from recusive array, nlohmann/json\#3500 [\#3502](https://github.com/nlohmann/json/pull/3502) ([fangq](https://github.com/fangq))
-- Discard optimized containers with negative counts in UBJSON/BJData \(\#3491,\#3492,\#3490\) [\#3500](https://github.com/nlohmann/json/pull/3500) ([fangq](https://github.com/fangq))
-- Update json.hpp [\#3499](https://github.com/nlohmann/json/pull/3499) ([ivanovmp](https://github.com/ivanovmp))
-- Add assertion for invariant in SAX-DOM parser [\#3498](https://github.com/nlohmann/json/pull/3498) ([nlohmann](https://github.com/nlohmann))
-- Add more macOS builders [\#3485](https://github.com/nlohmann/json/pull/3485) ([nlohmann](https://github.com/nlohmann))
-- change bjdata ndarray flag to detect negative size, as part of \#3475 [\#3479](https://github.com/nlohmann/json/pull/3479) ([fangq](https://github.com/fangq))
-- Document fuzzer usage [\#3478](https://github.com/nlohmann/json/pull/3478) ([nlohmann](https://github.com/nlohmann))
-- Add build step for ICPC \(with fixes\) [\#3465](https://github.com/nlohmann/json/pull/3465) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Complete documentation for 3.11.0 [\#3464](https://github.com/nlohmann/json/pull/3464) ([nlohmann](https://github.com/nlohmann))
-- Handle invalid BJData optimized type, fix \#3461 [\#3463](https://github.com/nlohmann/json/pull/3463) ([fangq](https://github.com/fangq))
-- Reorganize directories [\#3462](https://github.com/nlohmann/json/pull/3462) ([nlohmann](https://github.com/nlohmann))
-- Enable rapid testing and development on Compiler Explorer [\#3456](https://github.com/nlohmann/json/pull/3456) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- cpplint 1.6.0 [\#3454](https://github.com/nlohmann/json/pull/3454) ([nlohmann](https://github.com/nlohmann))
-- Disable regression test for \#3070 on GCC \<8.4 [\#3451](https://github.com/nlohmann/json/pull/3451) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Fix C++20/gcc-12 issues \(Part 2\) [\#3446](https://github.com/nlohmann/json/pull/3446) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Overwork documentation [\#3444](https://github.com/nlohmann/json/pull/3444) ([nlohmann](https://github.com/nlohmann))
-- Fix typo in basic\_json documentation [\#3439](https://github.com/nlohmann/json/pull/3439) ([jhnlee](https://github.com/jhnlee))
-- Exclude std::any from implicit conversion \(fixes \#3428\) [\#3437](https://github.com/nlohmann/json/pull/3437) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Document which version introduced the macros [\#3431](https://github.com/nlohmann/json/pull/3431) ([nlohmann](https://github.com/nlohmann))
-- Fix constraints on from\_json\(\) for strings \(fixes \#3171, \#3267, \#3312, \#3384\) [\#3427](https://github.com/nlohmann/json/pull/3427) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- at.md: fix typo [\#3426](https://github.com/nlohmann/json/pull/3426) ([heinemml](https://github.com/heinemml))
-- Implement support for string\_view \(attempt no. 3\) [\#3423](https://github.com/nlohmann/json/pull/3423) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- CI: speedup AppVeyor builds by ~30% [\#3422](https://github.com/nlohmann/json/pull/3422) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Restore disabled check for \#3070 \(except on MSVC\) [\#3421](https://github.com/nlohmann/json/pull/3421) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Update CI image [\#3420](https://github.com/nlohmann/json/pull/3420) ([nlohmann](https://github.com/nlohmann))
-- Add check if different version is also included [\#3418](https://github.com/nlohmann/json/pull/3418) ([nlohmann](https://github.com/nlohmann))
-- Report the right \_\_cplusplus value for MSVC in basic\_json meta\(\) [\#3417](https://github.com/nlohmann/json/pull/3417) ([flagarde](https://github.com/flagarde))
-- CI: windows-2016 has been deprecated; remove jobs [\#3416](https://github.com/nlohmann/json/pull/3416) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Re-template json\_pointer on string type [\#3415](https://github.com/nlohmann/json/pull/3415) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Refactor unit tests to use more convenient doctest assertion macros \(Part 2\) [\#3405](https://github.com/nlohmann/json/pull/3405) ([kkarbowiak](https://github.com/kkarbowiak))
-- Refactor unit tests to use more convenient doctest assertion macros [\#3393](https://github.com/nlohmann/json/pull/3393) ([kkarbowiak](https://github.com/kkarbowiak))
-- Improve unit testing \(Part 1\) [\#3380](https://github.com/nlohmann/json/pull/3380) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Fix C++20/gcc-12 issues \(Part 1\) [\#3379](https://github.com/nlohmann/json/pull/3379) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Add clarification to avoid misunderstanding that cause \#3360 [\#3378](https://github.com/nlohmann/json/pull/3378) ([puffetto](https://github.com/puffetto))
-- Fix ordered\_map ctor with initializer\_list \(fixes \#3343\) [\#3370](https://github.com/nlohmann/json/pull/3370) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Fix and update CI [\#3368](https://github.com/nlohmann/json/pull/3368) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- FetchContent\_MakeAvailable [\#3351](https://github.com/nlohmann/json/pull/3351) ([nlohmann](https://github.com/nlohmann))
-- Avoid clash with Arduino defines [\#3338](https://github.com/nlohmann/json/pull/3338) ([DarkZeros](https://github.com/DarkZeros))
-- Support UBJSON-derived Binary JData \(BJData\) format [\#3336](https://github.com/nlohmann/json/pull/3336) ([fangq](https://github.com/fangq))
-- Make iterator operator++/--\(int\) equality-preserving [\#3332](https://github.com/nlohmann/json/pull/3332) ([falbrechtskirchinger](https://github.com/falbrechtskirchinger))
-- Add note on parsing ordered\_json [\#3326](https://github.com/nlohmann/json/pull/3326) ([nlohmann](https://github.com/nlohmann))
-- Fix CITATION.cff and add automatic validation of your citation metadata [\#3320](https://github.com/nlohmann/json/pull/3320) ([fdiblen](https://github.com/fdiblen))
-- .github/workflows/windows.yml: Add support for Visual Studio 2022 [\#3295](https://github.com/nlohmann/json/pull/3295) ([t-b](https://github.com/t-b))
-- Add maintainer targets to create source archive [\#3289](https://github.com/nlohmann/json/pull/3289) ([nlohmann](https://github.com/nlohmann))
-- Fix a typo [\#3265](https://github.com/nlohmann/json/pull/3265) ([fhuberts](https://github.com/fhuberts))
-- Fix typo [\#3249](https://github.com/nlohmann/json/pull/3249) ([rex4539](https://github.com/rex4539))
-- Add documentation for JSON Lines [\#3247](https://github.com/nlohmann/json/pull/3247) ([nlohmann](https://github.com/nlohmann))
-- Improve documentation InputType and IteratorType [\#3246](https://github.com/nlohmann/json/pull/3246) ([nlohmann](https://github.com/nlohmann))
-- Remove stringstream [\#3244](https://github.com/nlohmann/json/pull/3244) ([nlohmann](https://github.com/nlohmann))
-- fix \_MSC\_VER version to check for std::filesystem [\#3240](https://github.com/nlohmann/json/pull/3240) ([gcerretani](https://github.com/gcerretani))
-- Add macros NLOHMANN\_DEFINE\_TYPE\_INTRUSIVE\_WITH\_DEFAULT and ...\_NON\_INTRUSIVE\_WITH\_DEFAULT [\#3143](https://github.com/nlohmann/json/pull/3143) ([pketelsen](https://github.com/pketelsen))
-
-## [v3.10.5](https://github.com/nlohmann/json/releases/tag/v3.10.5) (2022-01-03)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.10.4...v3.10.5)
-
-- \#include \ doesn't work with gcc-7 when `-std=c++17` is specified. [\#3203](https://github.com/nlohmann/json/issues/3203)
-- Not able to use nlohmann json with c++ code built using emscripten to wasm [\#3200](https://github.com/nlohmann/json/issues/3200)
-- Warning for shadowed variables [\#3188](https://github.com/nlohmann/json/issues/3188)
-- Accessing missing keys on const json object leads to assert [\#3183](https://github.com/nlohmann/json/issues/3183)
-- Data member is available, but null is reported, and program throws error [\#3173](https://github.com/nlohmann/json/issues/3173)
-- serialization problem, from\_json need construct new object [\#3169](https://github.com/nlohmann/json/issues/3169)
-- std::filesystem unavailable on macOS lower deployment targets [\#3156](https://github.com/nlohmann/json/issues/3156)
-- \[json.exception.type\_error.305\] cannot use operator\[\] with a string argument with string [\#3151](https://github.com/nlohmann/json/issues/3151)
-- json::dump\(\) is not compatible with C++ standards [\#3147](https://github.com/nlohmann/json/issues/3147)
-- Issue with json::parse decoding codepoints [\#3142](https://github.com/nlohmann/json/issues/3142)
-- Simple parse of json object thinks it should be an array [\#3136](https://github.com/nlohmann/json/issues/3136)
-- How to properly read a Json string that may be null in some cases? [\#3135](https://github.com/nlohmann/json/issues/3135)
-- Deadlock on create json - windows only [\#3129](https://github.com/nlohmann/json/issues/3129)
-- Wrong parsing of int64 values nearest of limit [\#3126](https://github.com/nlohmann/json/issues/3126)
-- ordered\_json doesn't support range based erase [\#3108](https://github.com/nlohmann/json/issues/3108)
-- Apple build failed with json/single\_include/nlohmann/json.hpp:4384:57: 'path' is unavailable [\#3097](https://github.com/nlohmann/json/issues/3097)
-- GCC 7.5.0 with --std=c++17: filesystem: No such file or directory [\#3090](https://github.com/nlohmann/json/issues/3090)
-- Drop Travis CI [\#3087](https://github.com/nlohmann/json/issues/3087)
-- ordered\_json::reset\(\) compile error with nvcc [\#3013](https://github.com/nlohmann/json/issues/3013)
-- Support for unordered\_map as object\_t [\#2932](https://github.com/nlohmann/json/issues/2932)
-- Compiler warning with Intel compiler, same as \#755 [\#2712](https://github.com/nlohmann/json/issues/2712)
-- Compiler warnings with NVCC 11.2 [\#2676](https://github.com/nlohmann/json/issues/2676)
-- some static analysis warning at line 11317 [\#1390](https://github.com/nlohmann/json/issues/1390)
-- Compiling with icpc [\#755](https://github.com/nlohmann/json/issues/755)
-
-- Fix compilation error with NVCC [\#3234](https://github.com/nlohmann/json/pull/3234) ([nlohmann](https://github.com/nlohmann))
-- Remove Travis CI [\#3233](https://github.com/nlohmann/json/pull/3233) ([nlohmann](https://github.com/nlohmann))
-- Add build step for NVCC and fix a warning [\#3227](https://github.com/nlohmann/json/pull/3227) ([nlohmann](https://github.com/nlohmann))
-- Update cpplint [\#3225](https://github.com/nlohmann/json/pull/3225) ([nlohmann](https://github.com/nlohmann))
-- Fix: Warning for shadowed variables \(\#3188\) [\#3193](https://github.com/nlohmann/json/pull/3193) ([kernie](https://github.com/kernie))
-- Fix FAQ hyperlink typo in readme [\#3148](https://github.com/nlohmann/json/pull/3148) ([Prince-Mendiratta](https://github.com/Prince-Mendiratta))
-- Docs: Update `skip_comments` to `ignore_comments` [\#3145](https://github.com/nlohmann/json/pull/3145) ([daniel-kun](https://github.com/daniel-kun))
-- fix typos in documentation [\#3140](https://github.com/nlohmann/json/pull/3140) ([striezel](https://github.com/striezel))
-- Fix spelling [\#3125](https://github.com/nlohmann/json/pull/3125) ([axic](https://github.com/axic))
-- Extend std specializations [\#3121](https://github.com/nlohmann/json/pull/3121) ([nlohmann](https://github.com/nlohmann))
-- Add missing erase\(first, last\) function to ordered\_map [\#3109](https://github.com/nlohmann/json/pull/3109) ([nlohmann](https://github.com/nlohmann))
-- Fix typos in operator\[\] documentation [\#3102](https://github.com/nlohmann/json/pull/3102) ([axnsan12](https://github.com/axnsan12))
-- Add C++17 copies of the test binaries [\#3101](https://github.com/nlohmann/json/pull/3101) ([nlohmann](https://github.com/nlohmann))
-- Add examples for parsing from iterator pair [\#3100](https://github.com/nlohmann/json/pull/3100) ([nlohmann](https://github.com/nlohmann))
-- Update CI [\#3088](https://github.com/nlohmann/json/pull/3088) ([nlohmann](https://github.com/nlohmann))
-- Consolidate documentation [\#3071](https://github.com/nlohmann/json/pull/3071) ([nlohmann](https://github.com/nlohmann))
-- Add recursive update function [\#3069](https://github.com/nlohmann/json/pull/3069) ([nlohmann](https://github.com/nlohmann))
-
-## [v3.10.4](https://github.com/nlohmann/json/releases/tag/v3.10.4) (2021-10-16)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.10.3...v3.10.4)
-
-- Compiler error in output serializer due to 'incompatible initializer' [\#3081](https://github.com/nlohmann/json/issues/3081)
-- Strange behaviour when using std::sort on std::vector\ [\#3080](https://github.com/nlohmann/json/issues/3080)
-- Unhandled exception: nlohmann::detail::parse\_error [\#3078](https://github.com/nlohmann/json/issues/3078)
-- explicit constructor with default does not compile [\#3077](https://github.com/nlohmann/json/issues/3077)
-- Parse an object but get an array using GCC [\#3076](https://github.com/nlohmann/json/issues/3076)
-- Version 3.10.3 breaks backward-compatibility with 3.10.2 [\#3070](https://github.com/nlohmann/json/issues/3070)
-- Feature request, Add to\_json/from\_json to align with other to/from binary api. [\#3067](https://github.com/nlohmann/json/issues/3067)
-- vcpkg is out of date [\#3066](https://github.com/nlohmann/json/issues/3066)
-
-- Revert invalid fix [\#3082](https://github.com/nlohmann/json/pull/3082) ([nlohmann](https://github.com/nlohmann))
-- Allow to use get with explicit constructor [\#3079](https://github.com/nlohmann/json/pull/3079) ([nlohmann](https://github.com/nlohmann))
-- fix std::filesystem::path regression [\#3073](https://github.com/nlohmann/json/pull/3073) ([theodelrieu](https://github.com/theodelrieu))
-
-## [v3.10.3](https://github.com/nlohmann/json/releases/tag/v3.10.3) (2021-10-08)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.10.2...v3.10.3)
-
-- Parsing an emtpy string returns a string with size 1 instead of expected 0 [\#3057](https://github.com/nlohmann/json/issues/3057)
-- Linking error "duplicate symbol: std::type\_info::operator==" on static build with MinGW [\#3042](https://github.com/nlohmann/json/issues/3042)
-- Yet another assertion failure when inserting into arrays with JSON\_DIAGNOSTICS set [\#3032](https://github.com/nlohmann/json/issues/3032)
-- accept and parse function not work well with a pure number string [\#3029](https://github.com/nlohmann/json/issues/3029)
-- push\_back doesn't work for serializing containers [\#3027](https://github.com/nlohmann/json/issues/3027)
-- Strange behaviour when creating array with single element [\#3025](https://github.com/nlohmann/json/issues/3025)
-- Input ordered\_json doesn't work [\#3023](https://github.com/nlohmann/json/issues/3023)
-- Issue iterating through 'items' [\#3021](https://github.com/nlohmann/json/issues/3021)
-- Cannot spell the namespace right [\#3015](https://github.com/nlohmann/json/issues/3015)
-- JSON Parse error when reading json object from file [\#3011](https://github.com/nlohmann/json/issues/3011)
-- Parent pointer not properly set when using update\(\) [\#3007](https://github.com/nlohmann/json/issues/3007)
-- Overwriting terminated null character [\#3001](https://github.com/nlohmann/json/issues/3001)
-- 'operator =' is ambiguous on VS2017 [\#2997](https://github.com/nlohmann/json/issues/2997)
-- JSON Patch for Array Elements [\#2994](https://github.com/nlohmann/json/issues/2994)
-- JSON Parse throwing error [\#2983](https://github.com/nlohmann/json/issues/2983)
-- to\_{binary format} does not provide a mechanism for specifying a custom allocator for the returned type. [\#2982](https://github.com/nlohmann/json/issues/2982)
-- 3.10.1 zip json.hpp has version number 3.10.0 instead of 3.10.1 [\#2973](https://github.com/nlohmann/json/issues/2973)
-- Assertion failure when serializing array with JSON\_DIAGNOSTICS set [\#2926](https://github.com/nlohmann/json/issues/2926)
-
-- Fix Clang version [\#3040](https://github.com/nlohmann/json/pull/3040) ([nlohmann](https://github.com/nlohmann))
-- Fix assertion failure for JSON\_DIAGNOSTICS [\#3037](https://github.com/nlohmann/json/pull/3037) ([carlsmedstad](https://github.com/carlsmedstad))
-- meta: fix is\_compatible/constructible traits [\#3020](https://github.com/nlohmann/json/pull/3020) ([theodelrieu](https://github.com/theodelrieu))
-- Set parent pointers for values inserted via update\(\) \(fixes \#3007\). [\#3008](https://github.com/nlohmann/json/pull/3008) ([AnthonyVH](https://github.com/AnthonyVH))
-- Allow allocators for output\_vector\_adapter [\#2989](https://github.com/nlohmann/json/pull/2989) ([nlohmann](https://github.com/nlohmann))
-- Re-add Clang 12 [\#2986](https://github.com/nlohmann/json/pull/2986) ([nlohmann](https://github.com/nlohmann))
-- Use new Docker image [\#2981](https://github.com/nlohmann/json/pull/2981) ([nlohmann](https://github.com/nlohmann))
-- Update docset generation script [\#2967](https://github.com/nlohmann/json/pull/2967) ([nlohmann](https://github.com/nlohmann))
-
-## [v3.10.2](https://github.com/nlohmann/json/releases/tag/v3.10.2) (2021-08-26)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.10.1...v3.10.2)
-
-- Annoying -Wundef on new JSON\_DIAGNOSTICS macro [\#2975](https://github.com/nlohmann/json/issues/2975)
-- += issue with multiple redirection. [\#2970](https://github.com/nlohmann/json/issues/2970)
-- "incomplete type ‘nlohmann::detail::wide\_string\_input\_helper" compilation error [\#2969](https://github.com/nlohmann/json/issues/2969)
-
-- Fix -Wunused warnings on JSON\_DIAGNOSTICS [\#2976](https://github.com/nlohmann/json/pull/2976) ([gcerretani](https://github.com/gcerretani))
-
-## [v3.10.1](https://github.com/nlohmann/json/releases/tag/v3.10.1) (2021-08-24)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.10.0...v3.10.1)
-
-- JSON\_DIAGNOSTICS assertion for ordered\_json [\#2962](https://github.com/nlohmann/json/issues/2962)
-- Inserting in unordered json using a pointer retains the leading slash [\#2958](https://github.com/nlohmann/json/issues/2958)
-- Test \#9: test-cbor test case sample.json fails in debug mode - Stack overflow [\#2955](https://github.com/nlohmann/json/issues/2955)
-- 3.10.0 broke at least the Bear project [\#2953](https://github.com/nlohmann/json/issues/2953)
-- 2 tests fail in 3.10.0: cmake\_fetch\_content\_configure, cmake\_fetch\_content\_build [\#2951](https://github.com/nlohmann/json/issues/2951)
-- ctest \(58+60,/67 cmake\_import\_configure\) fails when build with -D JSON\_Install:BOOL=OFF because of missing nlohmann\_jsonTargets.cmake [\#2946](https://github.com/nlohmann/json/issues/2946)
-- Document vcpkg usage [\#2944](https://github.com/nlohmann/json/issues/2944)
-- Linker error LNK2005 when compiling \(x64\) json-3.10.0.zip with Visual Studio 2019 16.11.1 [\#2941](https://github.com/nlohmann/json/issues/2941)
-- Move Travis jobs to travis-ci.com [\#2938](https://github.com/nlohmann/json/issues/2938)
-
-- Fixed typo in docs/api/basic\_json/parse.md [\#2968](https://github.com/nlohmann/json/pull/2968) ([mbadhan](https://github.com/mbadhan))
-- Add link to Homebrew package [\#2966](https://github.com/nlohmann/json/pull/2966) ([nlohmann](https://github.com/nlohmann))
-- Fix parent update for diagnostics with ordered\_json [\#2963](https://github.com/nlohmann/json/pull/2963) ([nlohmann](https://github.com/nlohmann))
-- Set stack size for some unit tests when using MSVC [\#2961](https://github.com/nlohmann/json/pull/2961) ([nlohmann](https://github.com/nlohmann))
-- Add regression test [\#2960](https://github.com/nlohmann/json/pull/2960) ([nlohmann](https://github.com/nlohmann))
-- Update Travis badge [\#2959](https://github.com/nlohmann/json/pull/2959) ([nlohmann](https://github.com/nlohmann))
-- Fix some extra ";" clang warnings [\#2957](https://github.com/nlohmann/json/pull/2957) ([Hallot](https://github.com/Hallot))
-- Add documentation for integration via vcpkg [\#2954](https://github.com/nlohmann/json/pull/2954) ([nlohmann](https://github.com/nlohmann))
-- Avoid duplicate AppVeyor builds [\#2952](https://github.com/nlohmann/json/pull/2952) ([nlohmann](https://github.com/nlohmann))
-- 🚨 fix gdb\_pretty\_printer failure on basic types [\#2950](https://github.com/nlohmann/json/pull/2950) ([senyai](https://github.com/senyai))
-- Add header to use value\_t [\#2948](https://github.com/nlohmann/json/pull/2948) ([nlohmann](https://github.com/nlohmann))
-- Skip some tests if JSON\_Install is not set [\#2947](https://github.com/nlohmann/json/pull/2947) ([nlohmann](https://github.com/nlohmann))
-- Remove outdated json\_unit test binary [\#2945](https://github.com/nlohmann/json/pull/2945) ([nlohmann](https://github.com/nlohmann))
-- Updating the Homebrew Command [\#2943](https://github.com/nlohmann/json/pull/2943) ([amirmasoudabdol](https://github.com/amirmasoudabdol))
-
-## [v3.10.0](https://github.com/nlohmann/json/releases/tag/v3.10.0) (2021-08-17)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.9.1...v3.10.0)
-
-- Latest version 3.9.1 uses throw instead of JSON\_THROW in the amalgamated json.hpp file [\#2934](https://github.com/nlohmann/json/issues/2934)
-- Copy to a variable inside a Structure [\#2933](https://github.com/nlohmann/json/issues/2933)
-- warning C4068: unknown pragma 'GCC' on MSVC/cl [\#2924](https://github.com/nlohmann/json/issues/2924)
-- Errors during ninja test [\#2918](https://github.com/nlohmann/json/issues/2918)
-- compiler warning: "not return a value" [\#2917](https://github.com/nlohmann/json/issues/2917)
-- Comparison floating points causes warning [\#2909](https://github.com/nlohmann/json/issues/2909)
-- Why can't I have std::vector\ testList? [\#2900](https://github.com/nlohmann/json/issues/2900)
-- \[json.hpp\] from releases doesnt work [\#2897](https://github.com/nlohmann/json/issues/2897)
-- g++ \(11\) -Wuseless-cast gives lots of warnings [\#2893](https://github.com/nlohmann/json/issues/2893)
-- Cannot serialize and immediatly deserialize json to/from bson [\#2892](https://github.com/nlohmann/json/issues/2892)
-- Floating-point precision conversion error [\#2876](https://github.com/nlohmann/json/issues/2876)
-- How to avoid escaping for an already escaped string in .dump\(\) [\#2870](https://github.com/nlohmann/json/issues/2870)
-- can't parse std::vector\ [\#2869](https://github.com/nlohmann/json/issues/2869)
-- ASAN detects memory leaks [\#2865](https://github.com/nlohmann/json/issues/2865)
-- Binary subtype field cannot represent all CBOR tags [\#2863](https://github.com/nlohmann/json/issues/2863)
-- string literals possibly being parsed as another type due to the presence of only digits and full-stops [\#2852](https://github.com/nlohmann/json/issues/2852)
-- json::parse\(\) works only with absolute paths [\#2851](https://github.com/nlohmann/json/issues/2851)
-- Compiler Warnings on Raspberry Pi OS [\#2850](https://github.com/nlohmann/json/issues/2850)
-- Braced initialization and aggregate initialization behavior is different for `json::array()` function call. [\#2848](https://github.com/nlohmann/json/issues/2848)
-- 3.9.1: test suite is failing [\#2845](https://github.com/nlohmann/json/issues/2845)
-- Documentation for macro JSON\_NO\_IO is missing [\#2842](https://github.com/nlohmann/json/issues/2842)
-- Assertion failure when inserting into arrays with JSON\_DIAGNOSTICS set [\#2838](https://github.com/nlohmann/json/issues/2838)
-- HELP! There is a memory leak in the code?! [\#2837](https://github.com/nlohmann/json/issues/2837)
-- Elegant conversion of a 2-D-json array to a standard C++ array [\#2805](https://github.com/nlohmann/json/issues/2805)
-- Swift Package Manager support [\#2802](https://github.com/nlohmann/json/issues/2802)
-- Referencing a subkey which doesn't exist gives crash [\#2797](https://github.com/nlohmann/json/issues/2797)
-- Failed benchmark due to renamed branch [\#2796](https://github.com/nlohmann/json/issues/2796)
-- Build Errors with VS 2019 and json Version 3.9.1 when attempting to replicate SAX Example [\#2782](https://github.com/nlohmann/json/issues/2782)
-- Value with spaces cannot be parsed [\#2781](https://github.com/nlohmann/json/issues/2781)
-- \[Question\] CBOR rfc support. [\#2779](https://github.com/nlohmann/json/issues/2779)
-- Using JSON.hpp header file in Visual Studio 2013 \(C++ Project\) [\#2775](https://github.com/nlohmann/json/issues/2775)
-- compilation error on clang-8 + C++17 [\#2759](https://github.com/nlohmann/json/issues/2759)
-- Undefined symbol EOF [\#2755](https://github.com/nlohmann/json/issues/2755)
-- Parsing a string into json object behaves differently under g++ and MinGW compilers. [\#2746](https://github.com/nlohmann/json/issues/2746)
-- big git history size [\#2742](https://github.com/nlohmann/json/issues/2742)
-- How to get reference of std::vector\ [\#2735](https://github.com/nlohmann/json/issues/2735)
-- CMake failure in VS2019 Community [\#2734](https://github.com/nlohmann/json/issues/2734)
-- Possibility to use with custom c++ version to use in intel sgx enclaves [\#2730](https://github.com/nlohmann/json/issues/2730)
-- Possibility to use without the dependency to file io and streams to use in intel sgx enclaves [\#2728](https://github.com/nlohmann/json/issues/2728)
-- error C2784& error C2839... in my visual studio 2015 compiler [\#2726](https://github.com/nlohmann/json/issues/2726)
-- `-fno-expection` not respected anymore in 3.9.1 [\#2725](https://github.com/nlohmann/json/issues/2725)
-- When exceptions disabled with JSON\_NOEXCEPTION, lib just aborts without any message [\#2724](https://github.com/nlohmann/json/issues/2724)
-- Critical error detected c0000374 on windows10 msvc 2019 16.8.5 [\#2710](https://github.com/nlohmann/json/issues/2710)
-- unused parameter error/warning [\#2706](https://github.com/nlohmann/json/issues/2706)
-- How to store data into a Map from json file [\#2691](https://github.com/nlohmann/json/issues/2691)
-- Tests do not compile with pre-release glibc [\#2686](https://github.com/nlohmann/json/issues/2686)
-- compile errors .... chromium-style [\#2680](https://github.com/nlohmann/json/issues/2680)
-- .dump\(\) not allowing compact form [\#2678](https://github.com/nlohmann/json/issues/2678)
-- error: no matching function for call to ‘nlohmann::basic\_json\<\>::value\(int, std::set\&\)’ [\#2671](https://github.com/nlohmann/json/issues/2671)
-- Compiler warning: unused parameter [\#2668](https://github.com/nlohmann/json/issues/2668)
-- Deserializing to a struct as shown on the project homepage throws compile time errors [\#2665](https://github.com/nlohmann/json/issues/2665)
-- Unable to compile on MSVC 2019 with SDL checking enabled: This function or variable may be unsafe [\#2664](https://github.com/nlohmann/json/issues/2664)
-- terminating with uncaught exception of type nlohmann::detail::type\_error: \[json.exception.type\_error.302\] type must be array, but is object [\#2661](https://github.com/nlohmann/json/issues/2661)
-- unused-parameter on OSX when Diagnostics is off [\#2658](https://github.com/nlohmann/json/issues/2658)
-- std::pair wrong serialization [\#2655](https://github.com/nlohmann/json/issues/2655)
-- The result of json is\_number\_integer\(\) function is wrong when read a json file [\#2653](https://github.com/nlohmann/json/issues/2653)
-- 2 backslash cause problem [\#2652](https://github.com/nlohmann/json/issues/2652)
-- No support for using an external/system copy of Hedley [\#2651](https://github.com/nlohmann/json/issues/2651)
-- error: incomplete type 'qfloat16' used in type trait expression [\#2650](https://github.com/nlohmann/json/issues/2650)
-- Unused variable in exception class when not using improved diagnostics [\#2646](https://github.com/nlohmann/json/issues/2646)
-- I am trying to do this - converting from wstring works incorrectly! [\#2642](https://github.com/nlohmann/json/issues/2642)
-- Exception 207 On ARM Processor During Literal String Parsing [\#2634](https://github.com/nlohmann/json/issues/2634)
-- double free or corruption \(!prev\) error on Json push\_back and write [\#2632](https://github.com/nlohmann/json/issues/2632)
-- nlohmann::detail::parse\_error: syntax error while parsing CBOR string: expected length specification \(0x60-0x7B\) or indefinite string type \(0x7F\) [\#2629](https://github.com/nlohmann/json/issues/2629)
-- please allow disabling implicit conversions in non-single-file use [\#2621](https://github.com/nlohmann/json/issues/2621)
-- Preserve decimal formatting [\#2618](https://github.com/nlohmann/json/issues/2618)
-- Visual Studio Visual Assist code issues reported by VA code inspection of file json.hpp [\#2615](https://github.com/nlohmann/json/issues/2615)
-- Missing get function and no viable overloaded '=' on mac [\#2610](https://github.com/nlohmann/json/issues/2610)
-- corruption when parse from string [\#2603](https://github.com/nlohmann/json/issues/2603)
-- Parse from byte-vector results in compile error [\#2602](https://github.com/nlohmann/json/issues/2602)
-- Memory leak when working on ARM Linux [\#2601](https://github.com/nlohmann/json/issues/2601)
-- Unhandled exception in test-cbor.exe Stack overflow when debugging project with Visual Studio 2019 16.7.7 compiled with c++17 or c++latest [\#2598](https://github.com/nlohmann/json/issues/2598)
-- Error in download\_test\_data.vcxproj when compiling with Visual Studio 2019 16.7.7 Professional msbuild on Windows 10 2004 Professional [\#2594](https://github.com/nlohmann/json/issues/2594)
-- Warnings C4715 and C4127 when building json-3.9.1 with Visual Studio 2019 16.7.7 [\#2592](https://github.com/nlohmann/json/issues/2592)
-- I tried some change to dump\(\) for \[1,2,3...\] [\#2584](https://github.com/nlohmann/json/issues/2584)
-- try/catch block does not catch parsing error [\#2579](https://github.com/nlohmann/json/issues/2579)
-- Serializing uint64\_t is broken for large values [\#2578](https://github.com/nlohmann/json/issues/2578)
-- deserializing arrays should be part of the library [\#2575](https://github.com/nlohmann/json/issues/2575)
-- Deserialization to std::array with non-default constructable types fails [\#2574](https://github.com/nlohmann/json/issues/2574)
-- Compilation error when trying to use same type for number\_integer\_t and number\_unsigned\_t in basic\_json template specification. [\#2573](https://github.com/nlohmann/json/issues/2573)
-- compiler error: directive output may be truncated writing between 2 and 8 bytes [\#2572](https://github.com/nlohmann/json/issues/2572)
-- Incorrect convert map to json when key cannot construct an string i.e. int [\#2564](https://github.com/nlohmann/json/issues/2564)
-- no matching function for call to ‘nlohmann::basic\_json\<\>::basic\_json\(\\)’ [\#2559](https://github.com/nlohmann/json/issues/2559)
-- type\_error factory creates a dangling pointer \(in VisualStudio 2019\) [\#2535](https://github.com/nlohmann/json/issues/2535)
-- Cannot assign from ordered\_json vector\ to value in not ordered json [\#2528](https://github.com/nlohmann/json/issues/2528)
-- Qt6: Break changes [\#2519](https://github.com/nlohmann/json/issues/2519)
-- valgrind memcheck Illegal instruction when use nlohmann::json::parse [\#2518](https://github.com/nlohmann/json/issues/2518)
-- Buffer overflow [\#2515](https://github.com/nlohmann/json/issues/2515)
-- Including CTest in the top-level CMakeLists.txt sets BUILD\_TESTING=ON for parent projects [\#2513](https://github.com/nlohmann/json/issues/2513)
-- Compilation error when using NLOHMANN\_JSON\_SERIALIZE\_ENUM ordered\_json on libc++ [\#2491](https://github.com/nlohmann/json/issues/2491)
-- Missing "void insert\( InputIt first, InputIt last \);" overload in nlohmann::ordered\_map [\#2490](https://github.com/nlohmann/json/issues/2490)
-- Could not find a package configuration file provided by "nlohmann\_json" [\#2482](https://github.com/nlohmann/json/issues/2482)
-- json becomes empty for unknown reason [\#2470](https://github.com/nlohmann/json/issues/2470)
-- Using std::wstring as StringType fails compiling [\#2459](https://github.com/nlohmann/json/issues/2459)
-- Sample code in GIF slide outdated \(cannot use emplace\(\) with array\) [\#2457](https://github.com/nlohmann/json/issues/2457)
-- from\_json\ is treated as an array on latest MSVC [\#2453](https://github.com/nlohmann/json/issues/2453)
-- MemorySanitizer: use-of-uninitialized-value [\#2449](https://github.com/nlohmann/json/issues/2449)
-- I need help [\#2441](https://github.com/nlohmann/json/issues/2441)
-- type conversion failing with clang ext\_vector\_type [\#2436](https://github.com/nlohmann/json/issues/2436)
-- json::parse\(\) can't be resolved under specific circumstances [\#2427](https://github.com/nlohmann/json/issues/2427)
-- from\_\*\(ptr, len\) deprecation [\#2426](https://github.com/nlohmann/json/issues/2426)
-- Error ONLY in release mode [\#2425](https://github.com/nlohmann/json/issues/2425)
-- "Custom data source" exemple make no sense [\#2423](https://github.com/nlohmann/json/issues/2423)
-- Refuses to compile in project [\#2419](https://github.com/nlohmann/json/issues/2419)
-- Compilation failure of tests with C++20 standard \(caused by change of u8 literals\) [\#2413](https://github.com/nlohmann/json/issues/2413)
-- No matching function for call to 'input\_adapter' under Xcode of with nlohmann version 3.9.1 [\#2412](https://github.com/nlohmann/json/issues/2412)
-- Git tags are not valid semvers [\#2409](https://github.com/nlohmann/json/issues/2409)
-- after dump, stderr output disappear [\#2403](https://github.com/nlohmann/json/issues/2403)
-- Using custom string. [\#2398](https://github.com/nlohmann/json/issues/2398)
-- value\(\) throws unhandled exception for partially specified json object [\#2393](https://github.com/nlohmann/json/issues/2393)
-- assertion on runtime causes program to stop when accessing const json with missing key [\#2392](https://github.com/nlohmann/json/issues/2392)
-- Usage with -fno-elide-constructors causes dump\(\) output to be array of `null`s [\#2387](https://github.com/nlohmann/json/issues/2387)
-- Build fails with clang-cl due to override of CMAKE\_CXX\_COMPILER\(?\) [\#2384](https://github.com/nlohmann/json/issues/2384)
-- std::optional not working with primitive types [\#2383](https://github.com/nlohmann/json/issues/2383)
-- Unexpected array when initializing a json const& on gcc 4.8.5 using uniform syntax [\#2370](https://github.com/nlohmann/json/issues/2370)
-- setprecision support [\#2362](https://github.com/nlohmann/json/issues/2362)
-- json::parse\(allow\_exceptions = false\) documentation is misleading. [\#2360](https://github.com/nlohmann/json/issues/2360)
-- std::begin and std::end usage without specifying std namespace [\#2359](https://github.com/nlohmann/json/issues/2359)
-- Custom object conversion to json hangs in background thread [\#2358](https://github.com/nlohmann/json/issues/2358)
-- Add support of nullable fields to NLOHMANN\_DEFINE\_TYPE\_NON\_INTRUSIVE and NLOHMANN\_DEFINE\_TYPE\_INTRUSIVE [\#2356](https://github.com/nlohmann/json/issues/2356)
-- the portfile for the vcpkg is not working. [\#2351](https://github.com/nlohmann/json/issues/2351)
-- Compiler warns of implicit fallthrough when defining preprocessor macro NDEBUG [\#2348](https://github.com/nlohmann/json/issues/2348)
-- Compile error on Intel compiler running in Windows [\#2346](https://github.com/nlohmann/json/issues/2346)
-- Build error caused by overwriting CMAKE\_CXX\_COMPILER [\#2343](https://github.com/nlohmann/json/issues/2343)
-- Error: an attribute list cannot appear here JSON\_HEDLEY\_DEPRECATED\_FOR [\#2342](https://github.com/nlohmann/json/issues/2342)
-- compiler warning [\#2341](https://github.com/nlohmann/json/issues/2341)
-- 3.9.0: tests make build non-reproducible [\#2324](https://github.com/nlohmann/json/issues/2324)
-- Initialization different between gcc/clang [\#2311](https://github.com/nlohmann/json/issues/2311)
-- Attempt to `get()` a numeric value as a type which cannot represent it should throw [\#2310](https://github.com/nlohmann/json/issues/2310)
-- Surprising behaviour with overloaded operators [\#2256](https://github.com/nlohmann/json/issues/2256)
-- ADL issue in input\_adapter [\#2248](https://github.com/nlohmann/json/issues/2248)
-- Output adapters should be templated. [\#2172](https://github.com/nlohmann/json/issues/2172)
-- error when using nlohmann::json, std::function and std::bind [\#2147](https://github.com/nlohmann/json/issues/2147)
-- Remove undefined behavior for const operator\[\] [\#2111](https://github.com/nlohmann/json/issues/2111)
-- json\({}\) gives null instead of empty object with GCC and -std=c++17 [\#2046](https://github.com/nlohmann/json/issues/2046)
-- GDB pretty printing support [\#1952](https://github.com/nlohmann/json/issues/1952)
-- Always compile tests with all warnings enabled and error out on warnings [\#1798](https://github.com/nlohmann/json/issues/1798)
-- Fixes Cppcheck warnings [\#1759](https://github.com/nlohmann/json/issues/1759)
-- How to get position info or parser context with custom from\_json\(\) that may throw exceptions? [\#1508](https://github.com/nlohmann/json/issues/1508)
-- Suggestion to improve value\(\) accessors with respect to move semantics [\#1275](https://github.com/nlohmann/json/issues/1275)
-- Add Key name to Exception [\#932](https://github.com/nlohmann/json/issues/932)
-
-- Overwork warning flags [\#2936](https://github.com/nlohmann/json/pull/2936) ([nlohmann](https://github.com/nlohmann))
-- Treat MSVC warnings as errors [\#2930](https://github.com/nlohmann/json/pull/2930) ([nlohmann](https://github.com/nlohmann))
-- All: fix warnings when compiling with -Wswitch-enum [\#2927](https://github.com/nlohmann/json/pull/2927) ([fhuberts](https://github.com/fhuberts))
-- Guard GCC pragmas [\#2925](https://github.com/nlohmann/json/pull/2925) ([nlohmann](https://github.com/nlohmann))
-- Supress -Wfloat-equal on intended float comparisions [\#2911](https://github.com/nlohmann/json/pull/2911) ([Finkman](https://github.com/Finkman))
-- Fix binary subtypes [\#2908](https://github.com/nlohmann/json/pull/2908) ([nlohmann](https://github.com/nlohmann))
-- Fix useless-cast warnings [\#2902](https://github.com/nlohmann/json/pull/2902) ([nlohmann](https://github.com/nlohmann))
-- Add regression test [\#2898](https://github.com/nlohmann/json/pull/2898) ([nlohmann](https://github.com/nlohmann))
-- Refactor Unicode tests [\#2889](https://github.com/nlohmann/json/pull/2889) ([nlohmann](https://github.com/nlohmann))
-- CMake cleanup [\#2885](https://github.com/nlohmann/json/pull/2885) ([nlohmann](https://github.com/nlohmann))
-- Avoid string in case of empty CBOR objects [\#2879](https://github.com/nlohmann/json/pull/2879) ([nlohmann](https://github.com/nlohmann))
-- Suppress C4127 warning in unit-json\_pointer.cpp [\#2875](https://github.com/nlohmann/json/pull/2875) ([nlohmann](https://github.com/nlohmann))
-- Fix truncation warning [\#2874](https://github.com/nlohmann/json/pull/2874) ([nlohmann](https://github.com/nlohmann))
-- Fix memory leak in to\_json [\#2872](https://github.com/nlohmann/json/pull/2872) ([nlohmann](https://github.com/nlohmann))
-- Fix assertion failure in diagnostics [\#2866](https://github.com/nlohmann/json/pull/2866) ([nlohmann](https://github.com/nlohmann))
-- Update documentation [\#2861](https://github.com/nlohmann/json/pull/2861) ([nlohmann](https://github.com/nlohmann))
-- Consistency with `using` in README.md [\#2826](https://github.com/nlohmann/json/pull/2826) ([justanotheranonymoususer](https://github.com/justanotheranonymoususer))
-- Properly constrain the basic\_json conversion operator [\#2825](https://github.com/nlohmann/json/pull/2825) ([ldionne](https://github.com/ldionne))
-- Fix CI [\#2817](https://github.com/nlohmann/json/pull/2817) ([nlohmann](https://github.com/nlohmann))
-- Specified git branch for google benchmark fetch in benchmark test [\#2795](https://github.com/nlohmann/json/pull/2795) ([grafail](https://github.com/grafail))
-- Add C++ standards to macOS matrix [\#2790](https://github.com/nlohmann/json/pull/2790) ([nlohmann](https://github.com/nlohmann))
-- Update URLs to HTTPS [\#2789](https://github.com/nlohmann/json/pull/2789) ([TotalCaesar659](https://github.com/TotalCaesar659))
-- Link to Conan Center package added [\#2771](https://github.com/nlohmann/json/pull/2771) ([offa](https://github.com/offa))
-- Keep consistent formatting [\#2770](https://github.com/nlohmann/json/pull/2770) ([jasmcaus](https://github.com/jasmcaus))
-- Add a cmake option to use SYSTEM in target\_include\_directories [\#2762](https://github.com/nlohmann/json/pull/2762) ([jpl-mac](https://github.com/jpl-mac))
-- replace EOF with std::char\_traits\::eof\(\) [\#2756](https://github.com/nlohmann/json/pull/2756) ([nlohmann](https://github.com/nlohmann))
-- Fix typo in README [\#2754](https://github.com/nlohmann/json/pull/2754) ([mortenfyhn](https://github.com/mortenfyhn))
-- Update documentation [\#2749](https://github.com/nlohmann/json/pull/2749) ([nlohmann](https://github.com/nlohmann))
-- Add documentation for numbers [\#2747](https://github.com/nlohmann/json/pull/2747) ([nlohmann](https://github.com/nlohmann))
-- Use Clang 12 in CI [\#2737](https://github.com/nlohmann/json/pull/2737) ([nlohmann](https://github.com/nlohmann))
-- Fixes \#2730 [\#2731](https://github.com/nlohmann/json/pull/2731) ([theShmoo](https://github.com/theShmoo))
-- Possibility to use without the dependency to file io and streams to use in intel sgx enclaves [\#2729](https://github.com/nlohmann/json/pull/2729) ([theShmoo](https://github.com/theShmoo))
-- Update json.hpp [\#2707](https://github.com/nlohmann/json/pull/2707) ([raduteo](https://github.com/raduteo))
-- pkg-config.pc.in: Don't concatenate paths [\#2690](https://github.com/nlohmann/json/pull/2690) ([doronbehar](https://github.com/doronbehar))
-- add more CI steps [\#2689](https://github.com/nlohmann/json/pull/2689) ([nlohmann](https://github.com/nlohmann))
-- Update doctest from 2.4.4 to 2.4.6 \(fixes \#2686\) [\#2687](https://github.com/nlohmann/json/pull/2687) ([musicinmybrain](https://github.com/musicinmybrain))
-- License fix [\#2683](https://github.com/nlohmann/json/pull/2683) ([nlohmann](https://github.com/nlohmann))
-- Update parse\_exceptions.md - correct `json::exception::parse_error` [\#2679](https://github.com/nlohmann/json/pull/2679) ([frasermarlow](https://github.com/frasermarlow))
-- Remove HEDLEY annotation from exception::what\(\) [\#2673](https://github.com/nlohmann/json/pull/2673) ([remyjette](https://github.com/remyjette))
-- Fix amount of entries in the json object [\#2659](https://github.com/nlohmann/json/pull/2659) ([abbaswasim](https://github.com/abbaswasim))
-- Fix missing 1.78 in example in README.md [\#2625](https://github.com/nlohmann/json/pull/2625) ([wawiesel](https://github.com/wawiesel))
-- Add GDB pretty printer [\#2607](https://github.com/nlohmann/json/pull/2607) ([nlohmann](https://github.com/nlohmann))
-- readme: fix tilde character display [\#2582](https://github.com/nlohmann/json/pull/2582) ([bl-ue](https://github.com/bl-ue))
-- Add support for deserialization of STL containers of non-default constructable types \(fixes \#2574\). [\#2576](https://github.com/nlohmann/json/pull/2576) ([AnthonyVH](https://github.com/AnthonyVH))
-- Better diagnostics [\#2562](https://github.com/nlohmann/json/pull/2562) ([nlohmann](https://github.com/nlohmann))
-- CI targets [\#2561](https://github.com/nlohmann/json/pull/2561) ([nlohmann](https://github.com/nlohmann))
-- Add switch to skip non-reproducible tests. [\#2560](https://github.com/nlohmann/json/pull/2560) ([nlohmann](https://github.com/nlohmann))
-- Fix compilation of input\_adapter\(container\) in edge cases [\#2553](https://github.com/nlohmann/json/pull/2553) ([jasujm](https://github.com/jasujm))
-- Allow parsing from std::byte containers [\#2550](https://github.com/nlohmann/json/pull/2550) ([nlohmann](https://github.com/nlohmann))
-- Travis doesn't run any tests in C++17 mode [\#2540](https://github.com/nlohmann/json/pull/2540) ([karzhenkov](https://github.com/karzhenkov))
-- Doctest is updated to v2.4.3 [\#2538](https://github.com/nlohmann/json/pull/2538) ([YarikTH](https://github.com/YarikTH))
-- Fix warnings [\#2537](https://github.com/nlohmann/json/pull/2537) ([nlohmann](https://github.com/nlohmann))
-- Fix a shadowing warning [\#2536](https://github.com/nlohmann/json/pull/2536) ([nlohmann](https://github.com/nlohmann))
-- Clarify license of is\_complete\_type implementation [\#2534](https://github.com/nlohmann/json/pull/2534) ([nlohmann](https://github.com/nlohmann))
-- Do not unconditionally redefine C++14 constructs [\#2533](https://github.com/nlohmann/json/pull/2533) ([nlohmann](https://github.com/nlohmann))
-- Doctest is updated to v2.4.1 [\#2525](https://github.com/nlohmann/json/pull/2525) ([YarikTH](https://github.com/YarikTH))
-- Add MAIN\_PROJECT check for test and install options [\#2514](https://github.com/nlohmann/json/pull/2514) ([globberwops](https://github.com/globberwops))
-- Ranged insert test section is added in unit-ordered\_json.cpp [\#2512](https://github.com/nlohmann/json/pull/2512) ([YarikTH](https://github.com/YarikTH))
-- Add asserts to suppress C28020 [\#2447](https://github.com/nlohmann/json/pull/2447) ([jbzdarkid](https://github.com/jbzdarkid))
-- Change argument name "subtype" in byte\_container\_with\_subtype [\#2444](https://github.com/nlohmann/json/pull/2444) ([linev](https://github.com/linev))
-- 📝 add CPM.Cmake example [\#2406](https://github.com/nlohmann/json/pull/2406) ([leozz37](https://github.com/leozz37))
-- Fix move constructor of json\_ref [\#2405](https://github.com/nlohmann/json/pull/2405) ([karzhenkov](https://github.com/karzhenkov))
-- Properly select "Release" build for Travis [\#2375](https://github.com/nlohmann/json/pull/2375) ([karzhenkov](https://github.com/karzhenkov))
-- Update Hedley [\#2367](https://github.com/nlohmann/json/pull/2367) ([nlohmann](https://github.com/nlohmann))
-- Fix and extend documentation of discarded values [\#2363](https://github.com/nlohmann/json/pull/2363) ([nlohmann](https://github.com/nlohmann))
-- Fix typos in documentation [\#2354](https://github.com/nlohmann/json/pull/2354) ([rbuch](https://github.com/rbuch))
-- Remove "\#define private public" from tests [\#2352](https://github.com/nlohmann/json/pull/2352) ([nlohmann](https://github.com/nlohmann))
-- Remove -Wimplicit-fallthrough warning [\#2349](https://github.com/nlohmann/json/pull/2349) ([nlohmann](https://github.com/nlohmann))
-- Fix code to work without exceptions [\#2347](https://github.com/nlohmann/json/pull/2347) ([nlohmann](https://github.com/nlohmann))
-- fix cmake script overwriting compiler path [\#2344](https://github.com/nlohmann/json/pull/2344) ([ongjunjie](https://github.com/ongjunjie))
-
-## [v3.9.1](https://github.com/nlohmann/json/releases/tag/v3.9.1) (2020-08-06)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.9.0...v3.9.1)
-
-- Can't parse not formatted JSON. [\#2340](https://github.com/nlohmann/json/issues/2340)
-- parse returns desired array contained in array when JSON text begins with square bracket on gcc 7.5.0 [\#2339](https://github.com/nlohmann/json/issues/2339)
-- Unexpected deserialization difference between Mac and Linux [\#2338](https://github.com/nlohmann/json/issues/2338)
-- Reading ordered\_json from file causes compile error [\#2331](https://github.com/nlohmann/json/issues/2331)
-- ignore\_comment=true fails on multiple consecutive lines starting with comments [\#2330](https://github.com/nlohmann/json/issues/2330)
-- Update documentation about Homebrew installation and CMake integration - Homebrew [\#2326](https://github.com/nlohmann/json/issues/2326)
-- Chinese character initialize error [\#2325](https://github.com/nlohmann/json/issues/2325)
-- json.update and vector\does not work with ordered\_json [\#2315](https://github.com/nlohmann/json/issues/2315)
-- Ambiguous call to overloaded function [\#2210](https://github.com/nlohmann/json/issues/2210)
-
-- Fix fallthrough warning [\#2333](https://github.com/nlohmann/json/pull/2333) ([nlohmann](https://github.com/nlohmann))
-- Fix lexer to properly cope with repeated comments [\#2332](https://github.com/nlohmann/json/pull/2332) ([nlohmann](https://github.com/nlohmann))
-- Fix name of Homebrew formula in documentation [\#2327](https://github.com/nlohmann/json/pull/2327) ([nlohmann](https://github.com/nlohmann))
-- fix typo [\#2320](https://github.com/nlohmann/json/pull/2320) ([wx257osn2](https://github.com/wx257osn2))
-- Fix a bug due to missing overloads in ordered\_map container [\#2319](https://github.com/nlohmann/json/pull/2319) ([nlohmann](https://github.com/nlohmann))
-- cmake: install pkg-config file relative to current\_binary\_dir [\#2318](https://github.com/nlohmann/json/pull/2318) ([eli-schwartz](https://github.com/eli-schwartz))
-- Fixed installation of pkg-config file on other than Ubuntu [\#2314](https://github.com/nlohmann/json/pull/2314) ([xvitaly](https://github.com/xvitaly))
-
-## [v3.9.0](https://github.com/nlohmann/json/releases/tag/v3.9.0) (2020-07-27)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.8.0...v3.9.0)
-
-- Unknown Type Name clang error when using NLOHMANN\_DEFINE\_TYPE\_NON\_INTRUSIVE [\#2313](https://github.com/nlohmann/json/issues/2313)
-- Clang 10.0 / GCC 10.1 warnings on disabled exceptions [\#2304](https://github.com/nlohmann/json/issues/2304)
-- Application stalls indefinitely with message byte size 10 [\#2293](https://github.com/nlohmann/json/issues/2293)
-- linker error [\#2292](https://github.com/nlohmann/json/issues/2292)
-- Add support for high-precision numbers in UBJSON encoding [\#2286](https://github.com/nlohmann/json/issues/2286)
-- NLOHMANN\_DEFINE\_TYPE\_NON\_INTRUSIVE fails if the length of the argument is 10 [\#2280](https://github.com/nlohmann/json/issues/2280)
-- Custom types : MACRO expansion bug [\#2267](https://github.com/nlohmann/json/issues/2267)
-- to/from\_json Failing To Convert String [\#2238](https://github.com/nlohmann/json/issues/2238)
-- clang 9.0 report warning: unused type alias 'size\_type' \[-Wunused-local-typedef\] [\#2221](https://github.com/nlohmann/json/issues/2221)
-- Enormous array created when working with map\ [\#2220](https://github.com/nlohmann/json/issues/2220)
-- Can I disable sorting of json values [\#2219](https://github.com/nlohmann/json/issues/2219)
-- Getting Qt types to work [\#2217](https://github.com/nlohmann/json/issues/2217)
-- Convert to Qt QVariant [\#2216](https://github.com/nlohmann/json/issues/2216)
-- How to custom serialize same data type of vector? [\#2215](https://github.com/nlohmann/json/issues/2215)
-- json constructor does not support std::optional [\#2214](https://github.com/nlohmann/json/issues/2214)
-- Failing to Parse Valid JSON [\#2209](https://github.com/nlohmann/json/issues/2209)
-- \(De-\)Serialization of std::variant with namespaces [\#2208](https://github.com/nlohmann/json/issues/2208)
-- Addint support for complex type [\#2207](https://github.com/nlohmann/json/issues/2207)
-- array\_index possible out of range [\#2205](https://github.com/nlohmann/json/issues/2205)
-- Object deserialized as array [\#2204](https://github.com/nlohmann/json/issues/2204)
-- Sending to a function a reference to a sub-branch [\#2200](https://github.com/nlohmann/json/issues/2200)
-- How to Serialize derived class to JSON object? [\#2199](https://github.com/nlohmann/json/issues/2199)
-- JSON incorrectly serialized [\#2198](https://github.com/nlohmann/json/issues/2198)
-- Exception Unhandled out\_of\_range error [\#2197](https://github.com/nlohmann/json/issues/2197)
-- msgpack serialisation : float is treated as 64bit float, not 32bit float. [\#2196](https://github.com/nlohmann/json/issues/2196)
-- Is it possible to use compile-time type guarantees for JSON structures? [\#2195](https://github.com/nlohmann/json/issues/2195)
-- Question : performance against python dict [\#2194](https://github.com/nlohmann/json/issues/2194)
-- vs2017 compile error [\#2192](https://github.com/nlohmann/json/issues/2192)
-- Check if a key exists [\#2191](https://github.com/nlohmann/json/issues/2191)
-- Failed to run tests due to missing test data on builders without Internet access [\#2190](https://github.com/nlohmann/json/issues/2190)
-- 3.8.0: unit-cbor.cpp test failures [\#2189](https://github.com/nlohmann/json/issues/2189)
-- 'nlohmann/json.hpp' file not found [\#2188](https://github.com/nlohmann/json/issues/2188)
-- How to send json data over the wire? [\#2185](https://github.com/nlohmann/json/issues/2185)
-- Ubuntu 16 not supporting nlohmann/json? [\#2184](https://github.com/nlohmann/json/issues/2184)
-- .get\ causing emdash errors [\#2180](https://github.com/nlohmann/json/issues/2180)
-- Object properties should not be re-sorted alphabetically [\#2179](https://github.com/nlohmann/json/issues/2179)
-- Custom type registration : instrusive API [\#2175](https://github.com/nlohmann/json/issues/2175)
-- Many version of the function "void to\_json\(json& j, const MyStruct& struct\)" [\#2171](https://github.com/nlohmann/json/issues/2171)
-- How should strings be escaped? [\#2155](https://github.com/nlohmann/json/issues/2155)
-- Adding a value to an existing json puts it at the beginning instead of the end [\#2149](https://github.com/nlohmann/json/issues/2149)
-- The header file is big, can we use what we need. [\#2134](https://github.com/nlohmann/json/issues/2134)
-- Changing the default format for unordered\_map \(or other set\) [\#2132](https://github.com/nlohmann/json/issues/2132)
-- Getting size of deserialized bson document [\#2131](https://github.com/nlohmann/json/issues/2131)
-- implicit conversion failure [\#2128](https://github.com/nlohmann/json/issues/2128)
-- Error thrown when parsing in a subclass [\#2124](https://github.com/nlohmann/json/issues/2124)
-- explicit conversion to string not considered for std::map keys in GCC8 [\#2096](https://github.com/nlohmann/json/issues/2096)
-- Add support for JSONC [\#2061](https://github.com/nlohmann/json/issues/2061)
-- Library provides template arg for string\_type but assumes std::string in some places [\#2059](https://github.com/nlohmann/json/issues/2059)
-- incremental parsing with sax\_parser [\#2030](https://github.com/nlohmann/json/issues/2030)
-- Question about flatten and unflatten [\#1989](https://github.com/nlohmann/json/issues/1989)
-- CBOR parser doesn't skip tags [\#1968](https://github.com/nlohmann/json/issues/1968)
-- Compilation failure using Clang on Windows [\#1898](https://github.com/nlohmann/json/issues/1898)
-- Fail to build when including json.hpp as a system include [\#1818](https://github.com/nlohmann/json/issues/1818)
-- Parsing string into json doesn't preserve the order correctly. [\#1817](https://github.com/nlohmann/json/issues/1817)
-- \[C++17\] Allow std::optional to convert to nlohmann::json [\#1749](https://github.com/nlohmann/json/issues/1749)
-- How can I save json object in file in order? [\#1717](https://github.com/nlohmann/json/issues/1717)
-- Support for Comments [\#1513](https://github.com/nlohmann/json/issues/1513)
-- clang compiler: error : unknown type name 'not' [\#1119](https://github.com/nlohmann/json/issues/1119)
-- dump\(\) without alphabetical order [\#1106](https://github.com/nlohmann/json/issues/1106)
-- operator T\(\) considered harmful [\#958](https://github.com/nlohmann/json/issues/958)
-- Order of the elements in JSON object [\#952](https://github.com/nlohmann/json/issues/952)
-- How to prevent alphabetical sorting of data? [\#727](https://github.com/nlohmann/json/issues/727)
-- Why is an object ordering values by Alphabetical Order? [\#660](https://github.com/nlohmann/json/issues/660)
-- Feature request: Comments [\#597](https://github.com/nlohmann/json/issues/597)
-- Head Elements Sorting [\#543](https://github.com/nlohmann/json/issues/543)
-- Automatic ordered JSON [\#424](https://github.com/nlohmann/json/issues/424)
-- Support for comments. [\#376](https://github.com/nlohmann/json/issues/376)
-- Optional comment support. [\#363](https://github.com/nlohmann/json/issues/363)
-- Strip comments / Minify [\#294](https://github.com/nlohmann/json/issues/294)
-- maintaining order of keys during iteration [\#106](https://github.com/nlohmann/json/issues/106)
-
-- Update documentation [\#2312](https://github.com/nlohmann/json/pull/2312) ([nlohmann](https://github.com/nlohmann))
-- Fix bug in CBOR tag handling [\#2308](https://github.com/nlohmann/json/pull/2308) ([nlohmann](https://github.com/nlohmann))
-- added inline to NLOHMANN\_DEFINE\_TYPE\_NON\_INTRUSIVE macro [\#2306](https://github.com/nlohmann/json/pull/2306) ([jwittbrodt](https://github.com/jwittbrodt))
-- fixes unused variable 'ex' for \#2304 [\#2305](https://github.com/nlohmann/json/pull/2305) ([AODQ](https://github.com/AODQ))
-- Cleanup [\#2303](https://github.com/nlohmann/json/pull/2303) ([nlohmann](https://github.com/nlohmann))
-- Add test with multiple translation units [\#2301](https://github.com/nlohmann/json/pull/2301) ([nlohmann](https://github.com/nlohmann))
-- Merge GitHub actions [\#2300](https://github.com/nlohmann/json/pull/2300) ([nlohmann](https://github.com/nlohmann))
-- Fix unused parameter [\#2299](https://github.com/nlohmann/json/pull/2299) ([nlohmann](https://github.com/nlohmann))
-- Add support for high-precision numbers in UBJSON encoding [\#2297](https://github.com/nlohmann/json/pull/2297) ([nlohmann](https://github.com/nlohmann))
-- fix eof for get\_binary and get\_string [\#2294](https://github.com/nlohmann/json/pull/2294) ([jprochazk](https://github.com/jprochazk))
-- Serialisation macros: increase upper bound on number of member variables [\#2287](https://github.com/nlohmann/json/pull/2287) ([pfeatherstone](https://github.com/pfeatherstone))
-- add inline specifier for detail::combine [\#2285](https://github.com/nlohmann/json/pull/2285) ([T0b1-iOS](https://github.com/T0b1-iOS))
-- Add static assertion for missing binary function in SAX interface [\#2282](https://github.com/nlohmann/json/pull/2282) ([nlohmann](https://github.com/nlohmann))
-- Add test for target\_include\_directories [\#2279](https://github.com/nlohmann/json/pull/2279) ([nlohmann](https://github.com/nlohmann))
-- Clean up maintainer Makefiles and fix some linter warnings [\#2274](https://github.com/nlohmann/json/pull/2274) ([nlohmann](https://github.com/nlohmann))
-- Add option to ignore CBOR tags [\#2273](https://github.com/nlohmann/json/pull/2273) ([nlohmann](https://github.com/nlohmann))
-- Hash function without allocation [\#2269](https://github.com/nlohmann/json/pull/2269) ([nlohmann](https://github.com/nlohmann))
-- Add ClangCL for MSVC [\#2268](https://github.com/nlohmann/json/pull/2268) ([t-b](https://github.com/t-b))
-- Makefile: Always use SED variable [\#2264](https://github.com/nlohmann/json/pull/2264) ([t-b](https://github.com/t-b))
-- Add Xcode 12 CI [\#2262](https://github.com/nlohmann/json/pull/2262) ([nlohmann](https://github.com/nlohmann))
-- Make library work with Clang on Windows [\#2259](https://github.com/nlohmann/json/pull/2259) ([nlohmann](https://github.com/nlohmann))
-- Add ordered\_json specialization with ordered object keys [\#2258](https://github.com/nlohmann/json/pull/2258) ([nlohmann](https://github.com/nlohmann))
-- Add pkg-config file [\#2253](https://github.com/nlohmann/json/pull/2253) ([ericonr](https://github.com/ericonr))
-- Fix regression from \#2181 [\#2251](https://github.com/nlohmann/json/pull/2251) ([nlohmann](https://github.com/nlohmann))
-- Tag binary values in cbor if set [\#2244](https://github.com/nlohmann/json/pull/2244) ([matthewbauer](https://github.com/matthewbauer))
-- Make assert configurable via JSON\_ASSERT [\#2242](https://github.com/nlohmann/json/pull/2242) ([nlohmann](https://github.com/nlohmann))
-- Add specialization of get\_to [\#2233](https://github.com/nlohmann/json/pull/2233) ([nlohmann](https://github.com/nlohmann))
-- Refine documentation of error\_handler parameter [\#2232](https://github.com/nlohmann/json/pull/2232) ([nlohmann](https://github.com/nlohmann))
-- Simplify conversion from/to custom types [\#2225](https://github.com/nlohmann/json/pull/2225) ([nlohmann](https://github.com/nlohmann))
-- Remove unused typedefs [\#2224](https://github.com/nlohmann/json/pull/2224) ([nlohmann](https://github.com/nlohmann))
-- Enable CMake policy CMP0077 [\#2222](https://github.com/nlohmann/json/pull/2222) ([alexreinking](https://github.com/alexreinking))
-- Add option to ignore comments in parse/accept functions [\#2212](https://github.com/nlohmann/json/pull/2212) ([nlohmann](https://github.com/nlohmann))
-- Fix Clang-Tidy warnings [\#2211](https://github.com/nlohmann/json/pull/2211) ([nlohmann](https://github.com/nlohmann))
-- Simple ordered\_json that works on all supported compilers [\#2206](https://github.com/nlohmann/json/pull/2206) ([gatopeich](https://github.com/gatopeich))
-- Use unsigned indizies for array index in json pointer [\#2203](https://github.com/nlohmann/json/pull/2203) ([t-b](https://github.com/t-b))
-- Add option to not rely on Internet connectivity during test stage [\#2202](https://github.com/nlohmann/json/pull/2202) ([nlohmann](https://github.com/nlohmann))
-- Serialize floating-point numbers with 32 bit when possible \(MessagePack\) [\#2201](https://github.com/nlohmann/json/pull/2201) ([nlohmann](https://github.com/nlohmann))
-- Fix consistency in function `int_to_string()` [\#2193](https://github.com/nlohmann/json/pull/2193) ([dota17](https://github.com/dota17))
-- Fix issue\#1275 [\#2181](https://github.com/nlohmann/json/pull/2181) ([dota17](https://github.com/dota17))
-- C++20 support by removing swap specialization [\#2176](https://github.com/nlohmann/json/pull/2176) ([gracicot](https://github.com/gracicot))
-- Feat/explicit conversion operator [\#1559](https://github.com/nlohmann/json/pull/1559) ([theodelrieu](https://github.com/theodelrieu))
-
-## [v3.8.0](https://github.com/nlohmann/json/releases/tag/v3.8.0) (2020-06-14)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.7.3...v3.8.0)
-
-- sorry delete this issue, i'm stupid [\#2187](https://github.com/nlohmann/json/issues/2187)
-- Append to a std::nlohmann::json type [\#2186](https://github.com/nlohmann/json/issues/2186)
-- Some troubles to compile the last revision [\#2177](https://github.com/nlohmann/json/issues/2177)
-- \# Top level CMakeLists.txt
-project\(FOO\)
-...
-option\(FOO\_USE\_EXTERNAL\_JSON "Use an external JSON library" OFF\)
-...
-add\_subdirectory\(thirdparty\)
-...
-add\_library\(foo ...\)
-...
-\# Note that the namespaced target will always be available regardless of the
-\# import method
-target\_link\_libraries\(foo PRIVATE nlohmann\_json::nlohmann\_json\) [\#2170](https://github.com/nlohmann/json/issues/2170)
-- https://www.github.com/nlohmann/json/tree/develop/include%2Fnlohmann%2Fjson\_fwd.hpp [\#2169](https://github.com/nlohmann/json/issues/2169)
-- templated from\_json of non primitive types causes gcc error [\#2168](https://github.com/nlohmann/json/issues/2168)
-- few warnings/errors in copy assignment [\#2167](https://github.com/nlohmann/json/issues/2167)
-- Different output when upgrading from clang 9 to clang 10 [\#2166](https://github.com/nlohmann/json/issues/2166)
-- Cannot build with VS 2019 / C++17 [\#2163](https://github.com/nlohmann/json/issues/2163)
-- Q: When I received an illegal string,How the program knows? [\#2162](https://github.com/nlohmann/json/issues/2162)
-- Problem while reading a json file [\#2161](https://github.com/nlohmann/json/issues/2161)
-- converting std::chrono::system\_clock::time\_point to json. [\#2159](https://github.com/nlohmann/json/issues/2159)
-- how to parse vector\ format [\#2157](https://github.com/nlohmann/json/issues/2157)
-- nlohmann::json and =nullptr [\#2156](https://github.com/nlohmann/json/issues/2156)
-- test-cbor fails [\#2154](https://github.com/nlohmann/json/issues/2154)
-- Accessing array inside array syntax? [\#2151](https://github.com/nlohmann/json/issues/2151)
-- Best way to catch errors when querying json [\#2150](https://github.com/nlohmann/json/issues/2150)
-- JSON Data Mapping Key-Value from other Key-Value [\#2148](https://github.com/nlohmann/json/issues/2148)
-- Conflicts with std \ compiling with GCC 10 [\#2146](https://github.com/nlohmann/json/issues/2146)
-- Incorrect CMake FetchContent example [\#2142](https://github.com/nlohmann/json/issues/2142)
-- Help for a Beginner? [\#2141](https://github.com/nlohmann/json/issues/2141)
-- Read Json from File [\#2139](https://github.com/nlohmann/json/issues/2139)
-- How to feed a predefined integer value into json string [\#2138](https://github.com/nlohmann/json/issues/2138)
-- getting json array inside json object [\#2135](https://github.com/nlohmann/json/issues/2135)
-- Add .contains example to doc [\#2133](https://github.com/nlohmann/json/issues/2133)
-- Is it safe to return string.c\_str\(\) received from get\(\)? [\#2130](https://github.com/nlohmann/json/issues/2130)
-- GCC 10: Compilation error when including any before including json header in C++17 mode [\#2129](https://github.com/nlohmann/json/issues/2129)
-- Intersection of two json files [\#2127](https://github.com/nlohmann/json/issues/2127)
-- App crashes when dump method called for non ascii chars. [\#2126](https://github.com/nlohmann/json/issues/2126)
-- iterator based erase method [\#2122](https://github.com/nlohmann/json/issues/2122)
-- quick and convenient api to get/set nested json values [\#2120](https://github.com/nlohmann/json/issues/2120)
-- assigning nullptr to std::string [\#2118](https://github.com/nlohmann/json/issues/2118)
-- usless\_cast warnings with gcc 9.3 and 10.1 \(C++17\) [\#2114](https://github.com/nlohmann/json/issues/2114)
-- clang 10 warning [\#2113](https://github.com/nlohmann/json/issues/2113)
-- Possible incorrect \_MSC\_VER reference [\#2112](https://github.com/nlohmann/json/issues/2112)
-- warning under gcc 10.1 [\#2110](https://github.com/nlohmann/json/issues/2110)
-- Wdeprecated-declarations from GCC v10.1.0 [\#2109](https://github.com/nlohmann/json/issues/2109)
-- Global std::vector from json [\#2108](https://github.com/nlohmann/json/issues/2108)
-- heap-buffer-overflow when using nlohmann/json, ASAN, and gtest [\#2107](https://github.com/nlohmann/json/issues/2107)
-- exception 0x770DC5AF when i read an special char in json file [\#2106](https://github.com/nlohmann/json/issues/2106)
-- json::parse\(\) fails to parse a dump\(2,' '\) output, yet does successfully parse dump\(\) [\#2105](https://github.com/nlohmann/json/issues/2105)
-- run test-udt error in MSVC 19.16.27034.0 [\#2103](https://github.com/nlohmann/json/issues/2103)
-- Unable to dump to stringstream [\#2102](https://github.com/nlohmann/json/issues/2102)
-- Can't ad an object in another objet [\#2101](https://github.com/nlohmann/json/issues/2101)
-- Implicit conversion causes "cannot use operator\[\] with a string argument with string" [\#2098](https://github.com/nlohmann/json/issues/2098)
-- C++20: char8\_t [\#2097](https://github.com/nlohmann/json/issues/2097)
-- Compilation issues when included in project [\#2094](https://github.com/nlohmann/json/issues/2094)
-- string value with null character causes infinite loop [\#2093](https://github.com/nlohmann/json/issues/2093)
-- corrupted size vs. prev\_size \(aborted\) [\#2092](https://github.com/nlohmann/json/issues/2092)
-- Get string field content without return std::string copy [\#2091](https://github.com/nlohmann/json/issues/2091)
-- JSON Comments \(JSON 5\) [\#2090](https://github.com/nlohmann/json/issues/2090)
-- Remove \#include \ [\#2089](https://github.com/nlohmann/json/issues/2089)
-- JSON library as a git submodule [\#2088](https://github.com/nlohmann/json/issues/2088)
-- Apple Clang 11.0.3 on MacOS Catalina 10.15.4 not compiling [\#2087](https://github.com/nlohmann/json/issues/2087)
-- Value function return empty object even if it exist [\#2086](https://github.com/nlohmann/json/issues/2086)
-- Cannot debug but Run works [\#2085](https://github.com/nlohmann/json/issues/2085)
-- Question about serialization. [\#2084](https://github.com/nlohmann/json/issues/2084)
-- How to include in an external project [\#2083](https://github.com/nlohmann/json/issues/2083)
-- Missing tests for binary values [\#2082](https://github.com/nlohmann/json/issues/2082)
-- How to override default string serialization? [\#2079](https://github.com/nlohmann/json/issues/2079)
-- Can't have a json type as a property in an arbitrary type [\#2078](https://github.com/nlohmann/json/issues/2078)
-- New release? [\#2075](https://github.com/nlohmann/json/issues/2075)
-- CMake FetchContent \> Updating the documentation? [\#2073](https://github.com/nlohmann/json/issues/2073)
-- How to convert STL Vector \(of user defined type\) to Json [\#2072](https://github.com/nlohmann/json/issues/2072)
-- how to make an array of objects [\#2070](https://github.com/nlohmann/json/issues/2070)
-- ‘\_\_int64’ was not declared [\#2068](https://github.com/nlohmann/json/issues/2068)
-- \[json.exception.type\_error.317\] cannot serialize binary data to text JSON [\#2067](https://github.com/nlohmann/json/issues/2067)
-- Unexpected end of input; expected '\[', '{', or a literal [\#2066](https://github.com/nlohmann/json/issues/2066)
-- Json structure can be nested? [\#2065](https://github.com/nlohmann/json/issues/2065)
-- Bug: returning reference to local temporary object [\#2064](https://github.com/nlohmann/json/issues/2064)
-- Allow to use non strict parsing [\#2063](https://github.com/nlohmann/json/issues/2063)
-- Crashing on json::at [\#2062](https://github.com/nlohmann/json/issues/2062)
-- How to convert a const std::vector\ message to a json, to be able to parse it and extract information from it? Can you point to any examples? [\#2058](https://github.com/nlohmann/json/issues/2058)
-- Nice library [\#2057](https://github.com/nlohmann/json/issues/2057)
-- json.hpp:15372:22: error: expected unqualified-id if \(not std::isfinite\(x\)\): Started getting this bug after updating my XCode [\#2056](https://github.com/nlohmann/json/issues/2056)
-- Confused as how I can extract the values from the JSON object. [\#2055](https://github.com/nlohmann/json/issues/2055)
-- Warnings with GCC 10 [\#2052](https://github.com/nlohmann/json/issues/2052)
-- Warnings with Clang 10 [\#2049](https://github.com/nlohmann/json/issues/2049)
-- Update doctest [\#2048](https://github.com/nlohmann/json/issues/2048)
-- Unclear error message: "cannot use operator\[\] with a string argument with array" [\#2047](https://github.com/nlohmann/json/issues/2047)
-- Serializing std::variant\\> [\#2045](https://github.com/nlohmann/json/issues/2045)
-- Crash when parse big jsonfile [\#2042](https://github.com/nlohmann/json/issues/2042)
-- How to check if a key exists without silently generating null objects on the path [\#2041](https://github.com/nlohmann/json/issues/2041)
-- Crash when traversing over items\(\) of temporary json objects [\#2040](https://github.com/nlohmann/json/issues/2040)
-- How to parse multiple line value ? [\#2039](https://github.com/nlohmann/json/issues/2039)
-- SAX API uses unsigned std::size\_t but -1 if element size is not known; [\#2037](https://github.com/nlohmann/json/issues/2037)
-- How to parse big decimal data [\#2036](https://github.com/nlohmann/json/issues/2036)
-- how use template \ struct adl\_serializer [\#2035](https://github.com/nlohmann/json/issues/2035)
-- auto iterator returned by find to handle value depending if is string or numeric. [\#2032](https://github.com/nlohmann/json/issues/2032)
-- pass find returned iterator to numeric variable. [\#2031](https://github.com/nlohmann/json/issues/2031)
-- Parse error on valid json file [\#2029](https://github.com/nlohmann/json/issues/2029)
-- Is here any elegant way to combine serialization and deserialization code? [\#2028](https://github.com/nlohmann/json/issues/2028)
-- Notes about dump function [\#2027](https://github.com/nlohmann/json/issues/2027)
-- Different JSON printouts for empty dictionary on Linux and Mac. [\#2026](https://github.com/nlohmann/json/issues/2026)
-- easier way to get exception reason out of json\_sax\_dom\_callback\_parser without exceptions [\#2024](https://github.com/nlohmann/json/issues/2024)
-- Using fifo\_map with base class and derived class [\#2023](https://github.com/nlohmann/json/issues/2023)
-- Error reading JSON File [\#2022](https://github.com/nlohmann/json/issues/2022)
-- Parse causing crash on android. Cannot catch. [\#2021](https://github.com/nlohmann/json/issues/2021)
-- Extra backslashes in nested json [\#2020](https://github.com/nlohmann/json/issues/2020)
-- How to create patch for merge\_patch input ? [\#2018](https://github.com/nlohmann/json/issues/2018)
-- CppUTest/include/CppUTestExt/MockSupport.h:40: error: default argument for ‘MockFailureReporter\* failureReporterForThisCall’ has type ‘void\*’ [\#2017](https://github.com/nlohmann/json/issues/2017)
-- including another file [\#2016](https://github.com/nlohmann/json/issues/2016)
-- GNU PREREQ Error with gcc 9.3.0 [\#2015](https://github.com/nlohmann/json/issues/2015)
-- Parse error: json.exception.parse\_error.101 - invalid string: ill-formed UTF-8 byte [\#2014](https://github.com/nlohmann/json/issues/2014)
-- Add more flexibility to basic\_json's ObjectType \(and ArrayType\) [\#2013](https://github.com/nlohmann/json/issues/2013)
-- afl persistent mode [\#2012](https://github.com/nlohmann/json/issues/2012)
-- Compiler Errors under VS2019 in Appveyor CI [\#2009](https://github.com/nlohmann/json/issues/2009)
-- Another compilation failure with Visual Studio [\#2007](https://github.com/nlohmann/json/issues/2007)
-- Implicit cast to std::string broken again with VS2019 16.5.0 [\#2006](https://github.com/nlohmann/json/issues/2006)
-- error: no matching member function for call to 'AddRaw' [\#2005](https://github.com/nlohmann/json/issues/2005)
-- When I re-create an object again after the network request, an error is reported [\#2003](https://github.com/nlohmann/json/issues/2003)
-- How to merge \(and not replace\) different Json::Value objects in jsoncpp [\#2001](https://github.com/nlohmann/json/issues/2001)
-- scalar transforms to list [\#2000](https://github.com/nlohmann/json/issues/2000)
-- Dump JSON containing multibyte characters [\#1999](https://github.com/nlohmann/json/issues/1999)
-- Build error when modify value [\#1998](https://github.com/nlohmann/json/issues/1998)
-- How do i include a vector of pointers in my json? [\#1997](https://github.com/nlohmann/json/issues/1997)
-- Compiler error wrt incomplete types changed in gcc8.3.0-26 [\#1996](https://github.com/nlohmann/json/issues/1996)
-- NaN-like comparison behavior of discarded is inconvenient [\#1988](https://github.com/nlohmann/json/issues/1988)
-- Maintaining JSON package in my CMake [\#1987](https://github.com/nlohmann/json/issues/1987)
-- reading int number and string number [\#1986](https://github.com/nlohmann/json/issues/1986)
-- Build error: keyword is hidden by macro definition! [\#1985](https://github.com/nlohmann/json/issues/1985)
-- JSON patch diff for op=add formation is not as per standard \(RFC 6902\) [\#1983](https://github.com/nlohmann/json/issues/1983)
-- json\_pointer.contains\(\) exception is incorrectly raised [\#1982](https://github.com/nlohmann/json/issues/1982)
-- Error with non existing key [\#1981](https://github.com/nlohmann/json/issues/1981)
-- Closed [\#1978](https://github.com/nlohmann/json/issues/1978)
-- Where is the library built and what is the name? [\#1977](https://github.com/nlohmann/json/issues/1977)
-- The cmake\_import example does not build [\#1976](https://github.com/nlohmann/json/issues/1976)
-- Dumping core when reading invalid file [\#1975](https://github.com/nlohmann/json/issues/1975)
-- Abort in dump\(\) method [\#1973](https://github.com/nlohmann/json/issues/1973)
-- Unclear docs regarding parser\_callback\_t callbacks [\#1972](https://github.com/nlohmann/json/issues/1972)
-- Possible memory leak on push\_back [\#1971](https://github.com/nlohmann/json/issues/1971)
-- Is it possible to get a safe mutable reference/pointer to internal variant used in nlohmann json? [\#1970](https://github.com/nlohmann/json/issues/1970)
-- Getting a flatten json to map\ [\#1957](https://github.com/nlohmann/json/issues/1957)
-- forced type conversion or lexical cast without exception. [\#1955](https://github.com/nlohmann/json/issues/1955)
-- Add json\_view type support to avoid excessive copying [\#1954](https://github.com/nlohmann/json/issues/1954)
-- Adding "examples" section for real-life usages [\#1953](https://github.com/nlohmann/json/issues/1953)
-- Add nlohmann::json::key\_type [\#1951](https://github.com/nlohmann/json/issues/1951)
-- cannot use operator\[\] with a string argument with string [\#1949](https://github.com/nlohmann/json/issues/1949)
-- std::ifstream \>\> json error [\#1948](https://github.com/nlohmann/json/issues/1948)
-- Cannot update json data in an iterator? [\#1947](https://github.com/nlohmann/json/issues/1947)
-- How can i build this library in VS 2017? [\#1943](https://github.com/nlohmann/json/issues/1943)
-- json\_pointer.contains\(\) exceptions when path not found [\#1942](https://github.com/nlohmann/json/issues/1942)
-- Nested objects serialize/deserialize [\#1941](https://github.com/nlohmann/json/issues/1941)
-- Compile warning on architectures that are not x86 [\#1939](https://github.com/nlohmann/json/issues/1939)
-- Version of nlohmann-json-dev in debian packages [\#1938](https://github.com/nlohmann/json/issues/1938)
-- Create a json object for every cycle [\#1937](https://github.com/nlohmann/json/issues/1937)
-- How to get the object name? [\#1936](https://github.com/nlohmann/json/issues/1936)
-- Reserve and resize function for basic json [\#1935](https://github.com/nlohmann/json/issues/1935)
-- How to use json parse in tsl::ordread\_map? [\#1934](https://github.com/nlohmann/json/issues/1934)
-- C++14 support is not enabled with msvc2015 [\#1932](https://github.com/nlohmann/json/issues/1932)
-- Need help with to\_json for derived class, keep getting "cannot use operator" [\#1931](https://github.com/nlohmann/json/issues/1931)
-- How to handle std::vector\ [\#1930](https://github.com/nlohmann/json/issues/1930)
-- Heap corruption issue [\#1929](https://github.com/nlohmann/json/issues/1929)
-- Add `std::wistream` support. [\#1928](https://github.com/nlohmann/json/issues/1928)
-- This i can write and read any file thanks [\#1927](https://github.com/nlohmann/json/issues/1927)
-- How can I get this simple example working? [\#1926](https://github.com/nlohmann/json/issues/1926)
-- emplace\_back does not seems to work with the int 0 [\#1925](https://github.com/nlohmann/json/issues/1925)
-- Why nlohmann does not release memory [\#1924](https://github.com/nlohmann/json/issues/1924)
-- Is it possible to have template `json::parse` with `noexcept` specifier? [\#1922](https://github.com/nlohmann/json/issues/1922)
-- JSON to wstring? [\#1921](https://github.com/nlohmann/json/issues/1921)
-- GCC 10 tests build failure [\#1920](https://github.com/nlohmann/json/issues/1920)
-- Size of binary json representations [\#1919](https://github.com/nlohmann/json/issues/1919)
-- Accessing strings \(for example in keys or values\) without having the lib create a copy of it. [\#1916](https://github.com/nlohmann/json/issues/1916)
-- operator== documentation should show how to apply custom comparison function [\#1915](https://github.com/nlohmann/json/issues/1915)
-- char8\_t and std::u8string support [\#1914](https://github.com/nlohmann/json/issues/1914)
-- std::is\_pod is deprecated in C++20 [\#1913](https://github.com/nlohmann/json/issues/1913)
-- Incomplete types reported by \(experimental\) GCC10 [\#1912](https://github.com/nlohmann/json/issues/1912)
-- Compile warnings on MSVC 14.2 [\#1911](https://github.com/nlohmann/json/issues/1911)
-- How to parse json file with type composition of std::optional and std::variant [\#1910](https://github.com/nlohmann/json/issues/1910)
-- why root\_schema be implemented as unique\_ptr in json-validator.cpp,could I use it as shared\_ptr? [\#1908](https://github.com/nlohmann/json/issues/1908)
-- compile error in gcc-6.3.0 [\#1906](https://github.com/nlohmann/json/issues/1906)
-- Scalar constexpr is odr-used when used as json initializer [\#1905](https://github.com/nlohmann/json/issues/1905)
-- install Slack app [\#1904](https://github.com/nlohmann/json/issues/1904)
-- typo in a comment [\#1903](https://github.com/nlohmann/json/issues/1903)
-- Watch JSON variables in Debug [\#1902](https://github.com/nlohmann/json/issues/1902)
-- does Json sdk cares about dfc dfd utf8 issue? [\#1901](https://github.com/nlohmann/json/issues/1901)
-- Allow multiple line string value in JSON [\#1897](https://github.com/nlohmann/json/issues/1897)
-- Writing map to json file [\#1896](https://github.com/nlohmann/json/issues/1896)
-- Small documentation mistake [\#1895](https://github.com/nlohmann/json/issues/1895)
-- why static function `parse` cann't find in visual studio 2019 [\#1894](https://github.com/nlohmann/json/issues/1894)
-- Best way to handle json files with missing key value pairs. [\#1893](https://github.com/nlohmann/json/issues/1893)
-- accessing json object as multimap [\#1892](https://github.com/nlohmann/json/issues/1892)
-- What is the best way to parse vec3s into glm::vec3 [\#1891](https://github.com/nlohmann/json/issues/1891)
-- Get array of items without using vector [\#1890](https://github.com/nlohmann/json/issues/1890)
-- Build errors \(clang 11.0.0\) on macOS 10.15.2 [\#1889](https://github.com/nlohmann/json/issues/1889)
-- Multiple arrays to vectors help [\#1888](https://github.com/nlohmann/json/issues/1888)
-- json::parse\(begin, end\) parse error on first character using uchar\* [\#1887](https://github.com/nlohmann/json/issues/1887)
-- issue in free\(\) [\#1886](https://github.com/nlohmann/json/issues/1886)
-- is\_number\_unsigned\(\) returns false for positive integers \(int or 0 or 1 literals\) [\#1885](https://github.com/nlohmann/json/issues/1885)
-- MSVC build failure with /Zc:\_\_cplusplus and C++17 [\#1883](https://github.com/nlohmann/json/issues/1883)
-- RFC 6901 op:replace & arrays [\#1882](https://github.com/nlohmann/json/issues/1882)
-- Problem with serialization of my custom template doubly-linked list [\#1881](https://github.com/nlohmann/json/issues/1881)
-- is\_array\(\) is True, but raise 'cannot use operator\[\] for object iterators' [\#1880](https://github.com/nlohmann/json/issues/1880)
-- Serialize dynamic array [\#1879](https://github.com/nlohmann/json/issues/1879)
-- Serialization of struct object. [\#1877](https://github.com/nlohmann/json/issues/1877)
-- warning:c4503 [\#1875](https://github.com/nlohmann/json/issues/1875)
-- Why are flattened empty objects/arrays not representable? [\#1874](https://github.com/nlohmann/json/issues/1874)
-- Container Overflow \(ASAN\) when using operator \>\> on an ifs [\#1873](https://github.com/nlohmann/json/issues/1873)
-- Sub-array to vector or map object? [\#1870](https://github.com/nlohmann/json/issues/1870)
-- WIP: QT \(cute\) type supports [\#1869](https://github.com/nlohmann/json/issues/1869)
-- Compiler flags to disable features and shrink code size [\#1868](https://github.com/nlohmann/json/issues/1868)
-- null strings [\#1867](https://github.com/nlohmann/json/issues/1867)
-- Struct with array of struct and \_\_attribute\_\_\(\(packed\)\) [\#1866](https://github.com/nlohmann/json/issues/1866)
-- Best way to extract numbers in the string? [\#1865](https://github.com/nlohmann/json/issues/1865)
-- Displaying \\?\Volume{guid} from string to json giving error [\#1864](https://github.com/nlohmann/json/issues/1864)
-- not working when compiling as x86 [\#1863](https://github.com/nlohmann/json/issues/1863)
-- Skipping evaluation of log line expressions with a macro, is it possible? [\#1862](https://github.com/nlohmann/json/issues/1862)
-- Suppress warnings [\#1861](https://github.com/nlohmann/json/issues/1861)
-- conflit with g++ compile option -mwindows [\#1860](https://github.com/nlohmann/json/issues/1860)
-- How to serialize nested classes to semi-flat JSON object? [\#1859](https://github.com/nlohmann/json/issues/1859)
-- Memory Requirement for large json file [\#1858](https://github.com/nlohmann/json/issues/1858)
-- Query a binary format \(BSON, CBOR, MessagePack, UBJSON\) [\#1856](https://github.com/nlohmann/json/issues/1856)
-- Documentation on operator\[\] behavior with missing keys [\#1855](https://github.com/nlohmann/json/issues/1855)
-- Problem in converting string into JSON; Can't parse successfully. [\#1854](https://github.com/nlohmann/json/issues/1854)
-- json.at\_or\_default\(key, defaultval\) [\#1852](https://github.com/nlohmann/json/issues/1852)
-- please improve the enum conversion documentation \(my example gist provided\) [\#1851](https://github.com/nlohmann/json/issues/1851)
-- Default value returned on ValueType nlohmann::basic\_json::value \(const typename object\_t::key\_type& key, const ValueType& default\_value\) [\#1850](https://github.com/nlohmann/json/issues/1850)
-- Accounting for arbitrary precision numerical literals [\#1849](https://github.com/nlohmann/json/issues/1849)
-- While trying to make a simple array, I get a nested array instead [\#1848](https://github.com/nlohmann/json/issues/1848)
-- How to reuse the parser and serializer intermediate storage? [\#1847](https://github.com/nlohmann/json/issues/1847)
-- Too much content in json.hpp leads to slow compilation [\#1845](https://github.com/nlohmann/json/issues/1845)
-- Cannot read some data in json file [\#1843](https://github.com/nlohmann/json/issues/1843)
-- Precompiled JSON library? [\#1842](https://github.com/nlohmann/json/issues/1842)
-- Please change assert into throw\(maybe\) in line 17946 [\#1841](https://github.com/nlohmann/json/issues/1841)
-- JSON for modern C++ ECCN information [\#1840](https://github.com/nlohmann/json/issues/1840)
-- CI: reduce build time for Travis valgrind [\#1836](https://github.com/nlohmann/json/issues/1836)
-- How do I traverse a json object and add new elements into the hierarchy [\#1834](https://github.com/nlohmann/json/issues/1834)
-- Invalid UTF-8 byte at index 1: 0x65 [\#1831](https://github.com/nlohmann/json/issues/1831)
-- Serialize big data in json [\#1828](https://github.com/nlohmann/json/issues/1828)
-- Backslash '\' in value causes exception [\#1827](https://github.com/nlohmann/json/issues/1827)
-- from\_json for non default constructible class with dependency injection [\#1819](https://github.com/nlohmann/json/issues/1819)
-- Semi-frequent timeouts in `test-unicode_all` with 3.6.1 \(aarch64\) [\#1816](https://github.com/nlohmann/json/issues/1816)
-- input\_adapter not user extensible [\#1813](https://github.com/nlohmann/json/issues/1813)
-- crash at json::destroy on android [\#1812](https://github.com/nlohmann/json/issues/1812)
-- Logs are repeating while cmake [\#1809](https://github.com/nlohmann/json/issues/1809)
-- Add a the possibility to add dynamic json objects [\#1795](https://github.com/nlohmann/json/issues/1795)
-- Unnecessary test data file in the release [\#1790](https://github.com/nlohmann/json/issues/1790)
-- Add support for parse stack limiting [\#1788](https://github.com/nlohmann/json/issues/1788)
-- GCC -Wuseless-cast warnings [\#1777](https://github.com/nlohmann/json/issues/1777)
-- compilation issue with NVCC 9.0 [\#1773](https://github.com/nlohmann/json/issues/1773)
-- Unexpected behavior with fifo\_map json when copy and append [\#1763](https://github.com/nlohmann/json/issues/1763)
-- Parse error [\#1761](https://github.com/nlohmann/json/issues/1761)
-- Assignment \(using value\(\)\) to nonexistent element behaves differently on Xcode 8 vs Xcode 10 [\#1758](https://github.com/nlohmann/json/issues/1758)
-- Readme out of date [\#1756](https://github.com/nlohmann/json/issues/1756)
-- cmake\_\* tests don't use the build system's compiler [\#1747](https://github.com/nlohmann/json/issues/1747)
-- Static assertions for template type properties required [\#1729](https://github.com/nlohmann/json/issues/1729)
-- Use float and possibly half in json::to\_cbor [\#1719](https://github.com/nlohmann/json/issues/1719)
-- json::from\_cbor does not respect allow\_exceptions = false when input is string literal [\#1715](https://github.com/nlohmann/json/issues/1715)
-- /Zc:\_\_cplusplus leads to C2416 [\#1695](https://github.com/nlohmann/json/issues/1695)
-- `unflatten` vs objects with number-ish keys [\#1575](https://github.com/nlohmann/json/issues/1575)
-- A "thinner" source code tar as part of release? [\#1572](https://github.com/nlohmann/json/issues/1572)
-- Repository is almost 450MB [\#1497](https://github.com/nlohmann/json/issues/1497)
-- Substantial performance penalty caused by polymorphic input adapter [\#1457](https://github.com/nlohmann/json/issues/1457)
-- Move tests to a separate repo [\#1235](https://github.com/nlohmann/json/issues/1235)
-- reduce repos size [\#1185](https://github.com/nlohmann/json/issues/1185)
-- CMakeLists.txt in release zips? [\#1184](https://github.com/nlohmann/json/issues/1184)
-- Minimal branch? [\#1066](https://github.com/nlohmann/json/issues/1066)
-- Move test blobs to a submodule? [\#732](https://github.com/nlohmann/json/issues/732)
-- \[Question\] When using this as git submodule, will it clone the whole thing include test data and benchmark? [\#620](https://github.com/nlohmann/json/issues/620)
-- Need to improve ignores.. [\#567](https://github.com/nlohmann/json/issues/567)
-- Minimal repository \(current size very large\) [\#556](https://github.com/nlohmann/json/issues/556)
-- For a header-only library you have to clone 214MB [\#482](https://github.com/nlohmann/json/issues/482)
-- 17 MB / 90 MB repo size!? [\#96](https://github.com/nlohmann/json/issues/96)
-
-- Improve parse\_ubjson\_fuzzer [\#2182](https://github.com/nlohmann/json/pull/2182) ([tanuj208](https://github.com/tanuj208))
-- Add input adapter tests [\#2178](https://github.com/nlohmann/json/pull/2178) ([nlohmann](https://github.com/nlohmann))
-- Fix warnings [\#2174](https://github.com/nlohmann/json/pull/2174) ([nlohmann](https://github.com/nlohmann))
-- Fix PR\#1006 [\#2158](https://github.com/nlohmann/json/pull/2158) ([dota17](https://github.com/dota17))
-- Fix issue\#1972 [\#2153](https://github.com/nlohmann/json/pull/2153) ([dota17](https://github.com/dota17))
-- Update URLs to HTTPS [\#2152](https://github.com/nlohmann/json/pull/2152) ([TotalCaesar659](https://github.com/TotalCaesar659))
-- Fix Issue\#1813: user defined input adapters [\#2145](https://github.com/nlohmann/json/pull/2145) ([FrancoisChabot](https://github.com/FrancoisChabot))
-- Fix issue\#1939: Cast character to unsigned for comparison [\#2144](https://github.com/nlohmann/json/pull/2144) ([XyFreak](https://github.com/XyFreak))
-- Fix issue\#2142: readme: fix typo in CMake FetchContent example [\#2143](https://github.com/nlohmann/json/pull/2143) ([quentin-dev](https://github.com/quentin-dev))
-- Respect allow\_exceptions=false for binary formats [\#2140](https://github.com/nlohmann/json/pull/2140) ([nlohmann](https://github.com/nlohmann))
-- Fix issue 2112 [\#2137](https://github.com/nlohmann/json/pull/2137) ([dota17](https://github.com/dota17))
-- Add bleeding edge GCC to CI [\#2136](https://github.com/nlohmann/json/pull/2136) ([aokellermann](https://github.com/aokellermann))
-- Clean up implementation of binary type [\#2125](https://github.com/nlohmann/json/pull/2125) ([nlohmann](https://github.com/nlohmann))
-- Fixed a compilation error in MSVC [\#2121](https://github.com/nlohmann/json/pull/2121) ([gistrec](https://github.com/gistrec))
-- Overwork CI [\#2119](https://github.com/nlohmann/json/pull/2119) ([nlohmann](https://github.com/nlohmann))
-- Fix warnings from Clang 10 and GCC 9 [\#2116](https://github.com/nlohmann/json/pull/2116) ([nlohmann](https://github.com/nlohmann))
-- Do not include \ when using C++17 [\#2115](https://github.com/nlohmann/json/pull/2115) ([nlohmann](https://github.com/nlohmann))
-- Fix issue\#2086: disallow json::value\_t type parameter in value\(\) [\#2104](https://github.com/nlohmann/json/pull/2104) ([dota17](https://github.com/dota17))
-- Fix Coveralls integration [\#2100](https://github.com/nlohmann/json/pull/2100) ([nlohmann](https://github.com/nlohmann))
-- Add tests for binary values [\#2099](https://github.com/nlohmann/json/pull/2099) ([nlohmann](https://github.com/nlohmann))
-- Use external test data [\#2081](https://github.com/nlohmann/json/pull/2081) ([nlohmann](https://github.com/nlohmann))
-- Remove Doozer CI [\#2080](https://github.com/nlohmann/json/pull/2080) ([nlohmann](https://github.com/nlohmann))
-- Fix README.md. Missing ``` [\#2077](https://github.com/nlohmann/json/pull/2077) ([ArthurSonzogni](https://github.com/ArthurSonzogni))
-- Fix error message about invalid surrogate pairs [\#2076](https://github.com/nlohmann/json/pull/2076) ([rmisev](https://github.com/rmisev))
-- Add CMake fetchcontent documentation and tests [\#2074](https://github.com/nlohmann/json/pull/2074) ([ArthurSonzogni](https://github.com/ArthurSonzogni))
-- Properly pass serialize\_binary to dump function [\#2071](https://github.com/nlohmann/json/pull/2071) ([nlohmann](https://github.com/nlohmann))
-- Fix returning reference to local temporary object [\#2069](https://github.com/nlohmann/json/pull/2069) ([nlohmann](https://github.com/nlohmann))
-- updated wandbox link [\#2060](https://github.com/nlohmann/json/pull/2060) ([alexandermyasnikov](https://github.com/alexandermyasnikov))
-- Fix bug in diff function [\#2054](https://github.com/nlohmann/json/pull/2054) ([nlohmann](https://github.com/nlohmann))
-- Fix GCC compiler warnings [\#2053](https://github.com/nlohmann/json/pull/2053) ([nlohmann](https://github.com/nlohmann))
-- Fix Clang compiler warnings [\#2051](https://github.com/nlohmann/json/pull/2051) ([nlohmann](https://github.com/nlohmann))
-- Update doctest to 2.3.7 [\#2050](https://github.com/nlohmann/json/pull/2050) ([nlohmann](https://github.com/nlohmann))
-- Fix issue\#1719 [\#2044](https://github.com/nlohmann/json/pull/2044) ([dota17](https://github.com/dota17))
-- Add missing testcase about NaN in unit-constructor1.cpp [\#2043](https://github.com/nlohmann/json/pull/2043) ([dota17](https://github.com/dota17))
-- Templatize basic\_json constructor from json\_ref [\#2034](https://github.com/nlohmann/json/pull/2034) ([ArtemSarmini](https://github.com/ArtemSarmini))
-- Replace deprecated std::is\_pod [\#2033](https://github.com/nlohmann/json/pull/2033) ([nlohmann](https://github.com/nlohmann))
-- Fixes \#1971 \(memory leak in basic\_json::push\_back\) [\#2025](https://github.com/nlohmann/json/pull/2025) ([ArtemSarmini](https://github.com/ArtemSarmini))
-- fix \#1982:json\_pointer.contains\(\) exception is incorrectly raised [\#2019](https://github.com/nlohmann/json/pull/2019) ([dota17](https://github.com/dota17))
-- Update LICENSE.MIT [\#2010](https://github.com/nlohmann/json/pull/2010) ([magamig](https://github.com/magamig))
-- PR for \#2006 to test in AppVeyor. [\#2008](https://github.com/nlohmann/json/pull/2008) ([garethsb](https://github.com/garethsb))
-- Added wsjcpp.yml [\#2004](https://github.com/nlohmann/json/pull/2004) ([sea-kg](https://github.com/sea-kg))
-- fix error 'setw' is not a member of 'std' in Wandbox example [\#2002](https://github.com/nlohmann/json/pull/2002) ([alexandermyasnikov](https://github.com/alexandermyasnikov))
-- catch exceptions for json\_pointer : ..../+99 [\#1990](https://github.com/nlohmann/json/pull/1990) ([dota17](https://github.com/dota17))
-- Modify the document about operator== [\#1984](https://github.com/nlohmann/json/pull/1984) ([dota17](https://github.com/dota17))
-- Rename argument array\_index to array\_indx in json\_pointer methods [\#1980](https://github.com/nlohmann/json/pull/1980) ([linev](https://github.com/linev))
-- README: Fix string representation of `dump`ed `json` [\#1979](https://github.com/nlohmann/json/pull/1979) ([alexweej](https://github.com/alexweej))
-- fix warnings in serializer.hpp for VS2019 [\#1969](https://github.com/nlohmann/json/pull/1969) ([dota17](https://github.com/dota17))
-- Fix C26451 warnnings in to\_chars.hpp [\#1967](https://github.com/nlohmann/json/pull/1967) ([dota17](https://github.com/dota17))
-- appveyor.yml: Compile and test with latest version for \_\_cplusplus ma… [\#1958](https://github.com/nlohmann/json/pull/1958) ([t-b](https://github.com/t-b))
-- Fix typo in examples [\#1956](https://github.com/nlohmann/json/pull/1956) ([dota17](https://github.com/dota17))
-- templated input adapters [\#1950](https://github.com/nlohmann/json/pull/1950) ([FrancoisChabot](https://github.com/FrancoisChabot))
-- Update README.md : add a FAQ about memory release [\#1933](https://github.com/nlohmann/json/pull/1933) ([dota17](https://github.com/dota17))
-- Some typos [\#1923](https://github.com/nlohmann/json/pull/1923) ([Coeur](https://github.com/Coeur))
-- Fix link to parse function in README [\#1918](https://github.com/nlohmann/json/pull/1918) ([kastiglione](https://github.com/kastiglione))
-- Readme: Updated links to hunter repo & docs [\#1917](https://github.com/nlohmann/json/pull/1917) ([jothepro](https://github.com/jothepro))
-- Adds instruction for using Build2's package manager [\#1909](https://github.com/nlohmann/json/pull/1909) ([Klaim](https://github.com/Klaim))
-- Update README.md [\#1907](https://github.com/nlohmann/json/pull/1907) ([pauljurczak](https://github.com/pauljurczak))
-- Fix warning: ignoring return value [\#1871](https://github.com/nlohmann/json/pull/1871) ([sonulohani](https://github.com/sonulohani))
-- docs: add central repository as conan source to readme [\#1857](https://github.com/nlohmann/json/pull/1857) ([gocarlos](https://github.com/gocarlos))
-- README: Package in MSYS2 renamed to nlohmann-json [\#1853](https://github.com/nlohmann/json/pull/1853) ([podsvirov](https://github.com/podsvirov))
-- Fix msvc warnings [\#1846](https://github.com/nlohmann/json/pull/1846) ([MBalszun](https://github.com/MBalszun))
-- Update tests that generate CMake projects to use main project's C++ compiler [\#1844](https://github.com/nlohmann/json/pull/1844) ([Tridacnid](https://github.com/Tridacnid))
-- make CMake's version config file architecture-independent [\#1746](https://github.com/nlohmann/json/pull/1746) ([uhoreg](https://github.com/uhoreg))
-- Add binary type support to all binary file formats, as well as an internally represented binary type [\#1662](https://github.com/nlohmann/json/pull/1662) ([OmnipotentEntity](https://github.com/OmnipotentEntity))
-
-## [v3.7.3](https://github.com/nlohmann/json/releases/tag/v3.7.3) (2019-11-17)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.7.2...v3.7.3)
-
-- Project branches [\#1839](https://github.com/nlohmann/json/issues/1839)
-- Quadratic destruction complexity introduced in \#1436 [\#1837](https://github.com/nlohmann/json/issues/1837)
-- Trying to open a file [\#1814](https://github.com/nlohmann/json/issues/1814)
-- Comparing data type with value\_t::number\_integer fails [\#1783](https://github.com/nlohmann/json/issues/1783)
-- CMake version config file is architecture-dependent [\#1697](https://github.com/nlohmann/json/issues/1697)
-
-- Fix quadratic destruction complexity [\#1838](https://github.com/nlohmann/json/pull/1838) ([nickaein](https://github.com/nickaein))
-
-## [v3.7.2](https://github.com/nlohmann/json/releases/tag/v3.7.2) (2019-11-10)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.7.1...v3.7.2)
-
-- Segmentation fault in destructor in case of large inputs [\#1835](https://github.com/nlohmann/json/issues/1835)
-- type\_name\(\) is not consistent with type\(\) [\#1833](https://github.com/nlohmann/json/issues/1833)
-- json::parse is not a member [\#1832](https://github.com/nlohmann/json/issues/1832)
-- How do you deal with json\* ? [\#1829](https://github.com/nlohmann/json/issues/1829)
-- Combined find\_package/add\_subdirectory not linking libraries [\#1771](https://github.com/nlohmann/json/issues/1771)
-- example code for ifstream reading a json file results in no operator error [\#1766](https://github.com/nlohmann/json/issues/1766)
-- Warning: unsequenced modification and access to 'range' [\#1674](https://github.com/nlohmann/json/issues/1674)
-- Segmentation fault \(stack overflow\) due to unbounded recursion [\#1419](https://github.com/nlohmann/json/issues/1419)
-- Stack-overflow \(OSS-Fuzz 4234\) [\#832](https://github.com/nlohmann/json/issues/832)
-
-- Configure WhiteSource Bolt for GitHub [\#1830](https://github.com/nlohmann/json/pull/1830) ([mend-bolt-for-github[bot]](https://github.com/apps/mend-bolt-for-github))
-- Prevent stackoverflow caused by recursive deconstruction [\#1436](https://github.com/nlohmann/json/pull/1436) ([nickaein](https://github.com/nickaein))
-
-## [v3.7.1](https://github.com/nlohmann/json/releases/tag/v3.7.1) (2019-11-06)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.7.0...v3.7.1)
-
-- std::is\_constructible is always true with tuple [\#1825](https://github.com/nlohmann/json/issues/1825)
-- Can't compile from\_json\(std::valarray\\). [\#1824](https://github.com/nlohmann/json/issues/1824)
-- json class should have a get\_or member function [\#1823](https://github.com/nlohmann/json/issues/1823)
-- NLOHMANN\_JSON\_SERIALIZE\_ENUM macro capture's json objects by value [\#1822](https://github.com/nlohmann/json/issues/1822)
-- Parse fails when number literals start with zero [\#1820](https://github.com/nlohmann/json/issues/1820)
-- Weird behaviour of `contains` with `json_pointer` [\#1815](https://github.com/nlohmann/json/issues/1815)
-- strange behaviour with json\_pointer and .contains\(\) [\#1811](https://github.com/nlohmann/json/issues/1811)
-- Can \#1695 be re-opened? [\#1808](https://github.com/nlohmann/json/issues/1808)
-- Merge two json objects [\#1807](https://github.com/nlohmann/json/issues/1807)
-- std::is\_constructible\\> when to\_json not defined [\#1805](https://github.com/nlohmann/json/issues/1805)
-- Private data on parsing [\#1802](https://github.com/nlohmann/json/issues/1802)
-- Capturing Line and Position when querying [\#1800](https://github.com/nlohmann/json/issues/1800)
-- json error on parsing DBL\_MAX from string [\#1796](https://github.com/nlohmann/json/issues/1796)
-- De/Serialisation of vector of tupple object with nested obect need Help please [\#1794](https://github.com/nlohmann/json/issues/1794)
-- Output json is corrupted [\#1793](https://github.com/nlohmann/json/issues/1793)
-- variable name byte sometimes used as a \#define [\#1792](https://github.com/nlohmann/json/issues/1792)
-- Can't read json file [\#1791](https://github.com/nlohmann/json/issues/1791)
-- Problems with special German letters [\#1789](https://github.com/nlohmann/json/issues/1789)
-- Support for trailing commas [\#1787](https://github.com/nlohmann/json/issues/1787)
-- json\_pointer construction bug [\#1786](https://github.com/nlohmann/json/issues/1786)
-- Visual Studio 2017 warning [\#1784](https://github.com/nlohmann/json/issues/1784)
-- ciso646 header become obsolete [\#1782](https://github.com/nlohmann/json/issues/1782)
-- Migrate LGTM.com installation from OAuth to GitHub App [\#1781](https://github.com/nlohmann/json/issues/1781)
-- JSON comparison, contains and operator& [\#1778](https://github.com/nlohmann/json/issues/1778)
-- pass a json object to a class contructor adds an array around the object [\#1776](https://github.com/nlohmann/json/issues/1776)
-- 'Float' number\_float\_function\_t template parameter name conflicts with C '\#define Float float' [\#1775](https://github.com/nlohmann/json/issues/1775)
-- A weird building problem :-\( [\#1774](https://github.com/nlohmann/json/issues/1774)
-- What is this json\_ref? [\#1772](https://github.com/nlohmann/json/issues/1772)
-- Interoperability with other languages [\#1770](https://github.com/nlohmann/json/issues/1770)
-- Json dump [\#1768](https://github.com/nlohmann/json/issues/1768)
-- json\_pointer\<\>::back\(\) should be const [\#1764](https://github.com/nlohmann/json/issues/1764)
-- How to get value from array [\#1762](https://github.com/nlohmann/json/issues/1762)
-- Merge two jsons [\#1757](https://github.com/nlohmann/json/issues/1757)
-- Unable to locate nlohmann\_jsonConfig.cmake [\#1755](https://github.com/nlohmann/json/issues/1755)
-- json.hpp won;t compile VS2019 CLR/CLI app but does in console app [\#1754](https://github.com/nlohmann/json/issues/1754)
-- \[Nested Json Objects\] Segmentation fault [\#1753](https://github.com/nlohmann/json/issues/1753)
-- remove/replace assert with exceptions [\#1752](https://github.com/nlohmann/json/issues/1752)
-- Add array support for update\(\) function [\#1751](https://github.com/nlohmann/json/issues/1751)
-- Is there a reason the `get_to` method is defined in `include/nlohmann/json.hpp` but not in `single_include/nlohmann/json.hpp`? [\#1750](https://github.com/nlohmann/json/issues/1750)
-- how to validate json object before calling dump\(\) [\#1748](https://github.com/nlohmann/json/issues/1748)
-- Unable to invoke accessors on json objects in lldb [\#1745](https://github.com/nlohmann/json/issues/1745)
-- Escaping string before parsing [\#1743](https://github.com/nlohmann/json/issues/1743)
-- Construction in a member initializer list using curly braces is set as 'array' [\#1742](https://github.com/nlohmann/json/issues/1742)
-- Read a subkey from json object [\#1740](https://github.com/nlohmann/json/issues/1740)
-- Serialize vector of glm:vec2 [\#1739](https://github.com/nlohmann/json/issues/1739)
-- Support nlohmann::basic\_json::value with JSON\_NOEXCEPTION [\#1738](https://github.com/nlohmann/json/issues/1738)
-- how to know the parse is error [\#1737](https://github.com/nlohmann/json/issues/1737)
-- How to check if a given key exists in a JSON object [\#1736](https://github.com/nlohmann/json/issues/1736)
-- Allow The Colon Key-Value Delimiter To Have A Space Before It \[@ READ ONLY\] [\#1735](https://github.com/nlohmann/json/issues/1735)
-- Allow Tail { "Key": "Value" } Comma \[@ READ ONLY\] [\#1734](https://github.com/nlohmann/json/issues/1734)
-- No-throw json::value\(\) [\#1733](https://github.com/nlohmann/json/issues/1733)
-- JsonObject.dump\(\) [\#1732](https://github.com/nlohmann/json/issues/1732)
-- basic\_json has no member "parse" [\#1731](https://github.com/nlohmann/json/issues/1731)
-- Exception "type must be string, but is array" [\#1730](https://github.com/nlohmann/json/issues/1730)
-- json::contains usage to find a path [\#1727](https://github.com/nlohmann/json/issues/1727)
-- How to create JSON Object from my Structures of Data and Json File from that Object [\#1726](https://github.com/nlohmann/json/issues/1726)
-- please provide an API to read JSON from file directly. [\#1725](https://github.com/nlohmann/json/issues/1725)
-- How to modify a value stored at a key? [\#1723](https://github.com/nlohmann/json/issues/1723)
-- CMake not correctly finding the configuration package for 3.7.0 [\#1721](https://github.com/nlohmann/json/issues/1721)
-- name typo in the "spack package management" section of README.md [\#1720](https://github.com/nlohmann/json/issues/1720)
-- How to add json to another json? [\#1718](https://github.com/nlohmann/json/issues/1718)
-- json::parse\(\) ubsan regression with v3.7.0 [\#1716](https://github.com/nlohmann/json/issues/1716)
-- What I am doing wrong?!? [\#1714](https://github.com/nlohmann/json/issues/1714)
-- Potential memory leak detected by Valgrind [\#1713](https://github.com/nlohmann/json/issues/1713)
-- json::parse is not thread safe? [\#1712](https://github.com/nlohmann/json/issues/1712)
-- static analysis alarm by cppcheck [\#1711](https://github.com/nlohmann/json/issues/1711)
-- The compilation time is slow [\#1710](https://github.com/nlohmann/json/issues/1710)
-- not linking properly with cmake [\#1709](https://github.com/nlohmann/json/issues/1709)
-- Error in dump\(\) with int64\_t minimum value [\#1708](https://github.com/nlohmann/json/issues/1708)
-- Crash on trying to deserialize json string on 3ds homebrew [\#1707](https://github.com/nlohmann/json/issues/1707)
-- Can't compile VS2019. 13 Errors [\#1706](https://github.com/nlohmann/json/issues/1706)
-- find an object that matches the search criteria [\#1705](https://github.com/nlohmann/json/issues/1705)
-- IntelliSense goes crazy on VS2019 [\#1704](https://github.com/nlohmann/json/issues/1704)
-- Installing on Ubuntu 16.04 [\#1703](https://github.com/nlohmann/json/issues/1703)
-- Where is json::parse now? [\#1702](https://github.com/nlohmann/json/issues/1702)
-- Forward header should't be amalgamated [\#1700](https://github.com/nlohmann/json/issues/1700)
-- Json support for Cmake version 2.8.12 [\#1699](https://github.com/nlohmann/json/issues/1699)
-- Intruisive scientific notation when using .dump\(\); [\#1698](https://github.com/nlohmann/json/issues/1698)
-- Is there support for automatic serialization/deserialization? [\#1696](https://github.com/nlohmann/json/issues/1696)
-- on MSVC dump\(\) will hard crash for larger json [\#1693](https://github.com/nlohmann/json/issues/1693)
-- puzzled implicit conversions [\#1692](https://github.com/nlohmann/json/issues/1692)
-- Information: My project uses this awesome library [\#1691](https://github.com/nlohmann/json/issues/1691)
-- Consider listing files explicitly instead of using GLOB [\#1686](https://github.com/nlohmann/json/issues/1686)
-- Failing tests on MSVC with VS2019 15.9.13 x64 [\#1685](https://github.com/nlohmann/json/issues/1685)
-- Change from v2 to v3. Encoding with cp1252 [\#1680](https://github.com/nlohmann/json/issues/1680)
-- How to add Fifo\_map into json using Cmake [\#1679](https://github.com/nlohmann/json/issues/1679)
-- include.zip should contain meson.build [\#1672](https://github.com/nlohmann/json/issues/1672)
-- \[Question\] How do I parse JSON into custom types? [\#1669](https://github.com/nlohmann/json/issues/1669)
-- Binary \(0x05\) data type for BSON to JSON conversion [\#1668](https://github.com/nlohmann/json/issues/1668)
-- Possible to call dump from lldb? [\#1666](https://github.com/nlohmann/json/issues/1666)
-- Segmentation fault when linked with libunwind [\#1665](https://github.com/nlohmann/json/issues/1665)
-- Should I include single-header after my to\_json and from\_json custom functions declaration? Why not? [\#1663](https://github.com/nlohmann/json/issues/1663)
-- Errors/Warnings in VS 2019 when Including Header File [\#1659](https://github.com/nlohmann/json/issues/1659)
-- Return null object from object's const operator\[\] as well. [\#1658](https://github.com/nlohmann/json/issues/1658)
-- Can't stream json object in to std::basic\_stringstream\ [\#1656](https://github.com/nlohmann/json/issues/1656)
-- C2440 in vs2015 cannot convert from 'initializer-list' to nlohmann::basic\_json [\#1655](https://github.com/nlohmann/json/issues/1655)
-- Issues around get and pointers [\#1653](https://github.com/nlohmann/json/issues/1653)
-- Non-member operator== breaks enum \(de\)serialization [\#1647](https://github.com/nlohmann/json/issues/1647)
-- Valgrind: bytes in 1 blocks are definitely lost [\#1646](https://github.com/nlohmann/json/issues/1646)
-- Convenient way to make 'basic\_json' accept 'QString' as an key type as well? [\#1640](https://github.com/nlohmann/json/issues/1640)
-- mongodb: nan, inf [\#1599](https://github.com/nlohmann/json/issues/1599)
-- Error in adl\_serializer [\#1590](https://github.com/nlohmann/json/issues/1590)
-- Injecting class during serialization [\#1584](https://github.com/nlohmann/json/issues/1584)
-- output\_adapter not user extensible [\#1534](https://github.com/nlohmann/json/issues/1534)
-- Inclusion of nlohmann/json.hpp causes OS/ABI to change on Linux [\#1410](https://github.com/nlohmann/json/issues/1410)
-- Add library versioning using inline namespaces [\#1394](https://github.com/nlohmann/json/issues/1394)
-- CBOR byte string support [\#1129](https://github.com/nlohmann/json/issues/1129)
-- How to deserialize array with derived objects [\#716](https://github.com/nlohmann/json/issues/716)
-
-- Add restriction for tuple specialization of to\_json [\#1826](https://github.com/nlohmann/json/pull/1826) ([cbegue](https://github.com/cbegue))
-- Fix for \#1647 [\#1821](https://github.com/nlohmann/json/pull/1821) ([AnthonyVH](https://github.com/AnthonyVH))
-- Fix issue \#1805 [\#1806](https://github.com/nlohmann/json/pull/1806) ([cbegue](https://github.com/cbegue))
-- Fix some spelling errors - mostly in comments & documentation. [\#1803](https://github.com/nlohmann/json/pull/1803) ([flopp](https://github.com/flopp))
-- Update Hedley to v11. [\#1799](https://github.com/nlohmann/json/pull/1799) ([nemequ](https://github.com/nemequ))
-- iteration\_proxy: Fix integer truncation from std::size\_t to int [\#1797](https://github.com/nlohmann/json/pull/1797) ([t-b](https://github.com/t-b))
-- appveyor.yml: Add MSVC 16 2019 support [\#1780](https://github.com/nlohmann/json/pull/1780) ([t-b](https://github.com/t-b))
-- test/CMakeLists.txt: Use an explicit list instead of GLOB [\#1779](https://github.com/nlohmann/json/pull/1779) ([t-b](https://github.com/t-b))
-- Make json\_pointer::back const \(resolves \#1764\) [\#1769](https://github.com/nlohmann/json/pull/1769) ([chris0x44](https://github.com/chris0x44))
-- did you mean 'serialization'? [\#1767](https://github.com/nlohmann/json/pull/1767) ([0xflotus](https://github.com/0xflotus))
-- Allow items\(\) to be used with custom string [\#1765](https://github.com/nlohmann/json/pull/1765) ([crazyjul](https://github.com/crazyjul))
-- Cppcheck fixes [\#1760](https://github.com/nlohmann/json/pull/1760) ([Xav83](https://github.com/Xav83))
-- Fix and add test's for SFINAE problem [\#1741](https://github.com/nlohmann/json/pull/1741) ([tete17](https://github.com/tete17))
-- Fix clang sanitizer invocation [\#1728](https://github.com/nlohmann/json/pull/1728) ([t-b](https://github.com/t-b))
-- Add gcc 9 and compile with experimental C++20 support [\#1724](https://github.com/nlohmann/json/pull/1724) ([t-b](https://github.com/t-b))
-- Fix int64 min issue [\#1722](https://github.com/nlohmann/json/pull/1722) ([t-b](https://github.com/t-b))
-- release: add singleinclude and meson.build to include.zip [\#1694](https://github.com/nlohmann/json/pull/1694) ([eli-schwartz](https://github.com/eli-schwartz))
-
-## [v3.7.0](https://github.com/nlohmann/json/releases/tag/v3.7.0) (2019-07-28)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.6.1...v3.7.0)
-
-- How can I retrieve uknown strings from json file in my C++ program. [\#1684](https://github.com/nlohmann/json/issues/1684)
-- contains\(\) is sometimes causing stack-based buffer overrun exceptions [\#1683](https://github.com/nlohmann/json/issues/1683)
-- How to deserialize arrays from json [\#1681](https://github.com/nlohmann/json/issues/1681)
-- Compilation failed in VS2015 [\#1678](https://github.com/nlohmann/json/issues/1678)
-- Why the compiled object file is so huge? [\#1677](https://github.com/nlohmann/json/issues/1677)
-- From Version 2.1.1 to 3.6.1 serialize std::set [\#1676](https://github.com/nlohmann/json/issues/1676)
-- Qt deprecation model halting compiltion [\#1675](https://github.com/nlohmann/json/issues/1675)
-- Build For Raspberry pi , Rapbery with new Compiler C++17 [\#1671](https://github.com/nlohmann/json/issues/1671)
-- Build from Raspberry pi [\#1667](https://github.com/nlohmann/json/issues/1667)
-- Can not translate map with integer key to dict string ? [\#1664](https://github.com/nlohmann/json/issues/1664)
-- Double type converts to scientific notation [\#1661](https://github.com/nlohmann/json/issues/1661)
-- Missing v3.6.1 tag on master branch [\#1657](https://github.com/nlohmann/json/issues/1657)
-- Support Fleese Binary Data Format [\#1654](https://github.com/nlohmann/json/issues/1654)
-- Suggestion: replace alternative tokens for !, && and || with their symbols [\#1652](https://github.com/nlohmann/json/issues/1652)
-- Build failure test-allocator.vcxproj [\#1651](https://github.com/nlohmann/json/issues/1651)
-- How to provide function json& to\_json\(\) which is similar as 'void to\_json\(json&j, const CObject& obj\)' ? [\#1650](https://github.com/nlohmann/json/issues/1650)
-- Can't throw exception when starting file is a number [\#1649](https://github.com/nlohmann/json/issues/1649)
-- to\_json / from\_json with nested type [\#1648](https://github.com/nlohmann/json/issues/1648)
-- How to create a json object from a std::string, created by j.dump? [\#1645](https://github.com/nlohmann/json/issues/1645)
-- Problem getting vector \(array\) of strings [\#1644](https://github.com/nlohmann/json/issues/1644)
-- json.hpp compilation issue with other typedefs with same name [\#1642](https://github.com/nlohmann/json/issues/1642)
-- nlohmann::adl\_serializer\::to\_json no matching overloaded function found [\#1641](https://github.com/nlohmann/json/issues/1641)
-- overwrite adl\_serializer\ to change behaviour [\#1638](https://github.com/nlohmann/json/issues/1638)
-- json.SelectToken\("Manufacturers.Products.Price"\); [\#1637](https://github.com/nlohmann/json/issues/1637)
-- Add json type as value [\#1636](https://github.com/nlohmann/json/issues/1636)
-- Unit conversion test error: conversion from 'nlohmann::json' to non-scalar type 'std::string\_view' requested [\#1634](https://github.com/nlohmann/json/issues/1634)
-- nlohmann VS JsonCpp by C++17 [\#1633](https://github.com/nlohmann/json/issues/1633)
-- To integrate an inline helper function that return type name as string [\#1632](https://github.com/nlohmann/json/issues/1632)
-- Return JSON as reference [\#1631](https://github.com/nlohmann/json/issues/1631)
-- Updating from an older version causes problems with assing a json object to a struct [\#1630](https://github.com/nlohmann/json/issues/1630)
-- Can without default constructor function for user defined classes when only to\_json is needed? [\#1629](https://github.com/nlohmann/json/issues/1629)
-- Compilation fails with clang 6.x-8.x in C++14 mode [\#1628](https://github.com/nlohmann/json/issues/1628)
-- Treating floating point as string [\#1627](https://github.com/nlohmann/json/issues/1627)
-- error parsing character å [\#1626](https://github.com/nlohmann/json/issues/1626)
-- \[Help\] How to Improve Json Output Performance with Large Json Arrays [\#1624](https://github.com/nlohmann/json/issues/1624)
-- Suggested link changes for reporting new issues \[blob/develop/REAME.md and blob/develop/.github/CONTRIBUTING.md\] [\#1623](https://github.com/nlohmann/json/issues/1623)
-- Broken link to issue template in CONTRIBUTING.md [\#1622](https://github.com/nlohmann/json/issues/1622)
-- Missing word in README.md file [\#1621](https://github.com/nlohmann/json/issues/1621)
-- Package manager instructions in README for brew is incorrect [\#1620](https://github.com/nlohmann/json/issues/1620)
-- Building with Visual Studio 2019 [\#1619](https://github.com/nlohmann/json/issues/1619)
-- Precedence of to\_json and builtin harmful [\#1617](https://github.com/nlohmann/json/issues/1617)
-- The type json is missing from the html documentation [\#1616](https://github.com/nlohmann/json/issues/1616)
-- variant is not support in Release 3.6.1? [\#1615](https://github.com/nlohmann/json/issues/1615)
-- Replace assert with throw for const operator\[\] [\#1614](https://github.com/nlohmann/json/issues/1614)
-- Memory Overhead is Too High \(10x or more\) [\#1613](https://github.com/nlohmann/json/issues/1613)
-- program crash everytime, when other data type incomming in json stream as expected [\#1612](https://github.com/nlohmann/json/issues/1612)
-- Improved Enum Support [\#1611](https://github.com/nlohmann/json/issues/1611)
-- is it possible convert json object back to stl container ? [\#1610](https://github.com/nlohmann/json/issues/1610)
-- Add C++17-like emplace.back\(\) for arrays. [\#1609](https://github.com/nlohmann/json/issues/1609)
-- is\_nothrow\_copy\_constructible fails for json::const\_iterator on MSVC2015 x86 Debug build [\#1608](https://github.com/nlohmann/json/issues/1608)
-- Reading and writing array elements [\#1607](https://github.com/nlohmann/json/issues/1607)
-- Converting json::value to int [\#1605](https://github.com/nlohmann/json/issues/1605)
-- I have a vector of keys and and a string of value and i want to create nested json array [\#1604](https://github.com/nlohmann/json/issues/1604)
-- In compatible JSON object from nlohmann::json to nohman::json - unexpected end of input; expected '\[', '{', or a literal [\#1603](https://github.com/nlohmann/json/issues/1603)
-- json parser crash if having a large number integer in message [\#1602](https://github.com/nlohmann/json/issues/1602)
-- Value method with undocumented throwing 302 exception [\#1601](https://github.com/nlohmann/json/issues/1601)
-- Accessing value with json pointer adds key if not existing [\#1600](https://github.com/nlohmann/json/issues/1600)
-- README.md broken link to project documentation [\#1597](https://github.com/nlohmann/json/issues/1597)
-- Random Kudos: Thanks for your work on this! [\#1596](https://github.com/nlohmann/json/issues/1596)
-- json::parse return value and errors [\#1595](https://github.com/nlohmann/json/issues/1595)
-- initializer list constructor makes curly brace initialization fragile [\#1594](https://github.com/nlohmann/json/issues/1594)
-- trying to log message for missing keyword, difference between \["foo"\] and at\("foo"\) [\#1593](https://github.com/nlohmann/json/issues/1593)
-- std::string and std::wstring `to_json` [\#1592](https://github.com/nlohmann/json/issues/1592)
-- I have a C structure which I need to convert to a JSON. How do I do it? Haven't found proper examples so far. [\#1591](https://github.com/nlohmann/json/issues/1591)
-- dump\_escaped possible error ? [\#1589](https://github.com/nlohmann/json/issues/1589)
-- json::parse\(\) into a vector\ results in unhandled exception [\#1587](https://github.com/nlohmann/json/issues/1587)
-- push\_back\(\)/emplace\_back\(\) on array invalidates pointers to existing array items [\#1586](https://github.com/nlohmann/json/issues/1586)
-- Getting nlohmann::detail::parse\_error on JSON generated by nlohmann::json not sure why [\#1583](https://github.com/nlohmann/json/issues/1583)
-- getting error terminate called after throwing an instance of 'std::domain\_error' what\(\): cannot use at\(\) with string [\#1582](https://github.com/nlohmann/json/issues/1582)
-- how i create json file [\#1581](https://github.com/nlohmann/json/issues/1581)
-- prevent rounding of double datatype values [\#1580](https://github.com/nlohmann/json/issues/1580)
-- Documentation Container Overview Doesn't Reference Const Methods [\#1579](https://github.com/nlohmann/json/issues/1579)
-- Writing an array into a nlohmann::json object [\#1578](https://github.com/nlohmann/json/issues/1578)
-- compilation error when using with another library [\#1577](https://github.com/nlohmann/json/issues/1577)
-- Homebrew on OSX doesn't install cmake config file [\#1576](https://github.com/nlohmann/json/issues/1576)
-- JSON Parse Out of Range Error [\#1574](https://github.com/nlohmann/json/issues/1574)
-- Integrating into existing CMake Project [\#1573](https://github.com/nlohmann/json/issues/1573)
-- conversion to std::string failed [\#1571](https://github.com/nlohmann/json/issues/1571)
-- jPtr operation does not throw [\#1569](https://github.com/nlohmann/json/issues/1569)
-- How to generate dll file for this project [\#1568](https://github.com/nlohmann/json/issues/1568)
-- how to pass variable data to json in c [\#1567](https://github.com/nlohmann/json/issues/1567)
-- I want to achieve an upgraded function. [\#1566](https://github.com/nlohmann/json/issues/1566)
-- How to determine the type of elements read from a JSON array? [\#1564](https://github.com/nlohmann/json/issues/1564)
-- try\_get\_to [\#1563](https://github.com/nlohmann/json/issues/1563)
-- example code compile error [\#1562](https://github.com/nlohmann/json/issues/1562)
-- How to iterate over nested json object [\#1561](https://github.com/nlohmann/json/issues/1561)
-- Build Option/Separate Function to Allow to Throw on Duplicate Keys [\#1560](https://github.com/nlohmann/json/issues/1560)
-- Compiler Switches -Weffc++ & -Wshadow are throwing errors [\#1558](https://github.com/nlohmann/json/issues/1558)
-- warning: use of the 'nodiscard' attribute is a C++17 extension [\#1557](https://github.com/nlohmann/json/issues/1557)
-- Import/Export compressed JSON files [\#1556](https://github.com/nlohmann/json/issues/1556)
-- GDB renderers for json library [\#1554](https://github.com/nlohmann/json/issues/1554)
-- Is it possible to construct a json string object from a binary buffer? [\#1553](https://github.com/nlohmann/json/issues/1553)
-- json objects in list [\#1552](https://github.com/nlohmann/json/issues/1552)
-- Matrix output [\#1550](https://github.com/nlohmann/json/issues/1550)
-- Using json merge\_patch on ordered non-alphanumeric datasets [\#1549](https://github.com/nlohmann/json/issues/1549)
-- Invalid parsed value for big integer [\#1548](https://github.com/nlohmann/json/issues/1548)
-- Integrating with android ndk issues. [\#1547](https://github.com/nlohmann/json/issues/1547)
-- add noexcept json::value\("key", default\) method variant? [\#1546](https://github.com/nlohmann/json/issues/1546)
-- Thank you! 🙌 [\#1545](https://github.com/nlohmann/json/issues/1545)
-- Output and input matrix [\#1544](https://github.com/nlohmann/json/issues/1544)
-- Add regression tests for MSVC [\#1543](https://github.com/nlohmann/json/issues/1543)
-- \[Help Needed!\] Season of Docs [\#1542](https://github.com/nlohmann/json/issues/1542)
-- program still abort\(\) or exit\(\) with try catch [\#1541](https://github.com/nlohmann/json/issues/1541)
-- Have a json::type\_error exception because of JSON object [\#1540](https://github.com/nlohmann/json/issues/1540)
-- Quoted numbers [\#1538](https://github.com/nlohmann/json/issues/1538)
-- Reading a JSON file into an object [\#1537](https://github.com/nlohmann/json/issues/1537)
-- Releases 3.6.0 and 3.6.1 don't build on conda / windows [\#1536](https://github.com/nlohmann/json/issues/1536)
-- \[Clang\] warning: use of the 'nodiscard' attribute is a C++17 extension \[-Wc++17-extensions\] [\#1535](https://github.com/nlohmann/json/issues/1535)
-- wchar\_t/std::wstring json can be created but not accessed [\#1533](https://github.com/nlohmann/json/issues/1533)
-- json stringify [\#1532](https://github.com/nlohmann/json/issues/1532)
-- How can I use it from gcc on RPI [\#1528](https://github.com/nlohmann/json/issues/1528)
-- std::pair treated as an array instead of key-value in `std::vector>` [\#1520](https://github.com/nlohmann/json/issues/1520)
-- Excessive Memory Usage for Large Json File [\#1516](https://github.com/nlohmann/json/issues/1516)
-- SAX dumper [\#1512](https://github.com/nlohmann/json/issues/1512)
-- Conversion to user type containing a std::vector not working with documented approach [\#1511](https://github.com/nlohmann/json/issues/1511)
-- Inconsistent use of type alias. [\#1507](https://github.com/nlohmann/json/issues/1507)
-- Is there a current way to represent strings as json int? [\#1503](https://github.com/nlohmann/json/issues/1503)
-- Intermittent issues with loadJSON [\#1484](https://github.com/nlohmann/json/issues/1484)
-- use json construct std::string [\#1462](https://github.com/nlohmann/json/issues/1462)
-- JSON Creation [\#1461](https://github.com/nlohmann/json/issues/1461)
-- Null bytes in files are treated like EOF [\#1095](https://github.com/nlohmann/json/issues/1095)
-- Feature: to\_string\(const json& j\); [\#916](https://github.com/nlohmann/json/issues/916)
-
-- Use GNUInstallDirs instead of hard-coded path. [\#1673](https://github.com/nlohmann/json/pull/1673) ([ghost](https://github.com/ghost))
-- Package Manager: MSYS2 \(pacman\) [\#1670](https://github.com/nlohmann/json/pull/1670) ([podsvirov](https://github.com/podsvirov))
-- Fix json.hpp compilation issue with other typedefs with same name \(Issue \#1642\) [\#1643](https://github.com/nlohmann/json/pull/1643) ([kevinlul](https://github.com/kevinlul))
-- Add explicit conversion from json to std::string\_view in conversion unit test [\#1639](https://github.com/nlohmann/json/pull/1639) ([taylorhoward92](https://github.com/taylorhoward92))
-- Minor fixes in docs [\#1625](https://github.com/nlohmann/json/pull/1625) ([nickaein](https://github.com/nickaein))
-- Fix broken links to documentation [\#1598](https://github.com/nlohmann/json/pull/1598) ([nickaein](https://github.com/nickaein))
-- Added to\_string and added basic tests [\#1585](https://github.com/nlohmann/json/pull/1585) ([Macr0Nerd](https://github.com/Macr0Nerd))
-- Regression tests for MSVC [\#1570](https://github.com/nlohmann/json/pull/1570) ([nickaein](https://github.com/nickaein))
-- Fix/1511 [\#1555](https://github.com/nlohmann/json/pull/1555) ([theodelrieu](https://github.com/theodelrieu))
-- Remove C++17 extension warning from clang; \#1535 [\#1551](https://github.com/nlohmann/json/pull/1551) ([heavywatal](https://github.com/heavywatal))
-- moved from Catch to doctest for unit tests [\#1439](https://github.com/nlohmann/json/pull/1439) ([onqtam](https://github.com/onqtam))
-
-## [v3.6.1](https://github.com/nlohmann/json/releases/tag/v3.6.1) (2019-03-20)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/3.6.1...v3.6.1)
-
-## [3.6.1](https://github.com/nlohmann/json/releases/tag/3.6.1) (2019-03-20)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.6.0...3.6.1)
-
-- Failed to build with \ [\#1531](https://github.com/nlohmann/json/issues/1531)
-- Compiling 3.6.0 with GCC \> 7, array vs std::array \#590 is back [\#1530](https://github.com/nlohmann/json/issues/1530)
-- 3.6.0: warning: missing initializer for member 'std::array\::\_M\_elems' \[-Wmissing-field-initializers\] [\#1527](https://github.com/nlohmann/json/issues/1527)
-- unable to parse json [\#1525](https://github.com/nlohmann/json/issues/1525)
-
-## [v3.6.0](https://github.com/nlohmann/json/releases/tag/v3.6.0) (2019-03-19)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.5.0...v3.6.0)
-
-- How can I turn a string of a json array into a json array? [\#1526](https://github.com/nlohmann/json/issues/1526)
-- Minor: missing a std:: namespace tag [\#1521](https://github.com/nlohmann/json/issues/1521)
-- how to precision to four decimal for double when use to\_json [\#1519](https://github.com/nlohmann/json/issues/1519)
-- error parse [\#1518](https://github.com/nlohmann/json/issues/1518)
-- Compile error: template argument deduction/substitution failed [\#1515](https://github.com/nlohmann/json/issues/1515)
-- std::complex type [\#1510](https://github.com/nlohmann/json/issues/1510)
-- CBOR byte string support [\#1509](https://github.com/nlohmann/json/issues/1509)
-- Compilation error getting a std::pair\<\> on latest VS 2017 compiler [\#1506](https://github.com/nlohmann/json/issues/1506)
-- "Integration" section of documentation needs update? [\#1505](https://github.com/nlohmann/json/issues/1505)
-- Json object from string from a TCP socket [\#1504](https://github.com/nlohmann/json/issues/1504)
-- MSVC warning C4946 \("reinterpret\_cast used between related classes"\) compiling json.hpp [\#1502](https://github.com/nlohmann/json/issues/1502)
-- How to programmatically fill an n-th dimensional JSON object? [\#1501](https://github.com/nlohmann/json/issues/1501)
-- Error compiling with clang and `JSON_NOEXCEPTION`: need to include `cstdlib` [\#1500](https://github.com/nlohmann/json/issues/1500)
-- The code compiles unsuccessfully with android-ndk-r10e [\#1499](https://github.com/nlohmann/json/issues/1499)
-- Cmake 3.1 in develop, when is it likely to make it into a stable release? [\#1498](https://github.com/nlohmann/json/issues/1498)
-- Some Help please object inside array [\#1494](https://github.com/nlohmann/json/issues/1494)
-- How to get data into vector of user-defined type from a Json object [\#1493](https://github.com/nlohmann/json/issues/1493)
-- how to find subelement without loop [\#1490](https://github.com/nlohmann/json/issues/1490)
-- json to std::map [\#1487](https://github.com/nlohmann/json/issues/1487)
-- Type in README.md [\#1486](https://github.com/nlohmann/json/issues/1486)
-- Error in parsing and reading msgpack-lite [\#1485](https://github.com/nlohmann/json/issues/1485)
-- Compiling issues with libc 2.12 [\#1483](https://github.com/nlohmann/json/issues/1483)
-- How do I use reference or pointer binding values? [\#1482](https://github.com/nlohmann/json/issues/1482)
-- Compilation fails in MSVC with the Microsoft Language Extensions disabled [\#1481](https://github.com/nlohmann/json/issues/1481)
-- Functional visit [\#1480](https://github.com/nlohmann/json/issues/1480)
-- \[Question\] Unescaped dump [\#1479](https://github.com/nlohmann/json/issues/1479)
-- Some Help please [\#1478](https://github.com/nlohmann/json/issues/1478)
-- Global variables are stored within the JSON file, how do I declare them as global variables when I read them out in my C++ program? [\#1476](https://github.com/nlohmann/json/issues/1476)
-- Unable to modify one of the values within the JSON file, and save it [\#1475](https://github.com/nlohmann/json/issues/1475)
-- Documentation of parse function has two identical @pre causes [\#1473](https://github.com/nlohmann/json/issues/1473)
-- GCC 9.0 build failure [\#1472](https://github.com/nlohmann/json/issues/1472)
-- Can we have an `exists()` method? [\#1471](https://github.com/nlohmann/json/issues/1471)
-- How to parse multi object json from file? [\#1470](https://github.com/nlohmann/json/issues/1470)
-- How to returns the name of the upper object? [\#1467](https://github.com/nlohmann/json/issues/1467)
-- Error: "tuple\_size" has already been declared in the current scope [\#1466](https://github.com/nlohmann/json/issues/1466)
-- Checking keys of two jsons against eachother [\#1465](https://github.com/nlohmann/json/issues/1465)
-- Disable installation when used as meson subproject [\#1463](https://github.com/nlohmann/json/issues/1463)
-- Unpack list of integers to a std::vector\ [\#1460](https://github.com/nlohmann/json/issues/1460)
-- Implement DRY definition of JSON representation of a c++ class [\#1459](https://github.com/nlohmann/json/issues/1459)
-- json.exception.type\_error.305 with GCC 4.9 when using C++ {} initializer [\#1458](https://github.com/nlohmann/json/issues/1458)
-- API to convert an "uninitialized" json into an empty object or empty array [\#1456](https://github.com/nlohmann/json/issues/1456)
-- How to parse a vector of objects with const attributes [\#1453](https://github.com/nlohmann/json/issues/1453)
-- NLOHMANN\_JSON\_SERIALIZE\_ENUM potentially requires duplicate definitions [\#1450](https://github.com/nlohmann/json/issues/1450)
-- Question about making json object from file directory [\#1449](https://github.com/nlohmann/json/issues/1449)
-- .get\(\) throws error if used with userdefined structs in unordered\_map [\#1448](https://github.com/nlohmann/json/issues/1448)
-- Integer Overflow \(OSS-Fuzz 12506\) [\#1447](https://github.com/nlohmann/json/issues/1447)
-- If a string has too many invalid UTF-8 characters, json::dump attempts to index an array out of bounds. [\#1445](https://github.com/nlohmann/json/issues/1445)
-- Setting values of .JSON file [\#1444](https://github.com/nlohmann/json/issues/1444)
-- alias object\_t::key\_type in basic\_json [\#1442](https://github.com/nlohmann/json/issues/1442)
-- Latest Ubuntu package is 2.1.1 [\#1438](https://github.com/nlohmann/json/issues/1438)
-- lexer.hpp\(1363\) '\_snprintf': is not a member | Visualstudio 2017 [\#1437](https://github.com/nlohmann/json/issues/1437)
-- Static method invites inadvertent logic error. [\#1433](https://github.com/nlohmann/json/issues/1433)
-- EOS compilation produces "fatal error: 'nlohmann/json.hpp' file not found" [\#1432](https://github.com/nlohmann/json/issues/1432)
-- Support for bad commas [\#1429](https://github.com/nlohmann/json/issues/1429)
-- Please have one base exception class for all json exceptions [\#1427](https://github.com/nlohmann/json/issues/1427)
-- Compilation warning: 'tuple\_size' defined as a class template here but previously declared as a struct template [\#1426](https://github.com/nlohmann/json/issues/1426)
-- Which version can be used with GCC 4.8.2 ? [\#1424](https://github.com/nlohmann/json/issues/1424)
-- Ignore nullptr values on constructing json object from a container [\#1422](https://github.com/nlohmann/json/issues/1422)
-- Support for custom float precision via unquoted strings [\#1421](https://github.com/nlohmann/json/issues/1421)
-- It is possible to call `json::find` with a json\_pointer as argument. This causes runtime UB/crash. [\#1418](https://github.com/nlohmann/json/issues/1418)
-- Dump throwing exception [\#1416](https://github.com/nlohmann/json/issues/1416)
-- Build error [\#1415](https://github.com/nlohmann/json/issues/1415)
-- Append version to include.zip [\#1412](https://github.com/nlohmann/json/issues/1412)
-- error C2039: '\_snprintf': is not a member of 'std' - Windows [\#1408](https://github.com/nlohmann/json/issues/1408)
-- Deserializing to vector [\#1407](https://github.com/nlohmann/json/issues/1407)
-- Efficient way to set a `json` object as value into another `json` key [\#1406](https://github.com/nlohmann/json/issues/1406)
-- Document return value of parse\(\) when allow\_exceptions == false and parsing fails [\#1405](https://github.com/nlohmann/json/issues/1405)
-- Unexpected behaviour with structured binding [\#1404](https://github.com/nlohmann/json/issues/1404)
-- Which native types does get\\(\) allow? [\#1403](https://github.com/nlohmann/json/issues/1403)
-- Add something like Json::StaticString [\#1402](https://github.com/nlohmann/json/issues/1402)
-- -Wmismatched-tags in 3.5.0? [\#1401](https://github.com/nlohmann/json/issues/1401)
-- Coverity Scan reports an UNCAUGHT\_EXCEPT issue [\#1400](https://github.com/nlohmann/json/issues/1400)
-- fff [\#1399](https://github.com/nlohmann/json/issues/1399)
-- sorry this is not an issue, just a Question, How to change a key value in a file and save it ? [\#1398](https://github.com/nlohmann/json/issues/1398)
-- appveyor x64 builds appear to be using Win32 toolset [\#1374](https://github.com/nlohmann/json/issues/1374)
-- Serializing/Deserializing a Class containing a vector of itself [\#1373](https://github.com/nlohmann/json/issues/1373)
-- Retrieving array elements. [\#1369](https://github.com/nlohmann/json/issues/1369)
-- Deserialize [\#1366](https://github.com/nlohmann/json/issues/1366)
-- call of overloaded for push\_back and operator+= is ambiguous [\#1352](https://github.com/nlohmann/json/issues/1352)
-- got an error and cann't figure it out [\#1351](https://github.com/nlohmann/json/issues/1351)
-- Improve number-to-string conversion [\#1334](https://github.com/nlohmann/json/issues/1334)
-- Implicit type conversion error on MSVC [\#1333](https://github.com/nlohmann/json/issues/1333)
-- NuGet Package [\#1132](https://github.com/nlohmann/json/issues/1132)
-
-- Change macros to numeric\_limits [\#1514](https://github.com/nlohmann/json/pull/1514) ([naszta](https://github.com/naszta))
-- fix GCC 7.1.1 - 7.2.1 on CentOS [\#1496](https://github.com/nlohmann/json/pull/1496) ([lieff](https://github.com/lieff))
-- Update Buckaroo instructions in README.md [\#1495](https://github.com/nlohmann/json/pull/1495) ([njlr](https://github.com/njlr))
-- Fix gcc9 build error test/src/unit-allocator.cpp \(Issue \#1472\) [\#1492](https://github.com/nlohmann/json/pull/1492) ([stac47](https://github.com/stac47))
-- Fix typo in README.md [\#1491](https://github.com/nlohmann/json/pull/1491) ([nickaein](https://github.com/nickaein))
-- Do proper endian conversions [\#1489](https://github.com/nlohmann/json/pull/1489) ([andreas-schwab](https://github.com/andreas-schwab))
-- Fix documentation [\#1477](https://github.com/nlohmann/json/pull/1477) ([nickaein](https://github.com/nickaein))
-- Implement contains\(\) member function [\#1474](https://github.com/nlohmann/json/pull/1474) ([nickaein](https://github.com/nickaein))
-- Add operator/= and operator/ to construct a JSON pointer by appending two JSON pointers [\#1469](https://github.com/nlohmann/json/pull/1469) ([garethsb](https://github.com/garethsb))
-- Disable Clang -Wmismatched-tags warning on tuple\_size / tuple\_element [\#1468](https://github.com/nlohmann/json/pull/1468) ([past-due](https://github.com/past-due))
-- Disable installation when used as meson subproject. \#1463 [\#1464](https://github.com/nlohmann/json/pull/1464) ([elvisoric](https://github.com/elvisoric))
-- docs: README typo [\#1455](https://github.com/nlohmann/json/pull/1455) ([wythe](https://github.com/wythe))
-- remove extra semicolon from readme [\#1451](https://github.com/nlohmann/json/pull/1451) ([Afforix](https://github.com/Afforix))
-- attempt to fix \#1445, flush buffer in serializer::dump\_escaped in UTF8\_REJECT case. [\#1446](https://github.com/nlohmann/json/pull/1446) ([scinart](https://github.com/scinart))
-- Use C++11 features supported by CMake 3.1. [\#1441](https://github.com/nlohmann/json/pull/1441) ([iwanders](https://github.com/iwanders))
-- :rotating\_light: fixed unused variable warning [\#1435](https://github.com/nlohmann/json/pull/1435) ([pboettch](https://github.com/pboettch))
-- allow push\_back\(\) and pop\_back\(\) calls on json\_pointer [\#1434](https://github.com/nlohmann/json/pull/1434) ([pboettch](https://github.com/pboettch))
-- Add instructions about using nlohmann/json with the conda package manager [\#1430](https://github.com/nlohmann/json/pull/1430) ([nicoddemus](https://github.com/nicoddemus))
-- Updated year in README.md [\#1425](https://github.com/nlohmann/json/pull/1425) ([jef](https://github.com/jef))
-- Fixed broken links in the README file [\#1423](https://github.com/nlohmann/json/pull/1423) ([skypjack](https://github.com/skypjack))
-- Fixed broken links in the README file [\#1420](https://github.com/nlohmann/json/pull/1420) ([skypjack](https://github.com/skypjack))
-- docs: typo in README [\#1417](https://github.com/nlohmann/json/pull/1417) ([wythe](https://github.com/wythe))
-- Fix x64 target platform for appveyor [\#1414](https://github.com/nlohmann/json/pull/1414) ([nickaein](https://github.com/nickaein))
-- Improve dump\_integer performance [\#1411](https://github.com/nlohmann/json/pull/1411) ([nickaein](https://github.com/nickaein))
-- buildsystem: relax requirement on cmake version [\#1409](https://github.com/nlohmann/json/pull/1409) ([yann-morin-1998](https://github.com/yann-morin-1998))
-- CMake: Optional Install if Embedded [\#1330](https://github.com/nlohmann/json/pull/1330) ([ax3l](https://github.com/ax3l))
-
-## [v3.5.0](https://github.com/nlohmann/json/releases/tag/v3.5.0) (2018-12-21)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.4.0...v3.5.0)
-
-- Copyconstructor inserts original into array with single element [\#1397](https://github.com/nlohmann/json/issues/1397)
-- Get value without explicit typecasting [\#1395](https://github.com/nlohmann/json/issues/1395)
-- Big file parsing [\#1393](https://github.com/nlohmann/json/issues/1393)
-- Adding Structured Binding Support [\#1388](https://github.com/nlohmann/json/issues/1388)
-- map\ exhibits unexpected behavior [\#1387](https://github.com/nlohmann/json/issues/1387)
-- Error Code Return [\#1386](https://github.com/nlohmann/json/issues/1386)
-- using unordered\_map as object type [\#1385](https://github.com/nlohmann/json/issues/1385)
-- float precision [\#1384](https://github.com/nlohmann/json/issues/1384)
-- \[json.exception.type\_error.316\] invalid UTF-8 byte at index 1: 0xC3 [\#1383](https://github.com/nlohmann/json/issues/1383)
-- Inconsistent Constructor \(GCC vs. Clang\) [\#1381](https://github.com/nlohmann/json/issues/1381)
-- \#define or || [\#1379](https://github.com/nlohmann/json/issues/1379)
-- How to iterate inside the values ? [\#1377](https://github.com/nlohmann/json/issues/1377)
-- items\(\) unable to get the elements [\#1375](https://github.com/nlohmann/json/issues/1375)
-- conversion json to std::map doesn't work for types \ [\#1372](https://github.com/nlohmann/json/issues/1372)
-- A minor issue in the build instructions [\#1371](https://github.com/nlohmann/json/issues/1371)
-- Using this library without stream ? [\#1370](https://github.com/nlohmann/json/issues/1370)
-- Writing and reading BSON data [\#1368](https://github.com/nlohmann/json/issues/1368)
-- Retrieving array elements from object type iterator. [\#1367](https://github.com/nlohmann/json/issues/1367)
-- json::dump\(\) silently crashes if items contain accented letters [\#1365](https://github.com/nlohmann/json/issues/1365)
-- warnings in MSVC \(2015\) in 3.4.0 related to bool... [\#1364](https://github.com/nlohmann/json/issues/1364)
-- Cant compile with -C++17 and beyond compiler options [\#1362](https://github.com/nlohmann/json/issues/1362)
-- json to concrete type conversion through reference or pointer fails [\#1361](https://github.com/nlohmann/json/issues/1361)
-- the first attributes of JSON string is misplaced [\#1360](https://github.com/nlohmann/json/issues/1360)
-- Copy-construct using initializer-list converts objects to arrays [\#1359](https://github.com/nlohmann/json/issues/1359)
-- About value\(key, default\_value\) and operator\[\]\(key\) [\#1358](https://github.com/nlohmann/json/issues/1358)
-- Problem with printing json response object [\#1356](https://github.com/nlohmann/json/issues/1356)
-- Serializing pointer segfaults [\#1355](https://github.com/nlohmann/json/issues/1355)
-- Read `long long int` data as a number. [\#1354](https://github.com/nlohmann/json/issues/1354)
-- eclipse oxygen in ubuntu get\ is ambiguous [\#1353](https://github.com/nlohmann/json/issues/1353)
-- Can't build on Visual Studio 2017 v15.8.9 [\#1350](https://github.com/nlohmann/json/issues/1350)
-- cannot parse from string? [\#1349](https://github.com/nlohmann/json/issues/1349)
-- Error: out\_of\_range [\#1348](https://github.com/nlohmann/json/issues/1348)
-- expansion pattern 'CompatibleObjectType' contains no argument packs, with CUDA 10 [\#1347](https://github.com/nlohmann/json/issues/1347)
-- Unable to update a value for a nested\(multi-level\) json file [\#1344](https://github.com/nlohmann/json/issues/1344)
-- Fails to compile when std::iterator\_traits is not SFINAE friendly. [\#1341](https://github.com/nlohmann/json/issues/1341)
-- EOF flag not set on exhausted input streams. [\#1340](https://github.com/nlohmann/json/issues/1340)
-- Shadowed Member in merge\_patch [\#1339](https://github.com/nlohmann/json/issues/1339)
-- Periods/literal dots in keys? [\#1338](https://github.com/nlohmann/json/issues/1338)
-- Protect macro expansion of commonly defined macros [\#1337](https://github.com/nlohmann/json/issues/1337)
-- How to validate an input before parsing? [\#1336](https://github.com/nlohmann/json/issues/1336)
-- Non-verifying dump\(\) alternative for debugging/logging needed [\#1335](https://github.com/nlohmann/json/issues/1335)
-- Json Libarary is not responding for me in c++ [\#1332](https://github.com/nlohmann/json/issues/1332)
-- Question - how to find an object in an array [\#1331](https://github.com/nlohmann/json/issues/1331)
-- Nesting additional data in json object [\#1328](https://github.com/nlohmann/json/issues/1328)
-- can to\_json\(\) be defined inside a class? [\#1324](https://github.com/nlohmann/json/issues/1324)
-- CodeBlocks IDE can't find `json.hpp` header [\#1318](https://github.com/nlohmann/json/issues/1318)
-- Change json\_pointer to provide an iterator begin/end/etc, don't use vectors, and also enable string\_view [\#1312](https://github.com/nlohmann/json/issues/1312)
-- Xcode - adding it to library [\#1300](https://github.com/nlohmann/json/issues/1300)
-- unicode: accept char16\_t, char32\_t sequences [\#1298](https://github.com/nlohmann/json/issues/1298)
-- unicode: char16\_t\* is compiler error, but char16\_t\[\] is accepted [\#1297](https://github.com/nlohmann/json/issues/1297)
-- Dockerfile Project Help Needed [\#1296](https://github.com/nlohmann/json/issues/1296)
-- Comparisons between large unsigned and negative signed integers [\#1295](https://github.com/nlohmann/json/issues/1295)
-- CMake alias to `nlohmann::json` [\#1291](https://github.com/nlohmann/json/issues/1291)
-- Release zips without tests [\#1285](https://github.com/nlohmann/json/issues/1285)
-- separate object\_t::key\_type from basic\_json::key\_type, and use an allocator which returns object\_t::key\_type [\#1274](https://github.com/nlohmann/json/issues/1274)
-- Is there a nice way to associate external values with json elements? [\#1256](https://github.com/nlohmann/json/issues/1256)
-- Delete by json\_pointer [\#1248](https://github.com/nlohmann/json/issues/1248)
-- Expose lexer, as a StAX parser [\#1219](https://github.com/nlohmann/json/issues/1219)
-- Subclassing json\(\) & error on recursive load [\#1201](https://github.com/nlohmann/json/issues/1201)
-- Check value for existence by json\_pointer [\#1194](https://github.com/nlohmann/json/issues/1194)
-
-- Feature/add file input adapter [\#1392](https://github.com/nlohmann/json/pull/1392) ([dumarjo](https://github.com/dumarjo))
-- Added Support for Structured Bindings [\#1391](https://github.com/nlohmann/json/pull/1391) ([pratikpc](https://github.com/pratikpc))
-- Link to issue \#958 broken [\#1382](https://github.com/nlohmann/json/pull/1382) ([kjpus](https://github.com/kjpus))
-- readme: fix typo [\#1380](https://github.com/nlohmann/json/pull/1380) ([manu-chroma](https://github.com/manu-chroma))
-- recommend using explicit from JSON conversions [\#1363](https://github.com/nlohmann/json/pull/1363) ([theodelrieu](https://github.com/theodelrieu))
-- Fix merge\_patch shadow warning [\#1346](https://github.com/nlohmann/json/pull/1346) ([ax3l](https://github.com/ax3l))
-- Allow installation via Meson [\#1345](https://github.com/nlohmann/json/pull/1345) ([mpoquet](https://github.com/mpoquet))
-- Set eofbit on exhausted input stream. [\#1343](https://github.com/nlohmann/json/pull/1343) ([mefyl](https://github.com/mefyl))
-- Add a SFINAE friendly iterator\_traits and use that instead. [\#1342](https://github.com/nlohmann/json/pull/1342) ([dgavedissian](https://github.com/dgavedissian))
-- Fix EOL Whitespaces & CMake Spelling [\#1329](https://github.com/nlohmann/json/pull/1329) ([ax3l](https://github.com/ax3l))
-
-## [v3.4.0](https://github.com/nlohmann/json/releases/tag/v3.4.0) (2018-10-30)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.3.0...v3.4.0)
-
-- Big uint64\_t values are serialized wrong [\#1327](https://github.com/nlohmann/json/issues/1327)
-- \[Question\] Efficient check for equivalency? [\#1325](https://github.com/nlohmann/json/issues/1325)
-- Can't use ifstream and .clear\(\) [\#1321](https://github.com/nlohmann/json/issues/1321)
-- \[Warning\] -Wparentheses on line 555 on single\_include [\#1319](https://github.com/nlohmann/json/issues/1319)
-- Compilation error using at and find with enum struct [\#1316](https://github.com/nlohmann/json/issues/1316)
-- Parsing JSON from a web address [\#1311](https://github.com/nlohmann/json/issues/1311)
-- How to convert JSON to Struct with embeded subject [\#1310](https://github.com/nlohmann/json/issues/1310)
-- Null safety/coalescing function? [\#1309](https://github.com/nlohmann/json/issues/1309)
-- Building fails using single include file: json.hpp [\#1308](https://github.com/nlohmann/json/issues/1308)
-- json::parse\(std::string\) Exception inside packaged Lib [\#1306](https://github.com/nlohmann/json/issues/1306)
-- Problem in Dockerfile with installation of library [\#1304](https://github.com/nlohmann/json/issues/1304)
-- compile error in from\_json converting to container with std::pair [\#1299](https://github.com/nlohmann/json/issues/1299)
-- Json that I am trying to parse, and I am lost Structure Array below top level [\#1293](https://github.com/nlohmann/json/issues/1293)
-- Serializing std::variant causes stack overflow [\#1292](https://github.com/nlohmann/json/issues/1292)
-- How do I go about customising from\_json to support \_\_int128\_t/\_\_uint128\_t? [\#1290](https://github.com/nlohmann/json/issues/1290)
-- merge\_patch: inconsistent behaviour merging empty sub-object [\#1289](https://github.com/nlohmann/json/issues/1289)
-- Buffer over/underrun using UBJson? [\#1288](https://github.com/nlohmann/json/issues/1288)
-- Enable the latest C++ standard with Visual Studio [\#1287](https://github.com/nlohmann/json/issues/1287)
-- truncation of constant value in to\_cbor\(\) [\#1286](https://github.com/nlohmann/json/issues/1286)
-- eosio.wasmsdk error [\#1284](https://github.com/nlohmann/json/issues/1284)
-- use the same interface for writing arrays and non-arrays [\#1283](https://github.com/nlohmann/json/issues/1283)
-- How to read json file with optional entries and entries with different types [\#1281](https://github.com/nlohmann/json/issues/1281)
-- merge result not as espected [\#1279](https://github.com/nlohmann/json/issues/1279)
-- how to get only "name" from below json [\#1278](https://github.com/nlohmann/json/issues/1278)
-- syntax error on right json string [\#1276](https://github.com/nlohmann/json/issues/1276)
-- Parsing JSON Array where members have no key, using custom types [\#1267](https://github.com/nlohmann/json/issues/1267)
-- I get a json exception periodically from json::parse for the same json [\#1263](https://github.com/nlohmann/json/issues/1263)
-- GCC 8.2.1. Compilation error: invalid conversion from... [\#1246](https://github.com/nlohmann/json/issues/1246)
-- BSON support [\#1244](https://github.com/nlohmann/json/issues/1244)
-- enum to json mapping [\#1208](https://github.com/nlohmann/json/issues/1208)
-- Soften the landing when dumping non-UTF8 strings \(type\_error.316 exception\) [\#1198](https://github.com/nlohmann/json/issues/1198)
-
-- Add macro to define enum/JSON mapping [\#1323](https://github.com/nlohmann/json/pull/1323) ([nlohmann](https://github.com/nlohmann))
-- Add BSON support [\#1320](https://github.com/nlohmann/json/pull/1320) ([nlohmann](https://github.com/nlohmann))
-- Properly convert constants to CharType [\#1315](https://github.com/nlohmann/json/pull/1315) ([nlohmann](https://github.com/nlohmann))
-- Allow to set error handler for decoding errors [\#1314](https://github.com/nlohmann/json/pull/1314) ([nlohmann](https://github.com/nlohmann))
-- Add Meson related info to README [\#1305](https://github.com/nlohmann/json/pull/1305) ([koponomarenko](https://github.com/koponomarenko))
-- Improve diagnostic messages for binary formats [\#1303](https://github.com/nlohmann/json/pull/1303) ([nlohmann](https://github.com/nlohmann))
-- add new is\_constructible\_\* traits used in from\_json [\#1301](https://github.com/nlohmann/json/pull/1301) ([theodelrieu](https://github.com/theodelrieu))
-- add constraints for variadic json\_ref constructors [\#1294](https://github.com/nlohmann/json/pull/1294) ([theodelrieu](https://github.com/theodelrieu))
-- Improve diagnostic messages [\#1282](https://github.com/nlohmann/json/pull/1282) ([nlohmann](https://github.com/nlohmann))
-- Removed linter warnings [\#1280](https://github.com/nlohmann/json/pull/1280) ([nlohmann](https://github.com/nlohmann))
-- Thirdparty benchmark: Fix Clang detection. [\#1277](https://github.com/nlohmann/json/pull/1277) ([Lord-Kamina](https://github.com/Lord-Kamina))
-
-## [v3.3.0](https://github.com/nlohmann/json/releases/tag/v3.3.0) (2018-10-05)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/3.3.0...v3.3.0)
-
-## [3.3.0](https://github.com/nlohmann/json/releases/tag/3.3.0) (2018-10-05)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.2.0...3.3.0)
-
-- When key is not found print the key name into error too [\#1273](https://github.com/nlohmann/json/issues/1273)
-- Visual Studio 2017 15.8.5 "conditional expression is constant" warning on Line 1851 in json.hpp [\#1268](https://github.com/nlohmann/json/issues/1268)
-- how can we get this working on WSL? [\#1264](https://github.com/nlohmann/json/issues/1264)
-- Help needed [\#1259](https://github.com/nlohmann/json/issues/1259)
-- A way to get to a JSON values "key" [\#1258](https://github.com/nlohmann/json/issues/1258)
-- While compiling got 76 errors [\#1255](https://github.com/nlohmann/json/issues/1255)
-- Two blackslashes on json output file [\#1253](https://github.com/nlohmann/json/issues/1253)
-- Including nlohmann the badwrong way. [\#1250](https://github.com/nlohmann/json/issues/1250)
-- how to build with clang? [\#1247](https://github.com/nlohmann/json/issues/1247)
-- Cmake target\_link\_libraries unable to find nlohmann\_json since version 3.2.0 [\#1243](https://github.com/nlohmann/json/issues/1243)
-- \[Question\] Access to end\(\) iterator reference [\#1242](https://github.com/nlohmann/json/issues/1242)
-- Parsing different json format [\#1241](https://github.com/nlohmann/json/issues/1241)
-- Parsing Multiple JSON Files [\#1240](https://github.com/nlohmann/json/issues/1240)
-- Doesn't compile under C++17 [\#1239](https://github.com/nlohmann/json/issues/1239)
-- Conversion operator for nlohmann::json is not SFINAE friendly [\#1237](https://github.com/nlohmann/json/issues/1237)
-- Custom deserialization of number\_float\_t [\#1236](https://github.com/nlohmann/json/issues/1236)
-- deprecated-declarations warnings when compiling tests with GCC 8.2.1. [\#1233](https://github.com/nlohmann/json/issues/1233)
-- Incomplete type with json\_fwd.hpp [\#1232](https://github.com/nlohmann/json/issues/1232)
-- Parse Error [\#1229](https://github.com/nlohmann/json/issues/1229)
-- json::get function with argument [\#1227](https://github.com/nlohmann/json/issues/1227)
-- questions regarding from\_json [\#1226](https://github.com/nlohmann/json/issues/1226)
-- Lambda in unevaluated context [\#1225](https://github.com/nlohmann/json/issues/1225)
-- NLohmann doesn't compile when enabling strict warning policies [\#1224](https://github.com/nlohmann/json/issues/1224)
-- Creating array of objects [\#1223](https://github.com/nlohmann/json/issues/1223)
-- Somewhat unhelpful error message "cannot use operator\[\] with object" [\#1220](https://github.com/nlohmann/json/issues/1220)
-- single\_include json.hpp [\#1218](https://github.com/nlohmann/json/issues/1218)
-- Maps with enum class keys which are convertible to JSON strings should be converted to JSON dictionaries [\#1217](https://github.com/nlohmann/json/issues/1217)
-- Adding JSON Array to the Array [\#1216](https://github.com/nlohmann/json/issues/1216)
-- Best way to output a vector of a given type to json [\#1215](https://github.com/nlohmann/json/issues/1215)
-- compiler warning: double definition of macro JSON\_INTERNAL\_CATCH [\#1213](https://github.com/nlohmann/json/issues/1213)
-- Compilation error when using MOCK\_METHOD1 from GMock and nlohmann::json [\#1212](https://github.com/nlohmann/json/issues/1212)
-- Issues parsing a previously encoded binary \(non-UTF8\) string. [\#1211](https://github.com/nlohmann/json/issues/1211)
-- Yet another ordering question: char \* and parse\(\) [\#1209](https://github.com/nlohmann/json/issues/1209)
-- Error using gcc 8.1.0 on Ubuntu 14.04 [\#1207](https://github.com/nlohmann/json/issues/1207)
-- "type must be string, but is " std::string\(j.type\_name\(\) [\#1206](https://github.com/nlohmann/json/issues/1206)
-- Returning empty json object from a function of type const json& ? [\#1205](https://github.com/nlohmann/json/issues/1205)
-- VS2017 compiler suggests using constexpr if [\#1204](https://github.com/nlohmann/json/issues/1204)
-- Template instatiation error on compiling [\#1203](https://github.com/nlohmann/json/issues/1203)
-- BUG - json dump field with unicode -\> array of ints \(instead of string\) [\#1197](https://github.com/nlohmann/json/issues/1197)
-- Compile error using Code::Blocks // mingw-w64 GCC 8.1.0 - "Incomplete Type" [\#1193](https://github.com/nlohmann/json/issues/1193)
-- SEGFAULT on arm target [\#1190](https://github.com/nlohmann/json/issues/1190)
-- Compiler crash with old Clang [\#1179](https://github.com/nlohmann/json/issues/1179)
-- Custom Precision on floating point numbers [\#1170](https://github.com/nlohmann/json/issues/1170)
-- Can we have a json\_view class like std::string\_view? [\#1158](https://github.com/nlohmann/json/issues/1158)
-- improve error handling [\#1152](https://github.com/nlohmann/json/issues/1152)
-- We should remove static\_asserts [\#960](https://github.com/nlohmann/json/issues/960)
-
-- Fix warning C4127: conditional expression is constant [\#1272](https://github.com/nlohmann/json/pull/1272) ([antonioborondo](https://github.com/antonioborondo))
-- Turn off additional deprecation warnings for GCC. [\#1271](https://github.com/nlohmann/json/pull/1271) ([chuckatkins](https://github.com/chuckatkins))
-- docs: Add additional CMake documentation [\#1270](https://github.com/nlohmann/json/pull/1270) ([chuckatkins](https://github.com/chuckatkins))
-- unit-testsuites.cpp: fix hangup if file not found [\#1262](https://github.com/nlohmann/json/pull/1262) ([knilch0r](https://github.com/knilch0r))
-- Fix broken cmake imported target alias [\#1260](https://github.com/nlohmann/json/pull/1260) ([chuckatkins](https://github.com/chuckatkins))
-- GCC 48 [\#1257](https://github.com/nlohmann/json/pull/1257) ([henryiii](https://github.com/henryiii))
-- Add version and license to meson.build [\#1252](https://github.com/nlohmann/json/pull/1252) ([koponomarenko](https://github.com/koponomarenko))
-- \#1179 Reordered the code. It seems to stop clang 3.4.2 in RHEL 7 from crash… [\#1249](https://github.com/nlohmann/json/pull/1249) ([LEgregius](https://github.com/LEgregius))
-- Use a version check to provide backwards comatible CMake imported target names [\#1245](https://github.com/nlohmann/json/pull/1245) ([chuckatkins](https://github.com/chuckatkins))
-- Fix issue \#1237 [\#1238](https://github.com/nlohmann/json/pull/1238) ([theodelrieu](https://github.com/theodelrieu))
-- Add a get overload taking a parameter. [\#1231](https://github.com/nlohmann/json/pull/1231) ([theodelrieu](https://github.com/theodelrieu))
-- Move lambda out of unevaluated context [\#1230](https://github.com/nlohmann/json/pull/1230) ([mandreyel](https://github.com/mandreyel))
-- Remove static asserts [\#1228](https://github.com/nlohmann/json/pull/1228) ([theodelrieu](https://github.com/theodelrieu))
-- Better error 305 [\#1221](https://github.com/nlohmann/json/pull/1221) ([rivertam](https://github.com/rivertam))
-- Fix \#1213 [\#1214](https://github.com/nlohmann/json/pull/1214) ([simnalamburt](https://github.com/simnalamburt))
-- Export package to allow builds without installing [\#1202](https://github.com/nlohmann/json/pull/1202) ([dennisfischer](https://github.com/dennisfischer))
-
-## [v3.2.0](https://github.com/nlohmann/json/releases/tag/v3.2.0) (2018-08-20)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/3.2.0...v3.2.0)
-
-## [3.2.0](https://github.com/nlohmann/json/releases/tag/3.2.0) (2018-08-20)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.1.2...3.2.0)
-
-- Am I doing this wrong? Getting an empty string [\#1199](https://github.com/nlohmann/json/issues/1199)
-- Incompatible Pointer Type [\#1196](https://github.com/nlohmann/json/issues/1196)
-- json.exception.type\_error.316 [\#1195](https://github.com/nlohmann/json/issues/1195)
-- Strange warnings in Code::Blocks 17.12, GNU GCC [\#1192](https://github.com/nlohmann/json/issues/1192)
-- \[Question\] Current place in code to change floating point resolution [\#1191](https://github.com/nlohmann/json/issues/1191)
-- Add key name when throwing type error [\#1189](https://github.com/nlohmann/json/issues/1189)
-- Not able to include in visual studio code? [\#1188](https://github.com/nlohmann/json/issues/1188)
-- Get an Index or row number of an element [\#1186](https://github.com/nlohmann/json/issues/1186)
-- Difference between `merge_patch` and `update` [\#1183](https://github.com/nlohmann/json/issues/1183)
-- Is there a way to get an element from a JSON without throwing an exception on failure? [\#1182](https://github.com/nlohmann/json/issues/1182)
-- to\_string? [\#1181](https://github.com/nlohmann/json/issues/1181)
-- How to cache a json object's pointer into a map? [\#1180](https://github.com/nlohmann/json/issues/1180)
-- Can this library work within a Qt project for Android using Qt Creator? [\#1178](https://github.com/nlohmann/json/issues/1178)
-- How to get all keys of one object? [\#1177](https://github.com/nlohmann/json/issues/1177)
-- How can I only parse the first level and get the value as string? [\#1175](https://github.com/nlohmann/json/issues/1175)
-- I have a query regarding nlohmann::basic\_json::basic\_json [\#1174](https://github.com/nlohmann/json/issues/1174)
-- unordered\_map with vectors won't convert to json? [\#1173](https://github.com/nlohmann/json/issues/1173)
-- return json objects from functions [\#1172](https://github.com/nlohmann/json/issues/1172)
-- Problem when exporting to CBOR [\#1171](https://github.com/nlohmann/json/issues/1171)
-- Roundtripping null to nullptr does not work [\#1169](https://github.com/nlohmann/json/issues/1169)
-- MSVC fails to compile std::swap specialization for nlohmann::json [\#1168](https://github.com/nlohmann/json/issues/1168)
-- Unexpected behaviour of is\_null - Part II [\#1167](https://github.com/nlohmann/json/issues/1167)
-- Floating point imprecision [\#1166](https://github.com/nlohmann/json/issues/1166)
-- Combine json objects into one? [\#1165](https://github.com/nlohmann/json/issues/1165)
-- Is there any way to know if the object has changed? [\#1164](https://github.com/nlohmann/json/issues/1164)
-- Value throws on null string [\#1163](https://github.com/nlohmann/json/issues/1163)
-- Weird template issue in large project [\#1162](https://github.com/nlohmann/json/issues/1162)
-- \_json returns a different result vs ::parse [\#1161](https://github.com/nlohmann/json/issues/1161)
-- Showing difference between two json objects [\#1160](https://github.com/nlohmann/json/issues/1160)
-- no instance of overloaded function "std::swap" matches the specified type [\#1159](https://github.com/nlohmann/json/issues/1159)
-- resize\(...\)? [\#1157](https://github.com/nlohmann/json/issues/1157)
-- Issue with struct nested in class' to\_json [\#1155](https://github.com/nlohmann/json/issues/1155)
-- Deserialize std::map with std::nan [\#1154](https://github.com/nlohmann/json/issues/1154)
-- Parse throwing errors [\#1149](https://github.com/nlohmann/json/issues/1149)
-- cocoapod integration [\#1148](https://github.com/nlohmann/json/issues/1148)
-- wstring parsing [\#1147](https://github.com/nlohmann/json/issues/1147)
-- Is it possible to dump a two-dimensional array to "\[\[null\],\[1,2,3\]\]"? [\#1146](https://github.com/nlohmann/json/issues/1146)
-- Want to write a class member variable and a struct variable \( this structure is inside the class\) to the json file [\#1145](https://github.com/nlohmann/json/issues/1145)
-- Does json support converting an instance of a struct into json string? [\#1143](https://github.com/nlohmann/json/issues/1143)
-- \#Most efficient way to search for child parameters \(recursive find?\) [\#1141](https://github.com/nlohmann/json/issues/1141)
-- could not find to\_json\(\) method in T's namespace [\#1140](https://github.com/nlohmann/json/issues/1140)
-- chars get treated as JSON numbers not JSON strings [\#1139](https://github.com/nlohmann/json/issues/1139)
-- How do I count number of objects in array? [\#1137](https://github.com/nlohmann/json/issues/1137)
-- Serializing a vector of classes? [\#1136](https://github.com/nlohmann/json/issues/1136)
-- Compile error. Unable convert form nullptr to nullptr&& [\#1135](https://github.com/nlohmann/json/issues/1135)
-- std::unordered\_map in struct, serialization [\#1133](https://github.com/nlohmann/json/issues/1133)
-- dump\(\) can't handle umlauts [\#1131](https://github.com/nlohmann/json/issues/1131)
-- Add a way to get a key reference from the iterator [\#1127](https://github.com/nlohmann/json/issues/1127)
-- can't not parse "\\“ string [\#1123](https://github.com/nlohmann/json/issues/1123)
-- if json file contain Internationalization chars , get exception [\#1122](https://github.com/nlohmann/json/issues/1122)
-- How to use a json::iterator dereferenced value in code? [\#1120](https://github.com/nlohmann/json/issues/1120)
-- Disable implicit conversions from json to std::initializer\_list\ for any T [\#1118](https://github.com/nlohmann/json/issues/1118)
-- Implicit conversions to complex types can lead to surprising and confusing errors [\#1116](https://github.com/nlohmann/json/issues/1116)
-- How can I write from\_json for a complex datatype that is not default constructible? [\#1115](https://github.com/nlohmann/json/issues/1115)
-- Compile error in VS2015 when compiling unit-conversions.cpp [\#1114](https://github.com/nlohmann/json/issues/1114)
-- ADL Serializer for std::any / boost::any [\#1113](https://github.com/nlohmann/json/issues/1113)
-- Unexpected behaviour of is\_null [\#1112](https://github.com/nlohmann/json/issues/1112)
-- How to resolve " undefined reference to `std::\_\_throw\_bad\_cast\(\)'" [\#1111](https://github.com/nlohmann/json/issues/1111)
-- cannot compile on ubuntu 18.04 and 16.04 [\#1110](https://github.com/nlohmann/json/issues/1110)
-- JSON representation for floating point values has too many digits [\#1109](https://github.com/nlohmann/json/issues/1109)
-- Not working for classes containing "\_declspec\(dllimport\)" in their declaration [\#1108](https://github.com/nlohmann/json/issues/1108)
-- Get keys from json object [\#1107](https://github.com/nlohmann/json/issues/1107)
-- Cannot deserialize types using std::ratio [\#1105](https://github.com/nlohmann/json/issues/1105)
-- i want to learn json [\#1104](https://github.com/nlohmann/json/issues/1104)
-- Type checking during compile [\#1103](https://github.com/nlohmann/json/issues/1103)
-- Iterate through sub items [\#1102](https://github.com/nlohmann/json/issues/1102)
-- cppcheck failing for version 3.1.2 [\#1101](https://github.com/nlohmann/json/issues/1101)
-- Deserializing std::map [\#1100](https://github.com/nlohmann/json/issues/1100)
-- accessing key by reference [\#1098](https://github.com/nlohmann/json/issues/1098)
-- clang 3.8.0 croaks while trying to compile with debug symbols [\#1097](https://github.com/nlohmann/json/issues/1097)
-- Serialize a list of class objects with json [\#1096](https://github.com/nlohmann/json/issues/1096)
-- Small question [\#1094](https://github.com/nlohmann/json/issues/1094)
-- Upgrading to 3.x: to\_/from\_json with enum class [\#1093](https://github.com/nlohmann/json/issues/1093)
-- Q: few questions about json construction [\#1092](https://github.com/nlohmann/json/issues/1092)
-- general crayCC compilation failure [\#1091](https://github.com/nlohmann/json/issues/1091)
-- Merge Patch clears original data [\#1090](https://github.com/nlohmann/json/issues/1090)
-- \[Question\] how to use nlohmann/json in c++? [\#1088](https://github.com/nlohmann/json/issues/1088)
-- C++17 decomposition declaration support [\#1087](https://github.com/nlohmann/json/issues/1087)
-- \[Question\] Access multi-level json objects [\#1086](https://github.com/nlohmann/json/issues/1086)
-- Serializing vector [\#1085](https://github.com/nlohmann/json/issues/1085)
-- update nested value in multi hierarchy json object [\#1084](https://github.com/nlohmann/json/issues/1084)
-- Overriding default values? [\#1083](https://github.com/nlohmann/json/issues/1083)
-- detail namespace collision with Cereal? [\#1082](https://github.com/nlohmann/json/issues/1082)
-- Error using json.dump\(\); [\#1081](https://github.com/nlohmann/json/issues/1081)
-- Consuming TCP Stream [\#1080](https://github.com/nlohmann/json/issues/1080)
-- Compilation error with strong typed enums in map in combination with namespaces [\#1079](https://github.com/nlohmann/json/issues/1079)
-- cassert error [\#1076](https://github.com/nlohmann/json/issues/1076)
-- Valid json data not being parsed [\#1075](https://github.com/nlohmann/json/issues/1075)
-- Feature request :: Better testing for key existance without try/catch [\#1074](https://github.com/nlohmann/json/issues/1074)
-- Hi, I have input like a.b.c and want to convert it to \"a\"{\"b\": \"c\"} form. Any suggestions how do I do this? Thanks. [\#1073](https://github.com/nlohmann/json/issues/1073)
-- ADL deserializer not picked up for non default-constructible type [\#1072](https://github.com/nlohmann/json/issues/1072)
-- Deserializing std::array doesn't compiler \(no insert\(\)\) [\#1071](https://github.com/nlohmann/json/issues/1071)
-- Serializing OpenCV Mat problem [\#1070](https://github.com/nlohmann/json/issues/1070)
-- Compilation error with ICPC compiler [\#1068](https://github.com/nlohmann/json/issues/1068)
-- Not existing value, crash [\#1065](https://github.com/nlohmann/json/issues/1065)
-- cyryllic symbols [\#1064](https://github.com/nlohmann/json/issues/1064)
-- newbie usage question [\#1063](https://github.com/nlohmann/json/issues/1063)
-- Trying j\["strTest"\] = "%A" produces "strTest": "-0X1.CCCCCCCCCCCCCP+205" [\#1062](https://github.com/nlohmann/json/issues/1062)
-- convert json value to std::string??? [\#1061](https://github.com/nlohmann/json/issues/1061)
-- Commented out test cases, should they be removed? [\#1060](https://github.com/nlohmann/json/issues/1060)
-- different behaviour between clang and gcc with braced initialization [\#1059](https://github.com/nlohmann/json/issues/1059)
-- json array: initialize with prescribed size and `resize` method. [\#1057](https://github.com/nlohmann/json/issues/1057)
-- Is it possible to use exceptions istead of assertions? [\#1056](https://github.com/nlohmann/json/issues/1056)
-- when using assign operator in with json object a static assertion fails.. [\#1055](https://github.com/nlohmann/json/issues/1055)
-- Iterate over leafs of a JSON data structure: enrich the JSON pointer API [\#1054](https://github.com/nlohmann/json/issues/1054)
-- \[Feature request\] Access by path [\#1053](https://github.com/nlohmann/json/issues/1053)
-- document that implicit js -\> primitive conversion does not work for std::string::value\_type and why [\#1052](https://github.com/nlohmann/json/issues/1052)
-- error: ‘BasicJsonType’ in namespace ‘::’ does not name a type [\#1051](https://github.com/nlohmann/json/issues/1051)
-- Destructor is called when filling object through assignement [\#1050](https://github.com/nlohmann/json/issues/1050)
-- Is this thing thread safe for reads? [\#1049](https://github.com/nlohmann/json/issues/1049)
-- clang-tidy: Call to virtual function during construction [\#1046](https://github.com/nlohmann/json/issues/1046)
-- Using STL algorithms with JSON containers with expected results? [\#1045](https://github.com/nlohmann/json/issues/1045)
-- Usage with gtest/gmock not working as expected [\#1044](https://github.com/nlohmann/json/issues/1044)
-- Consequences of from\_json / to\_json being in namespace of data struct. [\#1042](https://github.com/nlohmann/json/issues/1042)
-- const\_reference operator\[\]\(const typename object\_t::key\_type& key\) const throw instead of assert [\#1039](https://github.com/nlohmann/json/issues/1039)
-- Trying to retrieve data from nested objects [\#1038](https://github.com/nlohmann/json/issues/1038)
-- Direct download link for json\_fwd.hpp? [\#1037](https://github.com/nlohmann/json/issues/1037)
-- I know the library supports UTF-8, but failed to dump the value [\#1036](https://github.com/nlohmann/json/issues/1036)
-- Putting a Vec3-like vector into a json object [\#1035](https://github.com/nlohmann/json/issues/1035)
-- Ternary operator crash [\#1034](https://github.com/nlohmann/json/issues/1034)
-- Issued with Clion Inspection Resolution since 2018.1 [\#1033](https://github.com/nlohmann/json/issues/1033)
-- Some testcases fail and one never finishes [\#1032](https://github.com/nlohmann/json/issues/1032)
-- Can this class work with wchar\_t / std::wstring? [\#1031](https://github.com/nlohmann/json/issues/1031)
-- Makefile: Valgrind flags have no effect [\#1030](https://github.com/nlohmann/json/issues/1030)
-- 「==」 Should be 「\>」 [\#1029](https://github.com/nlohmann/json/issues/1029)
-- HOCON reader? [\#1027](https://github.com/nlohmann/json/issues/1027)
-- add json string in previous string?? [\#1025](https://github.com/nlohmann/json/issues/1025)
-- RFC: fluent parsing interface [\#1023](https://github.com/nlohmann/json/issues/1023)
-- Does it support chinese character? [\#1022](https://github.com/nlohmann/json/issues/1022)
-- to/from\_msgpack only works with standard typization [\#1021](https://github.com/nlohmann/json/issues/1021)
-- Build failure using latest clang and GCC compilers [\#1020](https://github.com/nlohmann/json/issues/1020)
-- can two json objects be concatenated? [\#1019](https://github.com/nlohmann/json/issues/1019)
-- Erase by integer index [\#1018](https://github.com/nlohmann/json/issues/1018)
-- Function find overload taking a json\_pointer [\#1017](https://github.com/nlohmann/json/issues/1017)
-- I think should implement an parser function [\#1016](https://github.com/nlohmann/json/issues/1016)
-- Readme gif [\#1015](https://github.com/nlohmann/json/issues/1015)
-- Python bindings [\#1014](https://github.com/nlohmann/json/issues/1014)
-- how to add two json string in single object?? [\#1012](https://github.com/nlohmann/json/issues/1012)
-- how to serialize class Object \(convert data in object into json\)?? [\#1011](https://github.com/nlohmann/json/issues/1011)
-- Enable forward declaration of json by making json a class instead of a using declaration [\#997](https://github.com/nlohmann/json/issues/997)
-- compilation error while using intel c++ compiler 2018 [\#994](https://github.com/nlohmann/json/issues/994)
-- How to create a json variable? [\#990](https://github.com/nlohmann/json/issues/990)
-- istream \>\> json --- 1st character skipped in stream [\#976](https://github.com/nlohmann/json/issues/976)
-- Add a SAX parser [\#971](https://github.com/nlohmann/json/issues/971)
-- How to solve large json file? [\#927](https://github.com/nlohmann/json/issues/927)
-- json\_pointer public push\_back, pop\_back [\#837](https://github.com/nlohmann/json/issues/837)
-- Using input\_adapter in a slightly unexpected way [\#834](https://github.com/nlohmann/json/issues/834)
-
-- Fix -Wno-sometimes-uninitialized by initializing "result" in parse\_sax [\#1200](https://github.com/nlohmann/json/pull/1200) ([thyu](https://github.com/thyu))
-- \[RFC\] Introduce a new macro function: JSON\_INTERNAL\_CATCH [\#1187](https://github.com/nlohmann/json/pull/1187) ([simnalamburt](https://github.com/simnalamburt))
-- Fix unit tests that were silently skipped or crashed \(depending on the compiler\) [\#1176](https://github.com/nlohmann/json/pull/1176) ([grembo](https://github.com/grembo))
-- Refactor/no virtual sax [\#1153](https://github.com/nlohmann/json/pull/1153) ([theodelrieu](https://github.com/theodelrieu))
-- Fixed compiler error in VS 2015 for debug mode [\#1151](https://github.com/nlohmann/json/pull/1151) ([sonulohani](https://github.com/sonulohani))
-- Fix links to cppreference named requirements \(formerly concepts\) [\#1144](https://github.com/nlohmann/json/pull/1144) ([jrakow](https://github.com/jrakow))
-- meson: fix include directory [\#1142](https://github.com/nlohmann/json/pull/1142) ([jrakow](https://github.com/jrakow))
-- Feature/unordered map conversion [\#1138](https://github.com/nlohmann/json/pull/1138) ([theodelrieu](https://github.com/theodelrieu))
-- fixed compile error for \#1045 [\#1134](https://github.com/nlohmann/json/pull/1134) ([Daniel599](https://github.com/Daniel599))
-- test \(non\)equality for alt\_string implementation [\#1130](https://github.com/nlohmann/json/pull/1130) ([agrianius](https://github.com/agrianius))
-- remove stringstream dependency [\#1117](https://github.com/nlohmann/json/pull/1117) ([TinyTinni](https://github.com/TinyTinni))
-- Provide a from\_json overload for std::map [\#1089](https://github.com/nlohmann/json/pull/1089) ([theodelrieu](https://github.com/theodelrieu))
-- fix typo in README [\#1078](https://github.com/nlohmann/json/pull/1078) ([martin-mfg](https://github.com/martin-mfg))
-- Fix typo [\#1058](https://github.com/nlohmann/json/pull/1058) ([dns13](https://github.com/dns13))
-- Misc cmake packaging enhancements [\#1048](https://github.com/nlohmann/json/pull/1048) ([chuckatkins](https://github.com/chuckatkins))
-- Fixed incorrect LLVM version number in README [\#1047](https://github.com/nlohmann/json/pull/1047) ([jammehcow](https://github.com/jammehcow))
-- Fix trivial typo in comment. [\#1043](https://github.com/nlohmann/json/pull/1043) ([coryan](https://github.com/coryan))
-- Package Manager: Spack [\#1041](https://github.com/nlohmann/json/pull/1041) ([ax3l](https://github.com/ax3l))
-- CMake: 3.8+ is Sufficient [\#1040](https://github.com/nlohmann/json/pull/1040) ([ax3l](https://github.com/ax3l))
-- Added support for string\_view in C++17 [\#1028](https://github.com/nlohmann/json/pull/1028) ([gracicot](https://github.com/gracicot))
-- Added public target\_compile\_features for auto and constexpr [\#1026](https://github.com/nlohmann/json/pull/1026) ([ktonon](https://github.com/ktonon))
-
-## [v3.1.2](https://github.com/nlohmann/json/releases/tag/v3.1.2) (2018-03-14)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/3.1.2...v3.1.2)
-
-## [3.1.2](https://github.com/nlohmann/json/releases/tag/3.1.2) (2018-03-14)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.1.1...3.1.2)
-
-- STL containers are always serialized to a nested array like \[\[1,2,3\]\] [\#1013](https://github.com/nlohmann/json/issues/1013)
-- The library doesn't want to insert an unordered\_map [\#1010](https://github.com/nlohmann/json/issues/1010)
-- Convert Json to uint8\_t [\#1008](https://github.com/nlohmann/json/issues/1008)
-- How to compare two JSON objects? [\#1007](https://github.com/nlohmann/json/issues/1007)
-- Syntax checking [\#1003](https://github.com/nlohmann/json/issues/1003)
-- more than one operator '=' matches these operands [\#1002](https://github.com/nlohmann/json/issues/1002)
-- How to check if key existed [\#1000](https://github.com/nlohmann/json/issues/1000)
-- nlohmann::json::parse exhaust memory in go binding [\#999](https://github.com/nlohmann/json/issues/999)
-- Range-based iteration over a non-array object [\#998](https://github.com/nlohmann/json/issues/998)
-- get\ for types that are not default constructible [\#996](https://github.com/nlohmann/json/issues/996)
-- Prevent Null values to appear in .dump\(\) [\#995](https://github.com/nlohmann/json/issues/995)
-- number parsing [\#993](https://github.com/nlohmann/json/issues/993)
-- C2664 \(C++/CLR\) cannot convert 'nullptr' to 'nullptr &&' [\#987](https://github.com/nlohmann/json/issues/987)
-- Uniform initialization from another json object differs between gcc and clang. [\#985](https://github.com/nlohmann/json/issues/985)
-- Problem with adding the lib as a submodule [\#983](https://github.com/nlohmann/json/issues/983)
-- UTF-8/Unicode error [\#982](https://github.com/nlohmann/json/issues/982)
-- "forcing MSVC stacktrace to show which T we're talking about." error [\#980](https://github.com/nlohmann/json/issues/980)
-- reverse order of serialization [\#979](https://github.com/nlohmann/json/issues/979)
-- Assigning between different json types [\#977](https://github.com/nlohmann/json/issues/977)
-- Support serialisation of `unique_ptr<>` and `shared_ptr<>` [\#975](https://github.com/nlohmann/json/issues/975)
-- Unexpected end of input \(not same as one before\) [\#974](https://github.com/nlohmann/json/issues/974)
-- Segfault on direct initializing json object [\#973](https://github.com/nlohmann/json/issues/973)
-- Segmentation fault on G++ when trying to assign json string literal to custom json type. [\#972](https://github.com/nlohmann/json/issues/972)
-- os\_defines.h:44:19: error: missing binary operator before token "\(" [\#970](https://github.com/nlohmann/json/issues/970)
-- Passing an iteration object by reference to a function [\#967](https://github.com/nlohmann/json/issues/967)
-- Json and fmt::lib's format\_arg\(\) [\#964](https://github.com/nlohmann/json/issues/964)
-
-- Allowing for user-defined string type in lexer/parser [\#1009](https://github.com/nlohmann/json/pull/1009) ([nlohmann](https://github.com/nlohmann))
-- dump to alternative string type, as defined in basic\_json template [\#1006](https://github.com/nlohmann/json/pull/1006) ([agrianius](https://github.com/agrianius))
-- Fix memory leak during parser callback [\#1001](https://github.com/nlohmann/json/pull/1001) ([nlohmann](https://github.com/nlohmann))
-- fixed misprinted condition detected by PVS Studio. [\#992](https://github.com/nlohmann/json/pull/992) ([bogemic](https://github.com/bogemic))
-- Fix/basic json conversion [\#986](https://github.com/nlohmann/json/pull/986) ([theodelrieu](https://github.com/theodelrieu))
-- Make integration section concise [\#981](https://github.com/nlohmann/json/pull/981) ([wla80](https://github.com/wla80))
-
-## [v3.1.1](https://github.com/nlohmann/json/releases/tag/v3.1.1) (2018-02-13)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.1.0...v3.1.1)
-
-- Updation of child object isn't reflected in parent Object [\#968](https://github.com/nlohmann/json/issues/968)
-- How to add user defined C++ path to sublime text [\#966](https://github.com/nlohmann/json/issues/966)
-- fast number parsing [\#965](https://github.com/nlohmann/json/issues/965)
-- With non-unique keys, later stored entries are not taken into account anymore [\#963](https://github.com/nlohmann/json/issues/963)
-- Timeout \(OSS-Fuzz 6034\) [\#962](https://github.com/nlohmann/json/issues/962)
-- Incorrect parsing of indefinite length CBOR strings. [\#961](https://github.com/nlohmann/json/issues/961)
-- Reload a json file at runtime without emptying my std::ifstream [\#959](https://github.com/nlohmann/json/issues/959)
-- Split headers should be part of the release [\#956](https://github.com/nlohmann/json/issues/956)
-- Coveralls shows no coverage data [\#953](https://github.com/nlohmann/json/issues/953)
-- Feature request: Implicit conversion to bool [\#951](https://github.com/nlohmann/json/issues/951)
-- converting json to vector of type with templated constructor [\#924](https://github.com/nlohmann/json/issues/924)
-- No structured bindings support? [\#901](https://github.com/nlohmann/json/issues/901)
-- \[Request\] Macro generating from\_json\(\) and to\_json\(\) [\#895](https://github.com/nlohmann/json/issues/895)
-- basic\_json::value throws exception instead of returning default value [\#871](https://github.com/nlohmann/json/issues/871)
-
-- Fix constraints on from\_json\(CompatibleArrayType\) [\#969](https://github.com/nlohmann/json/pull/969) ([theodelrieu](https://github.com/theodelrieu))
-- Make coveralls watch the include folder [\#957](https://github.com/nlohmann/json/pull/957) ([theodelrieu](https://github.com/theodelrieu))
-- Fix links in README.md [\#955](https://github.com/nlohmann/json/pull/955) ([patrikhuber](https://github.com/patrikhuber))
-- Add a note about installing the library with cget [\#954](https://github.com/nlohmann/json/pull/954) ([pfultz2](https://github.com/pfultz2))
-
-## [v3.1.0](https://github.com/nlohmann/json/releases/tag/v3.1.0) (2018-02-01)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/3.1.0...v3.1.0)
-
-## [3.1.0](https://github.com/nlohmann/json/releases/tag/3.1.0) (2018-02-01)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.0.1...3.1.0)
-
-- I have a proposal [\#949](https://github.com/nlohmann/json/issues/949)
-- VERSION define\(s\) [\#948](https://github.com/nlohmann/json/issues/948)
-- v3.0.1 compile error in icc 16.0.4 [\#947](https://github.com/nlohmann/json/issues/947)
-- Use in VS2017 15.5.5 [\#946](https://github.com/nlohmann/json/issues/946)
-- Process for reporting Security Bugs? [\#945](https://github.com/nlohmann/json/issues/945)
-- Please expose a NLOHMANN\_JSON\_VERSION macro [\#943](https://github.com/nlohmann/json/issues/943)
-- Change header include directory to nlohmann/json [\#942](https://github.com/nlohmann/json/issues/942)
-- string\_type in binary\_reader [\#941](https://github.com/nlohmann/json/issues/941)
-- compile error with clang 5.0 -std=c++1z and no string\_view [\#939](https://github.com/nlohmann/json/issues/939)
-- Allow overriding JSON\_THROW to something else than abort\(\) [\#938](https://github.com/nlohmann/json/issues/938)
-- Handle invalid string in Json file [\#937](https://github.com/nlohmann/json/issues/937)
-- Unused variable 'kMinExp' [\#935](https://github.com/nlohmann/json/issues/935)
-- yytext is already defined [\#933](https://github.com/nlohmann/json/issues/933)
-- Equality operator fails [\#931](https://github.com/nlohmann/json/issues/931)
-- use in visual studio 2015 [\#929](https://github.com/nlohmann/json/issues/929)
-- Relative includes of json\_fwd.hpp in detail/meta.hpp. \[Develop branch\] [\#928](https://github.com/nlohmann/json/issues/928)
-- GCC 7.x issue [\#926](https://github.com/nlohmann/json/issues/926)
-- json\_fwd.hpp not installed [\#923](https://github.com/nlohmann/json/issues/923)
-- Use Google Benchmarks [\#921](https://github.com/nlohmann/json/issues/921)
-- Move class json\_pointer to separate file [\#920](https://github.com/nlohmann/json/issues/920)
-- Unable to locate 'to\_json\(\)' and 'from\_json\(\)' methods in the same namespace [\#917](https://github.com/nlohmann/json/issues/917)
-- \[answered\]Read key1 from .value example [\#914](https://github.com/nlohmann/json/issues/914)
-- Don't use `define private public` in test files [\#913](https://github.com/nlohmann/json/issues/913)
-- value\(\) template argument type deduction [\#912](https://github.com/nlohmann/json/issues/912)
-- Installation path is incorrect [\#910](https://github.com/nlohmann/json/issues/910)
-- H [\#909](https://github.com/nlohmann/json/issues/909)
-- Build failure using clang 5 [\#908](https://github.com/nlohmann/json/issues/908)
-- Amalgate [\#907](https://github.com/nlohmann/json/issues/907)
-- Update documentation and tests wrt. split headers [\#906](https://github.com/nlohmann/json/issues/906)
-- Lib not working on ubuntu 16.04 [\#905](https://github.com/nlohmann/json/issues/905)
-- Problem when writing to file. [\#904](https://github.com/nlohmann/json/issues/904)
-- C2864 error when compiling with VS2015 and VS 2017 [\#903](https://github.com/nlohmann/json/issues/903)
-- \[json.exception.type\_error.304\] cannot use at\(\) with object [\#902](https://github.com/nlohmann/json/issues/902)
-- How do I forward nlohmann::json declaration? [\#899](https://github.com/nlohmann/json/issues/899)
-- How to effectively store binary data? [\#898](https://github.com/nlohmann/json/issues/898)
-- How to get the length of a JSON string without retrieving its std::string? [\#897](https://github.com/nlohmann/json/issues/897)
-- Regression Tests Failure using "ctest" [\#887](https://github.com/nlohmann/json/issues/887)
-- Discuss: add JSON Merge Patch \(RFC 7396\)? [\#877](https://github.com/nlohmann/json/issues/877)
-- Discuss: replace static "iterator\_wrapper" function with "items" member function [\#874](https://github.com/nlohmann/json/issues/874)
-- Make optional user-data available in from\_json [\#864](https://github.com/nlohmann/json/issues/864)
-- Casting to std::string not working in VS2015 [\#861](https://github.com/nlohmann/json/issues/861)
-- Sequential reading of JSON arrays [\#851](https://github.com/nlohmann/json/issues/851)
-- Idea: Handle Multimaps Better [\#816](https://github.com/nlohmann/json/issues/816)
-- Floating point rounding [\#777](https://github.com/nlohmann/json/issues/777)
-- Loss of precision when serializing \ [\#360](https://github.com/nlohmann/json/issues/360)
-
-- Templatize std::string in binary\_reader \#941 [\#950](https://github.com/nlohmann/json/pull/950) ([kaidokert](https://github.com/kaidokert))
-- fix cmake install directory \(for real this time\) [\#944](https://github.com/nlohmann/json/pull/944) ([theodelrieu](https://github.com/theodelrieu))
-- Allow overriding THROW/CATCH/TRY macros with no-exceptions \#938 [\#940](https://github.com/nlohmann/json/pull/940) ([kaidokert](https://github.com/kaidokert))
-- Removed compiler warning about unused variable 'kMinExp' [\#936](https://github.com/nlohmann/json/pull/936) ([zerodefect](https://github.com/zerodefect))
-- Fix a typo in README.md [\#930](https://github.com/nlohmann/json/pull/930) ([Pipeliner](https://github.com/Pipeliner))
-- Howto installation of json\_fwd.hpp \(fixes \#923\) [\#925](https://github.com/nlohmann/json/pull/925) ([zerodefect](https://github.com/zerodefect))
-- fix sfinae on basic\_json UDT constructor [\#919](https://github.com/nlohmann/json/pull/919) ([theodelrieu](https://github.com/theodelrieu))
-- Floating-point formatting [\#915](https://github.com/nlohmann/json/pull/915) ([abolz](https://github.com/abolz))
-- Fix/cmake install [\#911](https://github.com/nlohmann/json/pull/911) ([theodelrieu](https://github.com/theodelrieu))
-- fix link to the documentation of the emplace function [\#900](https://github.com/nlohmann/json/pull/900) ([Dobiasd](https://github.com/Dobiasd))
-- JSON Merge Patch \(RFC 7396\) [\#876](https://github.com/nlohmann/json/pull/876) ([nlohmann](https://github.com/nlohmann))
-- Refactor/split it [\#700](https://github.com/nlohmann/json/pull/700) ([theodelrieu](https://github.com/theodelrieu))
-
-## [v3.0.1](https://github.com/nlohmann/json/releases/tag/v3.0.1) (2017-12-29)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/3.0.1...v3.0.1)
-
-## [3.0.1](https://github.com/nlohmann/json/releases/tag/3.0.1) (2017-12-29)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v3.0.0...3.0.1)
-
-- Problem parsing array to global vector [\#896](https://github.com/nlohmann/json/issues/896)
-- Invalid RFC6902 copy operation succeeds [\#894](https://github.com/nlohmann/json/issues/894)
-- How to rename a key during looping? [\#893](https://github.com/nlohmann/json/issues/893)
-- clang++-6.0 \(6.0.0-svn321357-1\) warning [\#892](https://github.com/nlohmann/json/issues/892)
-- Make json.hpp aware of the modules TS? [\#891](https://github.com/nlohmann/json/issues/891)
-- All enum values not handled in switch cases. \( -Wswitch-enum \) [\#889](https://github.com/nlohmann/json/issues/889)
-- JSON Pointer resolve failure resulting in incorrect exception code [\#888](https://github.com/nlohmann/json/issues/888)
-- Unexpected nested arrays from std::vector [\#886](https://github.com/nlohmann/json/issues/886)
-- erase multiple elements from a json object [\#884](https://github.com/nlohmann/json/issues/884)
-- Container function overview in Doxygen is not updated [\#883](https://github.com/nlohmann/json/issues/883)
-- How to use this for binary file uploads [\#881](https://github.com/nlohmann/json/issues/881)
-- Allow setting JSON\_BuildTests=OFF from parent CMakeLists.txt [\#846](https://github.com/nlohmann/json/issues/846)
-- Unit test fails for local-independent str-to-num [\#845](https://github.com/nlohmann/json/issues/845)
-- Another idea about type support [\#774](https://github.com/nlohmann/json/issues/774)
-
-- Includes CTest module/adds BUILD\_TESTING option [\#885](https://github.com/nlohmann/json/pull/885) ([TinyTinni](https://github.com/TinyTinni))
-- Fix MSVC warning C4819 [\#882](https://github.com/nlohmann/json/pull/882) ([erengy](https://github.com/erengy))
-- Merge branch 'develop' into coverity\_scan [\#880](https://github.com/nlohmann/json/pull/880) ([nlohmann](https://github.com/nlohmann))
-- :wrench: Fix up a few more effc++ items [\#858](https://github.com/nlohmann/json/pull/858) ([mattismyname](https://github.com/mattismyname))
-
-## [v3.0.0](https://github.com/nlohmann/json/releases/tag/v3.0.0) (2017-12-17)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/3.0.0...v3.0.0)
-
-## [3.0.0](https://github.com/nlohmann/json/releases/tag/3.0.0) (2017-12-17)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v2.1.1...3.0.0)
-
-- unicode strings [\#878](https://github.com/nlohmann/json/issues/878)
-- Visual Studio 2017 15.5 C++17 std::allocator deprecations [\#872](https://github.com/nlohmann/json/issues/872)
-- Typo "excpetion" [\#869](https://github.com/nlohmann/json/issues/869)
-- Explicit array example in README.md incorrect [\#867](https://github.com/nlohmann/json/issues/867)
-- why don't you release this from Feb. ? [\#865](https://github.com/nlohmann/json/issues/865)
-- json::parse throws std::invalid\_argument when processing string generated by json::dump\(\) [\#863](https://github.com/nlohmann/json/issues/863)
-- code analysis: potential bug? [\#859](https://github.com/nlohmann/json/issues/859)
-- MSVC2017, 15.5 new issues. [\#857](https://github.com/nlohmann/json/issues/857)
-- very basic: fetching string value/content without quotes [\#853](https://github.com/nlohmann/json/issues/853)
-- Ambiguous function call to get with pointer type and constant json object in VS2015 \(15.4.4\) [\#852](https://github.com/nlohmann/json/issues/852)
-- How to put object in the array as a member? [\#850](https://github.com/nlohmann/json/issues/850)
-- misclick, please ignore [\#849](https://github.com/nlohmann/json/issues/849)
-- Make XML great again. [\#847](https://github.com/nlohmann/json/issues/847)
-- Converting to array not working [\#843](https://github.com/nlohmann/json/issues/843)
-- Iteration weirdness [\#842](https://github.com/nlohmann/json/issues/842)
-- Use reference or pointer as Object value [\#841](https://github.com/nlohmann/json/issues/841)
-- Ambiguity in parsing nested maps [\#840](https://github.com/nlohmann/json/issues/840)
-- could not find from\_json\(\) method in T's namespace [\#839](https://github.com/nlohmann/json/issues/839)
-- Incorrect parse error with binary data in keys? [\#838](https://github.com/nlohmann/json/issues/838)
-- using dump\(\) when std::wstring is StringType with VS2017 [\#836](https://github.com/nlohmann/json/issues/836)
-- Show the path of the currently parsed value when an error occurs [\#835](https://github.com/nlohmann/json/issues/835)
-- Repetitive data type while reading [\#833](https://github.com/nlohmann/json/issues/833)
-- Storing multiple types inside map [\#831](https://github.com/nlohmann/json/issues/831)
-- Application terminating [\#830](https://github.com/nlohmann/json/issues/830)
-- Missing CMake hunter package? [\#828](https://github.com/nlohmann/json/issues/828)
-- std::map\ from json object yields C2665: 'std::pair\::pair': none of the 2 overloads could convert all the argument types [\#827](https://github.com/nlohmann/json/issues/827)
-- object.dump gives quoted string, want to use .dump\(\) to generate javascripts. [\#826](https://github.com/nlohmann/json/issues/826)
-- Assertion failed on \["NoExistKey"\] of an not existing key of const json& [\#825](https://github.com/nlohmann/json/issues/825)
-- vs2015 error : static member will remain uninitialized at runtime but use in constant-expressions is supported [\#824](https://github.com/nlohmann/json/issues/824)
-- Code Checking Warnings from json.hpp on VS2017 Community [\#821](https://github.com/nlohmann/json/issues/821)
-- Missing iostream in try online [\#820](https://github.com/nlohmann/json/issues/820)
-- Floating point value loses decimal point during dump [\#818](https://github.com/nlohmann/json/issues/818)
-- Conan package for the library [\#817](https://github.com/nlohmann/json/issues/817)
-- stream error [\#815](https://github.com/nlohmann/json/issues/815)
-- Link error when using find\(\) on the latest commit [\#814](https://github.com/nlohmann/json/issues/814)
-- ABI issue with json object between 2 shared libraries [\#813](https://github.com/nlohmann/json/issues/813)
-- scan\_string\(\) return token\_type::parse\_error; when parse ansi file [\#812](https://github.com/nlohmann/json/issues/812)
-- segfault when using fifo\_map with json [\#810](https://github.com/nlohmann/json/issues/810)
-- This shit is shit [\#809](https://github.com/nlohmann/json/issues/809)
-- \_finite and \_isnan are no members of "std" [\#808](https://github.com/nlohmann/json/issues/808)
-- how to print out the line which causing exception? [\#806](https://github.com/nlohmann/json/issues/806)
-- {} uses copy constructor, while = does not [\#805](https://github.com/nlohmann/json/issues/805)
-- json.hpp:8955: multiple definition of function that is not defined twice or more. [\#804](https://github.com/nlohmann/json/issues/804)
-- \[question\] to\_json for base and derived class [\#803](https://github.com/nlohmann/json/issues/803)
-- Misleading error message - unexpected '"' - on incorrect utf-8 symbol [\#802](https://github.com/nlohmann/json/issues/802)
-- json data = std::string\_view\("hi"\); doesn't work? [\#801](https://github.com/nlohmann/json/issues/801)
-- Thread safety of parse\(\) [\#800](https://github.com/nlohmann/json/issues/800)
-- Numbers as strings [\#799](https://github.com/nlohmann/json/issues/799)
-- Tests failing on arm [\#797](https://github.com/nlohmann/json/issues/797)
-- Using your library \(without modification\) in another library [\#796](https://github.com/nlohmann/json/issues/796)
-- Iterating over sub-object [\#794](https://github.com/nlohmann/json/issues/794)
-- how to get the json object again from which printed by the method of dump\(\) [\#792](https://github.com/nlohmann/json/issues/792)
-- ppa to include source [\#791](https://github.com/nlohmann/json/issues/791)
-- Different include paths in macOS and Ubuntu [\#790](https://github.com/nlohmann/json/issues/790)
-- Missing break after line 12886 in switch/case [\#789](https://github.com/nlohmann/json/issues/789)
-- All unit tests fail? [\#787](https://github.com/nlohmann/json/issues/787)
-- More use of move semantics in deserialization [\#786](https://github.com/nlohmann/json/issues/786)
-- warning C4706 - Visual Studio 2017 \(/W4\) [\#784](https://github.com/nlohmann/json/issues/784)
-- Compile error in clang 5.0 [\#782](https://github.com/nlohmann/json/issues/782)
-- Error Installing appium\_lib with Ruby v2.4.2 Due to JSON [\#781](https://github.com/nlohmann/json/issues/781)
-- ::get\\(\) fails in new\(er\) release \[MSVC\] [\#780](https://github.com/nlohmann/json/issues/780)
-- Type Conversion [\#779](https://github.com/nlohmann/json/issues/779)
-- Segfault on nested parsing [\#778](https://github.com/nlohmann/json/issues/778)
-- Build warnings: shadowing exception id [\#776](https://github.com/nlohmann/json/issues/776)
-- multi-level JSON support. [\#775](https://github.com/nlohmann/json/issues/775)
-- SIGABRT on dump\(\) [\#773](https://github.com/nlohmann/json/issues/773)
-- \[Question\] Custom StringType template parameter \(possibility for a KeyType template parameter\) [\#772](https://github.com/nlohmann/json/issues/772)
-- constexpr ALL the Things! [\#771](https://github.com/nlohmann/json/issues/771)
-- error: ‘BasicJsonType’ in namespace ‘::’ does not name a type [\#770](https://github.com/nlohmann/json/issues/770)
-- Program calls abort function [\#769](https://github.com/nlohmann/json/issues/769)
-- \[Question\] Floating point resolution config during dump\(\) ? [\#768](https://github.com/nlohmann/json/issues/768)
-- make check - no test ran [\#767](https://github.com/nlohmann/json/issues/767)
-- The library cannot work properly with custom allocator based containers [\#766](https://github.com/nlohmann/json/issues/766)
-- Documentation or feature request. [\#763](https://github.com/nlohmann/json/issues/763)
-- warnings in msvc about mix/max macro while windows.h is used in the project [\#762](https://github.com/nlohmann/json/issues/762)
-- std::signbit ambiguous [\#761](https://github.com/nlohmann/json/issues/761)
-- How to use value for std::experimental::optional type? [\#760](https://github.com/nlohmann/json/issues/760)
-- Cannot load json file properly [\#759](https://github.com/nlohmann/json/issues/759)
-- Compilation error with unordered\_map\< int, int \> [\#758](https://github.com/nlohmann/json/issues/758)
-- CBOR string [\#757](https://github.com/nlohmann/json/issues/757)
-- Proposal: out\_of\_range should be a subclass of std::out\_of\_range [\#756](https://github.com/nlohmann/json/issues/756)
-- Getter is setting the value to null if the key does not exist [\#754](https://github.com/nlohmann/json/issues/754)
-- parsing works sometimes and crashes others [\#752](https://github.com/nlohmann/json/issues/752)
-- Static\_assert failed "incompatible pointer type" with Xcode [\#751](https://github.com/nlohmann/json/issues/751)
-- user-defined literal operator not found [\#750](https://github.com/nlohmann/json/issues/750)
-- getting clean string from it.key\(\) [\#748](https://github.com/nlohmann/json/issues/748)
-- Best method for exploring and obtaining values of nested json objects when the names are not known beforehand? [\#747](https://github.com/nlohmann/json/issues/747)
-- null char at the end of string [\#746](https://github.com/nlohmann/json/issues/746)
-- Incorrect sample for operator \>\> in docs [\#745](https://github.com/nlohmann/json/issues/745)
-- User-friendly documentation [\#744](https://github.com/nlohmann/json/issues/744)
-- Retrieve all values that match a json path [\#743](https://github.com/nlohmann/json/issues/743)
-- Compilation issue with gcc 7.2 [\#742](https://github.com/nlohmann/json/issues/742)
-- CMake target nlohmann\_json does not have src into its interface includes [\#741](https://github.com/nlohmann/json/issues/741)
-- Error when serializing empty json: type must be string, but is object [\#740](https://github.com/nlohmann/json/issues/740)
-- Conversion error for std::map\ [\#739](https://github.com/nlohmann/json/issues/739)
-- Dumping Json to file as array [\#738](https://github.com/nlohmann/json/issues/738)
-- nesting json objects [\#737](https://github.com/nlohmann/json/issues/737)
-- where to find general help? [\#736](https://github.com/nlohmann/json/issues/736)
-- Compilation Error on Clang 5.0 Upgrade [\#735](https://github.com/nlohmann/json/issues/735)
-- Compilation error with std::map\ on vs 2015 [\#734](https://github.com/nlohmann/json/issues/734)
-- Benchmarks for Binary formats [\#733](https://github.com/nlohmann/json/issues/733)
-- Support \n symbols in json string. [\#731](https://github.com/nlohmann/json/issues/731)
-- Project's name is too generic and hard to search for [\#730](https://github.com/nlohmann/json/issues/730)
-- Visual Studio 2015 IntelliTrace problems [\#729](https://github.com/nlohmann/json/issues/729)
-- How to erase nested objects inside other objects? [\#728](https://github.com/nlohmann/json/issues/728)
-- Serialization for CBOR [\#726](https://github.com/nlohmann/json/issues/726)
-- Using json Object as value in a map [\#725](https://github.com/nlohmann/json/issues/725)
-- std::regex and nlohmann::json value [\#724](https://github.com/nlohmann/json/issues/724)
-- Warnings when compiling with VisualStudio 2015 [\#723](https://github.com/nlohmann/json/issues/723)
-- Has this lib the unicode \(wstring\) support? [\#722](https://github.com/nlohmann/json/issues/722)
-- When will be 3.0 in master? [\#721](https://github.com/nlohmann/json/issues/721)
-- Determine the type from error message. [\#720](https://github.com/nlohmann/json/issues/720)
-- Compile-Error C2100 \(MS VS2015\) in line 887 json.hpp [\#719](https://github.com/nlohmann/json/issues/719)
-- from\_json not working for boost::optional example [\#718](https://github.com/nlohmann/json/issues/718)
-- about from\_json and to\_json function [\#717](https://github.com/nlohmann/json/issues/717)
-- How to detect parse failure? [\#715](https://github.com/nlohmann/json/issues/715)
-- Parse throw std::ios\_base::failure exception when failbit set to true [\#714](https://github.com/nlohmann/json/issues/714)
-- Is there a way of format just making a pretty print without changing the key's orders ? [\#713](https://github.com/nlohmann/json/issues/713)
-- Serialization of array of not same model items [\#712](https://github.com/nlohmann/json/issues/712)
-- pointer to json parse vector [\#711](https://github.com/nlohmann/json/issues/711)
-- Gtest SEH Exception [\#709](https://github.com/nlohmann/json/issues/709)
-- broken from\_json implementation for pair and tuple [\#707](https://github.com/nlohmann/json/issues/707)
-- Unevaluated lambda in assert breaks gcc 7 build [\#705](https://github.com/nlohmann/json/issues/705)
-- Issues when adding values to firebase database [\#704](https://github.com/nlohmann/json/issues/704)
-- Floating point equality - revisited [\#703](https://github.com/nlohmann/json/issues/703)
-- Conversion from valarray\ to json fails to build [\#702](https://github.com/nlohmann/json/issues/702)
-- internal compiler error \(gcc7\) [\#701](https://github.com/nlohmann/json/issues/701)
-- One build system to rule them all [\#698](https://github.com/nlohmann/json/issues/698)
-- Generated nlohmann\_jsonConfig.cmake does not set JSON\_INCLUDE\_DIR [\#695](https://github.com/nlohmann/json/issues/695)
-- support the Chinese language in json string [\#694](https://github.com/nlohmann/json/issues/694)
-- NaN problem within develop branch [\#693](https://github.com/nlohmann/json/issues/693)
-- Please post example of specialization for boost::filesystem [\#692](https://github.com/nlohmann/json/issues/692)
-- Impossible to do an array of composite objects [\#691](https://github.com/nlohmann/json/issues/691)
-- How to save json to file? [\#690](https://github.com/nlohmann/json/issues/690)
-- my simple json parser [\#689](https://github.com/nlohmann/json/issues/689)
-- problem with new struct parsing syntax [\#688](https://github.com/nlohmann/json/issues/688)
-- Parse error while parse the json string contains UTF 8 encoded document bytes string [\#684](https://github.com/nlohmann/json/issues/684)
-- \[question\] how to get a string value by pointer [\#683](https://github.com/nlohmann/json/issues/683)
-- create json object from string variable [\#681](https://github.com/nlohmann/json/issues/681)
-- adl\_serializer and CRTP [\#680](https://github.com/nlohmann/json/issues/680)
-- Is there a way to control the precision of serialized floating point numbers? [\#677](https://github.com/nlohmann/json/issues/677)
-- Is there a way to get the path of a value? [\#676](https://github.com/nlohmann/json/issues/676)
-- Could the parser locate errors to line? [\#675](https://github.com/nlohmann/json/issues/675)
-- There is performance inefficiency found by coverity tool json2.1.1/include/nlohmann/json.hpp [\#673](https://github.com/nlohmann/json/issues/673)
-- include problem, when cmake on osx [\#672](https://github.com/nlohmann/json/issues/672)
-- Operator= ambiguous in C++1z and GCC 7.1.1 [\#670](https://github.com/nlohmann/json/issues/670)
-- should't the cmake install target be to nlohman/json.hpp [\#668](https://github.com/nlohmann/json/issues/668)
-- deserialise from `std::vector` [\#667](https://github.com/nlohmann/json/issues/667)
-- How to iterate? [\#665](https://github.com/nlohmann/json/issues/665)
-- could this json lib work on windows? [\#664](https://github.com/nlohmann/json/issues/664)
-- How does from\_json work? [\#662](https://github.com/nlohmann/json/issues/662)
-- insert\(or merge\) object should replace same key , not ignore [\#661](https://github.com/nlohmann/json/issues/661)
-- Parse method doesn't handle newlines. [\#659](https://github.com/nlohmann/json/issues/659)
-- Compilation "note" on GCC 6 ARM [\#658](https://github.com/nlohmann/json/issues/658)
-- Adding additional push\_back/operator+= rvalue overloads for JSON object [\#657](https://github.com/nlohmann/json/issues/657)
-- dump's parameter "ensure\_ascii" creates too long sequences [\#656](https://github.com/nlohmann/json/issues/656)
-- Question: parsing `void *` [\#655](https://github.com/nlohmann/json/issues/655)
-- how should I check a string is valid JSON string ? [\#653](https://github.com/nlohmann/json/issues/653)
-- Question: thread safety of read only accesses [\#651](https://github.com/nlohmann/json/issues/651)
-- Eclipse: Method 'size' could not be resolved [\#649](https://github.com/nlohmann/json/issues/649)
-- Update/Add object fields [\#648](https://github.com/nlohmann/json/issues/648)
-- No exception raised for Out Of Range input of numbers [\#647](https://github.com/nlohmann/json/issues/647)
-- Package Name [\#646](https://github.com/nlohmann/json/issues/646)
-- What is the meaning of operator\[\]\(T\* key\) [\#645](https://github.com/nlohmann/json/issues/645)
-- Which is the correct way to json objects as parameters to functions? [\#644](https://github.com/nlohmann/json/issues/644)
-- Method to get string representations of values [\#642](https://github.com/nlohmann/json/issues/642)
-- CBOR serialization of a given JSON value does not serialize [\#641](https://github.com/nlohmann/json/issues/641)
-- Are we forced to use "-fexceptions" flag in android ndk project [\#640](https://github.com/nlohmann/json/issues/640)
-- Comparison of objects containing floats [\#639](https://github.com/nlohmann/json/issues/639)
-- 'localeconv' is not supported by NDK for SDK \<=20 [\#638](https://github.com/nlohmann/json/issues/638)
-- \[Question\] cLion integration [\#637](https://github.com/nlohmann/json/issues/637)
-- How to construct an iteratable usage in nlohmann json? [\#636](https://github.com/nlohmann/json/issues/636)
-- \[Question\] copy assign json-container to vector [\#635](https://github.com/nlohmann/json/issues/635)
-- Get size without .dump\(\) [\#634](https://github.com/nlohmann/json/issues/634)
-- Segmentation fault when parsing invalid json file [\#633](https://github.com/nlohmann/json/issues/633)
-- How to serialize from json to vector\? [\#632](https://github.com/nlohmann/json/issues/632)
-- no member named 'thousands\_sep' in 'lconv' [\#631](https://github.com/nlohmann/json/issues/631)
-- \[Question\] Any fork for \(the unsupported\) Visual Studio 2012 version? [\#628](https://github.com/nlohmann/json/issues/628)
-- Dependency injection in serializer [\#627](https://github.com/nlohmann/json/issues/627)
-- from\_json for std::array [\#625](https://github.com/nlohmann/json/issues/625)
-- Discussion: How to structure the parsing function families [\#623](https://github.com/nlohmann/json/issues/623)
-- Question: How to erase subtree [\#622](https://github.com/nlohmann/json/issues/622)
-- Insertion into nested json field [\#621](https://github.com/nlohmann/json/issues/621)
-- Question: return static json object from function [\#618](https://github.com/nlohmann/json/issues/618)
-- icc16 error [\#617](https://github.com/nlohmann/json/issues/617)
-- \[-Wdeprecated-declarations\] in row `j >> ss;` in file `json.hpp:7405:26` and FAILED unit tests with MinGWx64! [\#616](https://github.com/nlohmann/json/issues/616)
-- to\_json for pairs, tuples [\#614](https://github.com/nlohmann/json/issues/614)
-- Using uninitialized memory 'buf' in line 11173 v2.1.1? [\#613](https://github.com/nlohmann/json/issues/613)
-- How to parse multiple same Keys of JSON and save them? [\#612](https://github.com/nlohmann/json/issues/612)
-- "Multiple declarations" error when using types defined with `typedef` [\#611](https://github.com/nlohmann/json/issues/611)
-- 2.1.1+ breaks compilation of shared\_ptr\ == 0 [\#610](https://github.com/nlohmann/json/issues/610)
-- a bug of inheritance ? [\#608](https://github.com/nlohmann/json/issues/608)
-- std::map key conversion with to\_json [\#607](https://github.com/nlohmann/json/issues/607)
-- json.hpp:6384:62: error: wrong number of template arguments \(1, should be 2\) [\#606](https://github.com/nlohmann/json/issues/606)
-- Incremental parsing: Where's the push version? [\#605](https://github.com/nlohmann/json/issues/605)
-- Is there a way to validate the structure of a json object ? [\#604](https://github.com/nlohmann/json/issues/604)
-- \[Question\] Issue when using Appveyor when compiling library [\#603](https://github.com/nlohmann/json/issues/603)
-- BOM not skipped when using json:parse\(iterator\) [\#602](https://github.com/nlohmann/json/issues/602)
-- Use of the binary type in CBOR and Message Pack [\#601](https://github.com/nlohmann/json/issues/601)
-- Newbie issue: how does one convert a map in Json back to std::map? [\#600](https://github.com/nlohmann/json/issues/600)
-- Plugin system [\#599](https://github.com/nlohmann/json/issues/599)
-- Using custom types for scalars? [\#596](https://github.com/nlohmann/json/issues/596)
-- Issues with the arithmetic in iterator and reverse iterator [\#593](https://github.com/nlohmann/json/issues/593)
-- not enough examples [\#592](https://github.com/nlohmann/json/issues/592)
-- in-class initialization for type 'const T' is not yet implemented [\#591](https://github.com/nlohmann/json/issues/591)
-- compiling with gcc 7 -\> error on bool operator \< [\#590](https://github.com/nlohmann/json/issues/590)
-- Parsing from stream leads to an array [\#589](https://github.com/nlohmann/json/issues/589)
-- Buggy support for binary string data [\#587](https://github.com/nlohmann/json/issues/587)
-- C++17's ambiguous conversion [\#586](https://github.com/nlohmann/json/issues/586)
-- How does the messagepack encoding/decoding compare to msgpack-cpp in terms of performance? [\#585](https://github.com/nlohmann/json/issues/585)
-- is it possible to check existence of a value deep in hierarchy? [\#584](https://github.com/nlohmann/json/issues/584)
-- loading from a stream and exceptions [\#582](https://github.com/nlohmann/json/issues/582)
-- Visual Studio seems not to have all min\(\) function versions [\#581](https://github.com/nlohmann/json/issues/581)
-- Supporting of the json schema [\#580](https://github.com/nlohmann/json/issues/580)
-- Stack-overflow \(OSS-Fuzz 1444\) [\#577](https://github.com/nlohmann/json/issues/577)
-- Heap-buffer-overflow \(OSS-Fuzz 1400\) [\#575](https://github.com/nlohmann/json/issues/575)
-- JSON escape quotes [\#574](https://github.com/nlohmann/json/issues/574)
-- error: static\_assert failed [\#573](https://github.com/nlohmann/json/issues/573)
-- Storing floats, and round trip serialisation/deserialisation diffs [\#572](https://github.com/nlohmann/json/issues/572)
-- JSON.getLong produces inconsistent results [\#571](https://github.com/nlohmann/json/issues/571)
-- Request: Object.at\(\) with default return value [\#570](https://github.com/nlohmann/json/issues/570)
-- Internal structure gets corrupted while parsing [\#569](https://github.com/nlohmann/json/issues/569)
-- create template \ basic\_json from\_cbor\(Iter begin, Iter end\) [\#568](https://github.com/nlohmann/json/issues/568)
-- Conan.io [\#566](https://github.com/nlohmann/json/issues/566)
-- contradictory documentation regarding json::find [\#565](https://github.com/nlohmann/json/issues/565)
-- Unexpected '\"' in middle of array [\#564](https://github.com/nlohmann/json/issues/564)
-- Support parse std::pair to Json object [\#563](https://github.com/nlohmann/json/issues/563)
-- json and Microsoft Visual c++ Compiler Nov 2012 CTP [\#562](https://github.com/nlohmann/json/issues/562)
-- from\_json declaration order and exceptions [\#561](https://github.com/nlohmann/json/issues/561)
-- Tip: Don't upgrade to VS2017 if using json initializer list constructs [\#559](https://github.com/nlohmann/json/issues/559)
-- parse error - unexpected end of input [\#558](https://github.com/nlohmann/json/issues/558)
-- Cant modify existing numbers inside a json object [\#557](https://github.com/nlohmann/json/issues/557)
-- Better support for SAX style serialize and deserialize in new version? [\#554](https://github.com/nlohmann/json/issues/554)
-- Cannot convert from json array to std::array [\#553](https://github.com/nlohmann/json/issues/553)
-- Do not define an unnamed namespace in a header file \(DCL59-CPP\) [\#552](https://github.com/nlohmann/json/issues/552)
-- Parse error on known good json file [\#551](https://github.com/nlohmann/json/issues/551)
-- Warning on Intel compiler \(icc 17\) [\#550](https://github.com/nlohmann/json/issues/550)
-- multiple versions of 'vsnprintf' [\#549](https://github.com/nlohmann/json/issues/549)
-- illegal indirection [\#548](https://github.com/nlohmann/json/issues/548)
-- Ambiguous compare operators with clang-5.0 [\#547](https://github.com/nlohmann/json/issues/547)
-- Using tsl::ordered\_map [\#546](https://github.com/nlohmann/json/issues/546)
-- Compiler support errors are inconvenient [\#544](https://github.com/nlohmann/json/issues/544)
-- Duplicate symbols error happens while to\_json/from\_json method implemented inside entity definition header file [\#542](https://github.com/nlohmann/json/issues/542)
-- consider adding a bool json::is\_valid\(std::string const&\) non-member function [\#541](https://github.com/nlohmann/json/issues/541)
-- Help request [\#539](https://github.com/nlohmann/json/issues/539)
-- How to deal with missing keys in `from_json`? [\#538](https://github.com/nlohmann/json/issues/538)
-- recursive from\_msgpack implementation will stack overflow [\#537](https://github.com/nlohmann/json/issues/537)
-- Exception objects must be nothrow copy constructible \(ERR60-CPP\) [\#531](https://github.com/nlohmann/json/issues/531)
-- Support for multiple root elements [\#529](https://github.com/nlohmann/json/issues/529)
-- Port has\_shape from dropbox/json11 [\#528](https://github.com/nlohmann/json/issues/528)
-- dump\_float: truncation from ptrdiff\_t to long [\#527](https://github.com/nlohmann/json/issues/527)
-- Make exception base class visible in basic\_json [\#525](https://github.com/nlohmann/json/issues/525)
-- msgpack unit test failures on ppc64 arch [\#524](https://github.com/nlohmann/json/issues/524)
-- How about split the implementation out, and only leave the interface? [\#523](https://github.com/nlohmann/json/issues/523)
-- VC++2017 not enough actual parameters for macro 'max' [\#522](https://github.com/nlohmann/json/issues/522)
-- crash on empty ifstream [\#521](https://github.com/nlohmann/json/issues/521)
-- Suggestion: Support tabs for indentation when serializing to stream. [\#520](https://github.com/nlohmann/json/issues/520)
-- Abrt in get\_number \(OSS-Fuzz 885\) [\#519](https://github.com/nlohmann/json/issues/519)
-- Abrt on unknown address \(OSS-Fuzz 884\) [\#518](https://github.com/nlohmann/json/issues/518)
-- Stack-overflow \(OSS-Fuzz 869\) [\#517](https://github.com/nlohmann/json/issues/517)
-- Assertion error \(OSS-Fuzz 868\) [\#516](https://github.com/nlohmann/json/issues/516)
-- NaN to json and back [\#515](https://github.com/nlohmann/json/issues/515)
-- Comparison of NaN [\#514](https://github.com/nlohmann/json/issues/514)
-- why it's not possible to serialize c++11 enums directly [\#513](https://github.com/nlohmann/json/issues/513)
-- clang compile error: use of overloaded operator '\<=' is ambiguous with \(nlohmann::json{{"a", 5}}\)\["a"\] \<= 10 [\#512](https://github.com/nlohmann/json/issues/512)
-- Why not also look inside the type for \(static\) to\_json and from\_json funtions? [\#511](https://github.com/nlohmann/json/issues/511)
-- Parser issues [\#509](https://github.com/nlohmann/json/issues/509)
-- I may not understand [\#507](https://github.com/nlohmann/json/issues/507)
-- VS2017 min / max problem for 2.1.1 [\#506](https://github.com/nlohmann/json/issues/506)
-- CBOR/MessagePack is not read until the end [\#505](https://github.com/nlohmann/json/issues/505)
-- Assertion error \(OSS-Fuzz 856\) [\#504](https://github.com/nlohmann/json/issues/504)
-- Return position in parse error exceptions [\#503](https://github.com/nlohmann/json/issues/503)
-- conversion from/to C array is not supported [\#502](https://github.com/nlohmann/json/issues/502)
-- error C2338: could not find to\_json\(\) method in T's namespace [\#501](https://github.com/nlohmann/json/issues/501)
-- Test suite fails in en\_GB.UTF-8 [\#500](https://github.com/nlohmann/json/issues/500)
-- cannot use operator\[\] with number [\#499](https://github.com/nlohmann/json/issues/499)
-- consider using \_\_cpp\_exceptions and/or \_\_EXCEPTIONS to disable/enable exception support [\#498](https://github.com/nlohmann/json/issues/498)
-- Stack-overflow \(OSS-Fuzz issue 814\) [\#497](https://github.com/nlohmann/json/issues/497)
-- Using in Unreal Engine - handling custom types conversion [\#495](https://github.com/nlohmann/json/issues/495)
-- Conversion from vector\ to json fails to build [\#494](https://github.com/nlohmann/json/issues/494)
-- fill\_line\_buffer incorrectly tests m\_stream for eof but not fail or bad bits [\#493](https://github.com/nlohmann/json/issues/493)
-- Compiling with \_GLIBCXX\_DEBUG yields iterator-comparison warnings during tests [\#492](https://github.com/nlohmann/json/issues/492)
-- crapy interface [\#491](https://github.com/nlohmann/json/issues/491)
-- Fix Visual Studo 2013 builds. [\#490](https://github.com/nlohmann/json/issues/490)
-- Failed to compile with -D\_GLIBCXX\_PARALLEL [\#489](https://github.com/nlohmann/json/issues/489)
-- Input several field with the same name [\#488](https://github.com/nlohmann/json/issues/488)
-- read in .json file yields strange sizes [\#487](https://github.com/nlohmann/json/issues/487)
-- json::value\_t can't be a map's key type in VC++ 2015 [\#486](https://github.com/nlohmann/json/issues/486)
-- Using fifo\_map [\#485](https://github.com/nlohmann/json/issues/485)
-- Cannot get float pointer for value stored as `0` [\#484](https://github.com/nlohmann/json/issues/484)
-- byte string support [\#483](https://github.com/nlohmann/json/issues/483)
-- https://github.com/nlohmann/json\#execute-unit-tests [\#481](https://github.com/nlohmann/json/issues/481)
-- Remove deprecated constructor basic\_json\(std::istream&\) [\#480](https://github.com/nlohmann/json/issues/480)
-- writing the binary json file? [\#479](https://github.com/nlohmann/json/issues/479)
-- CBOR/MessagePack from uint8\_t \* and size [\#478](https://github.com/nlohmann/json/issues/478)
-- Streaming binary representations [\#477](https://github.com/nlohmann/json/issues/477)
-- Reuse memory in to\_cbor and to\_msgpack functions [\#476](https://github.com/nlohmann/json/issues/476)
-- Error Using JSON Library with arrays C++ [\#475](https://github.com/nlohmann/json/issues/475)
-- Moving forward to version 3.0.0 [\#474](https://github.com/nlohmann/json/issues/474)
-- Inconsistent behavior in conversion to array type [\#473](https://github.com/nlohmann/json/issues/473)
-- Create a \[key:member\_pointer\] map to ease parsing custom types [\#471](https://github.com/nlohmann/json/issues/471)
-- MSVC 2015 update 2 [\#469](https://github.com/nlohmann/json/issues/469)
-- VS2017 implicit to std::string conversion fix. [\#464](https://github.com/nlohmann/json/issues/464)
-- How to make sure a string or string literal is a valid JSON? [\#458](https://github.com/nlohmann/json/issues/458)
-- basic\_json templated on a "policy" class [\#456](https://github.com/nlohmann/json/issues/456)
-- json::value\(const json\_pointer&, ValueType\) requires exceptions to return the default value. [\#440](https://github.com/nlohmann/json/issues/440)
-- is it possible merge two json object [\#428](https://github.com/nlohmann/json/issues/428)
-- Is it possible to turn this into a shared library? [\#420](https://github.com/nlohmann/json/issues/420)
-- Further thoughts on performance improvements [\#418](https://github.com/nlohmann/json/issues/418)
-- nan number stored as null [\#388](https://github.com/nlohmann/json/issues/388)
-- Behavior of operator\>\> should more closely resemble that of built-in overloads. [\#367](https://github.com/nlohmann/json/issues/367)
-- Request: range-based-for over a json-object to expose .first/.second [\#350](https://github.com/nlohmann/json/issues/350)
-- feature wish: JSONPath [\#343](https://github.com/nlohmann/json/issues/343)
-- UTF-8/Unicode escape and dump [\#330](https://github.com/nlohmann/json/issues/330)
-- Serialized value not always can be parsed. [\#329](https://github.com/nlohmann/json/issues/329)
-- Is there a way to forward declare nlohmann::json? [\#314](https://github.com/nlohmann/json/issues/314)
-- Exception line [\#301](https://github.com/nlohmann/json/issues/301)
-- Do not throw exception when default\_value's type does not match the actual type [\#278](https://github.com/nlohmann/json/issues/278)
-- dump\(\) method doesn't work with a custom allocator [\#268](https://github.com/nlohmann/json/issues/268)
-- Readme documentation enhancements [\#248](https://github.com/nlohmann/json/issues/248)
-- Use user-defined exceptions [\#244](https://github.com/nlohmann/json/issues/244)
-- Incorrect C++11 allocator model support [\#161](https://github.com/nlohmann/json/issues/161)
-
-- :white\_check\_mark: re-added tests for algorithms [\#879](https://github.com/nlohmann/json/pull/879) ([nlohmann](https://github.com/nlohmann))
-- Overworked library toward 3.0.0 release [\#875](https://github.com/nlohmann/json/pull/875) ([nlohmann](https://github.com/nlohmann))
-- :rotating\_light: remove C4996 warnings \#872 [\#873](https://github.com/nlohmann/json/pull/873) ([nlohmann](https://github.com/nlohmann))
-- :boom: throwing an exception in case dump encounters a non-UTF-8 string \#838 [\#870](https://github.com/nlohmann/json/pull/870) ([nlohmann](https://github.com/nlohmann))
-- :memo: fixing documentation \#867 [\#868](https://github.com/nlohmann/json/pull/868) ([nlohmann](https://github.com/nlohmann))
-- iter\_impl template conformance with C++17 [\#860](https://github.com/nlohmann/json/pull/860) ([bogemic](https://github.com/bogemic))
-- Std allocator conformance cpp17 [\#856](https://github.com/nlohmann/json/pull/856) ([bogemic](https://github.com/bogemic))
-- cmake: use BUILD\_INTERFACE/INSTALL\_INTERFACE [\#855](https://github.com/nlohmann/json/pull/855) ([theodelrieu](https://github.com/theodelrieu))
-- to/from\_json: add a MSVC-specific static\_assert to force a stacktrace [\#854](https://github.com/nlohmann/json/pull/854) ([theodelrieu](https://github.com/theodelrieu))
-- Add .natvis for MSVC debug view [\#844](https://github.com/nlohmann/json/pull/844) ([TinyTinni](https://github.com/TinyTinni))
-- Updated hunter package links [\#829](https://github.com/nlohmann/json/pull/829) ([jowr](https://github.com/jowr))
-- Typos README [\#811](https://github.com/nlohmann/json/pull/811) ([Itja](https://github.com/Itja))
-- add forwarding references to json\_ref constructor [\#807](https://github.com/nlohmann/json/pull/807) ([theodelrieu](https://github.com/theodelrieu))
-- Add transparent comparator and perfect forwarding support to find\(\) and count\(\) [\#795](https://github.com/nlohmann/json/pull/795) ([jseward](https://github.com/jseward))
-- Error : 'identifier "size\_t" is undefined' in linux [\#793](https://github.com/nlohmann/json/pull/793) ([sonulohani](https://github.com/sonulohani))
-- Fix Visual Studio 2017 warnings [\#788](https://github.com/nlohmann/json/pull/788) ([jseward](https://github.com/jseward))
-- Fix warning C4706 on Visual Studio 2017 [\#785](https://github.com/nlohmann/json/pull/785) ([jseward](https://github.com/jseward))
-- Set GENERATE\_TAGFILE in Doxyfile [\#783](https://github.com/nlohmann/json/pull/783) ([eld00d](https://github.com/eld00d))
-- using more CMake [\#765](https://github.com/nlohmann/json/pull/765) ([nlohmann](https://github.com/nlohmann))
-- Simplified istream handing \#367 [\#764](https://github.com/nlohmann/json/pull/764) ([pjkundert](https://github.com/pjkundert))
-- Add info for the vcpkg package. [\#753](https://github.com/nlohmann/json/pull/753) ([gregmarr](https://github.com/gregmarr))
-- fix from\_json implementation for pair/tuple [\#708](https://github.com/nlohmann/json/pull/708) ([theodelrieu](https://github.com/theodelrieu))
-- Update json.hpp [\#686](https://github.com/nlohmann/json/pull/686) ([GoWebProd](https://github.com/GoWebProd))
-- Remove duplicate word [\#685](https://github.com/nlohmann/json/pull/685) ([daixtrose](https://github.com/daixtrose))
-- To fix compilation issue for intel OSX compiler [\#682](https://github.com/nlohmann/json/pull/682) ([kbthomp1](https://github.com/kbthomp1))
-- Digraph warning [\#679](https://github.com/nlohmann/json/pull/679) ([traits](https://github.com/traits))
-- massage -\> message [\#678](https://github.com/nlohmann/json/pull/678) ([DmitryKuk](https://github.com/DmitryKuk))
-- Fix "not constraint" grammar in docs [\#674](https://github.com/nlohmann/json/pull/674) ([wincent](https://github.com/wincent))
-- Add documentation for integration with CMake and hunter [\#671](https://github.com/nlohmann/json/pull/671) ([dan-42](https://github.com/dan-42))
-- REFACTOR: rewrite CMakeLists.txt for better inlcude and reuse [\#669](https://github.com/nlohmann/json/pull/669) ([dan-42](https://github.com/dan-42))
-- enable\_testing only if the JSON\_BuildTests is ON [\#666](https://github.com/nlohmann/json/pull/666) ([effolkronium](https://github.com/effolkronium))
-- Support moving from rvalues in std::initializer\_list [\#663](https://github.com/nlohmann/json/pull/663) ([himikof](https://github.com/himikof))
-- add ensure\_ascii parameter to dump. \#330 [\#654](https://github.com/nlohmann/json/pull/654) ([ryanjmulder](https://github.com/ryanjmulder))
-- Rename BuildTests to JSON\_BuildTests [\#652](https://github.com/nlohmann/json/pull/652) ([olegendo](https://github.com/olegendo))
-- Don't include \, use std::make\_shared [\#650](https://github.com/nlohmann/json/pull/650) ([olegendo](https://github.com/olegendo))
-- Refacto/split basic json [\#643](https://github.com/nlohmann/json/pull/643) ([theodelrieu](https://github.com/theodelrieu))
-- fix typo in operator\_\_notequal example [\#630](https://github.com/nlohmann/json/pull/630) ([Chocobo1](https://github.com/Chocobo1))
-- Fix MSVC warning C4819 [\#629](https://github.com/nlohmann/json/pull/629) ([Chocobo1](https://github.com/Chocobo1))
-- \[BugFix\] Add parentheses around std::min [\#626](https://github.com/nlohmann/json/pull/626) ([koemeet](https://github.com/koemeet))
-- add pair/tuple conversions [\#624](https://github.com/nlohmann/json/pull/624) ([theodelrieu](https://github.com/theodelrieu))
-- remove std::pair support [\#615](https://github.com/nlohmann/json/pull/615) ([theodelrieu](https://github.com/theodelrieu))
-- Add pair support, fix CompatibleObject conversions \(fixes \#600\) [\#609](https://github.com/nlohmann/json/pull/609) ([theodelrieu](https://github.com/theodelrieu))
-- \#550 Fix iterator related compiling issues for Intel icc [\#598](https://github.com/nlohmann/json/pull/598) ([HenryRLee](https://github.com/HenryRLee))
-- Issue \#593 Fix the arithmetic operators in the iterator and reverse iterator [\#595](https://github.com/nlohmann/json/pull/595) ([HenryRLee](https://github.com/HenryRLee))
-- fix doxygen error of basic\_json::get\(\) [\#583](https://github.com/nlohmann/json/pull/583) ([zhaohuaxishi](https://github.com/zhaohuaxishi))
-- Fixing assignement for iterator wrapper second, and adding unit test [\#579](https://github.com/nlohmann/json/pull/579) ([Type1J](https://github.com/Type1J))
-- Adding first and second properties to iteration\_proxy\_internal [\#578](https://github.com/nlohmann/json/pull/578) ([Type1J](https://github.com/Type1J))
-- Adding support for Meson. [\#576](https://github.com/nlohmann/json/pull/576) ([Type1J](https://github.com/Type1J))
-- add enum class default conversions [\#545](https://github.com/nlohmann/json/pull/545) ([theodelrieu](https://github.com/theodelrieu))
-- Properly pop diagnostics [\#540](https://github.com/nlohmann/json/pull/540) ([tinloaf](https://github.com/tinloaf))
-- Add Visual Studio 17 image to appveyor build matrix [\#536](https://github.com/nlohmann/json/pull/536) ([vpetrigo](https://github.com/vpetrigo))
-- UTF8 encoding enhancement [\#534](https://github.com/nlohmann/json/pull/534) ([TedLyngmo](https://github.com/TedLyngmo))
-- Fix typo [\#530](https://github.com/nlohmann/json/pull/530) ([berkus](https://github.com/berkus))
-- Make exception base class visible in basic\_json [\#526](https://github.com/nlohmann/json/pull/526) ([ghost](https://github.com/ghost))
-- :art: Namespace `uint8_t` from the C++ stdlib [\#510](https://github.com/nlohmann/json/pull/510) ([alexweej](https://github.com/alexweej))
-- add to\_json method for C arrays [\#508](https://github.com/nlohmann/json/pull/508) ([theodelrieu](https://github.com/theodelrieu))
-- Fix -Weffc++ warnings \(GNU 6.3.1\) [\#496](https://github.com/nlohmann/json/pull/496) ([TedLyngmo](https://github.com/TedLyngmo))
-
-## [v2.1.1](https://github.com/nlohmann/json/releases/tag/v2.1.1) (2017-02-25)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/2.1.1...v2.1.1)
-
-## [2.1.1](https://github.com/nlohmann/json/releases/tag/2.1.1) (2017-02-25)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v2.1.0...2.1.1)
-
-- warning in the library [\#472](https://github.com/nlohmann/json/issues/472)
-- How to create an array of Objects? [\#470](https://github.com/nlohmann/json/issues/470)
-- \[Bug?\] Cannot get int pointer, but int64\_t works [\#468](https://github.com/nlohmann/json/issues/468)
-- Illegal indirection [\#467](https://github.com/nlohmann/json/issues/467)
-- in vs can't find linkageId [\#466](https://github.com/nlohmann/json/issues/466)
-- Roundtrip error while parsing "1000000000000000010E5" [\#465](https://github.com/nlohmann/json/issues/465)
-- C4996 error and warning with Visual Studio [\#463](https://github.com/nlohmann/json/issues/463)
-- Support startIndex for from\_cbor/from\_msgpack [\#462](https://github.com/nlohmann/json/issues/462)
-- question: monospace font used in feature slideshow? [\#460](https://github.com/nlohmann/json/issues/460)
-- Object.keys\(\) [\#459](https://github.com/nlohmann/json/issues/459)
-- Use “, “ as delimiter for json-objects. [\#457](https://github.com/nlohmann/json/issues/457)
-- Enum -\> string during serialization and vice versa [\#455](https://github.com/nlohmann/json/issues/455)
-- doubles are printed as integers [\#454](https://github.com/nlohmann/json/issues/454)
-- Warnings with Visual Studio c++ \(VS2015 Update 3\) [\#453](https://github.com/nlohmann/json/issues/453)
-- Heap-buffer-overflow \(OSS-Fuzz issue 585\) [\#452](https://github.com/nlohmann/json/issues/452)
-- use of undeclared identifier 'UINT8\_MAX' [\#451](https://github.com/nlohmann/json/issues/451)
-- Question on the lifetime managment of objects at the lower levels [\#449](https://github.com/nlohmann/json/issues/449)
-- Json should not be constructible with 'json\*' [\#448](https://github.com/nlohmann/json/issues/448)
-- Move value\_t to namespace scope [\#447](https://github.com/nlohmann/json/issues/447)
-- Typo in README.md [\#446](https://github.com/nlohmann/json/issues/446)
-- make check compilation is unneccesarily slow [\#445](https://github.com/nlohmann/json/issues/445)
-- Problem in dump\(\) in json.h caused by ss.imbue [\#444](https://github.com/nlohmann/json/issues/444)
-- I want to create Windows Application in Visual Studio 2015 c++, and i have a problem [\#443](https://github.com/nlohmann/json/issues/443)
-- Implicit conversion issues [\#442](https://github.com/nlohmann/json/issues/442)
-- Parsing of floats locale dependent [\#302](https://github.com/nlohmann/json/issues/302)
-
-- Speedup CI builds using cotire [\#461](https://github.com/nlohmann/json/pull/461) ([tusharpm](https://github.com/tusharpm))
-- TurpentineDistillery feature/locale independent str to num [\#450](https://github.com/nlohmann/json/pull/450) ([nlohmann](https://github.com/nlohmann))
-- README: adjust boost::optional example [\#439](https://github.com/nlohmann/json/pull/439) ([jaredgrubb](https://github.com/jaredgrubb))
-- fix \#414 - comparing to 0 literal [\#415](https://github.com/nlohmann/json/pull/415) ([stanmihai4](https://github.com/stanmihai4))
-- locale-independent num-to-str [\#378](https://github.com/nlohmann/json/pull/378) ([TurpentineDistillery](https://github.com/TurpentineDistillery))
-
-## [v2.1.0](https://github.com/nlohmann/json/releases/tag/v2.1.0) (2017-01-28)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/2.1.0...v2.1.0)
-
-## [2.1.0](https://github.com/nlohmann/json/releases/tag/2.1.0) (2017-01-28)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v2.0.10...2.1.0)
-
-- Parsing multiple JSON objects from a string or stream [\#438](https://github.com/nlohmann/json/issues/438)
-- Use-of-uninitialized-value \(OSS-Fuzz issue 477\) [\#437](https://github.com/nlohmann/json/issues/437)
-- add `reserve` function for array to reserve memory before adding json values into it [\#436](https://github.com/nlohmann/json/issues/436)
-- Typo in examples page [\#434](https://github.com/nlohmann/json/issues/434)
-- avoid malformed json [\#433](https://github.com/nlohmann/json/issues/433)
-- How to add json objects to a map? [\#432](https://github.com/nlohmann/json/issues/432)
-- create json instance from raw json \(unsigned char\*\) [\#431](https://github.com/nlohmann/json/issues/431)
-- Getting std::invalid\_argument: stream error when following example [\#429](https://github.com/nlohmann/json/issues/429)
-- Forward declare-only header? [\#427](https://github.com/nlohmann/json/issues/427)
-- Implicit conversion from array to object [\#425](https://github.com/nlohmann/json/issues/425)
-- error C4996: 'strerror' when reading file [\#422](https://github.com/nlohmann/json/issues/422)
-- Get an error - JSON pointer must be empty or begin with '/' [\#421](https://github.com/nlohmann/json/issues/421)
-- size parameter for parse\(\) [\#419](https://github.com/nlohmann/json/issues/419)
-- json.hpp forcibly defines GCC\_VERSION [\#417](https://github.com/nlohmann/json/issues/417)
-- Use-of-uninitialized-value \(OSS-Fuzz issue 377\) [\#416](https://github.com/nlohmann/json/issues/416)
-- comparing to 0 literal [\#414](https://github.com/nlohmann/json/issues/414)
-- Single char converted to ASCII code instead of string [\#413](https://github.com/nlohmann/json/issues/413)
-- How to know if a string was parsed as utf-8? [\#406](https://github.com/nlohmann/json/issues/406)
-- Overloaded += to add objects to an array makes no sense? [\#404](https://github.com/nlohmann/json/issues/404)
-- Finding a value in an array [\#399](https://github.com/nlohmann/json/issues/399)
-- add release information in static function [\#397](https://github.com/nlohmann/json/issues/397)
-- Optimize memory usage of json objects in combination with binary serialization [\#373](https://github.com/nlohmann/json/issues/373)
-- Conversion operators not considered [\#369](https://github.com/nlohmann/json/issues/369)
-- Append ".0" to serialized floating\_point values that are digits-only. [\#362](https://github.com/nlohmann/json/issues/362)
-- Add a customization point for user-defined types [\#328](https://github.com/nlohmann/json/issues/328)
-- Conformance report for reference [\#307](https://github.com/nlohmann/json/issues/307)
-- Document the best way to serialize/deserialize user defined types to json [\#298](https://github.com/nlohmann/json/issues/298)
-- Add StringView template typename to basic\_json [\#297](https://github.com/nlohmann/json/issues/297)
-- \[Improvement\] Add option to remove exceptions [\#296](https://github.com/nlohmann/json/issues/296)
-- Performance in miloyip/nativejson-benchmark [\#202](https://github.com/nlohmann/json/issues/202)
-
-- conversion from/to user-defined types [\#435](https://github.com/nlohmann/json/pull/435) ([nlohmann](https://github.com/nlohmann))
-- Fix documentation error [\#430](https://github.com/nlohmann/json/pull/430) ([vjon](https://github.com/vjon))
-
-## [v2.0.10](https://github.com/nlohmann/json/releases/tag/v2.0.10) (2017-01-02)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/2.0.10...v2.0.10)
-
-## [2.0.10](https://github.com/nlohmann/json/releases/tag/2.0.10) (2017-01-02)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v2.0.9...2.0.10)
-
-- Heap-buffer-overflow \(OSS-Fuzz issue 367\) [\#412](https://github.com/nlohmann/json/issues/412)
-- Heap-buffer-overflow \(OSS-Fuzz issue 366\) [\#411](https://github.com/nlohmann/json/issues/411)
-- Use-of-uninitialized-value \(OSS-Fuzz issue 347\) [\#409](https://github.com/nlohmann/json/issues/409)
-- Heap-buffer-overflow \(OSS-Fuzz issue 344\) [\#408](https://github.com/nlohmann/json/issues/408)
-- Heap-buffer-overflow \(OSS-Fuzz issue 343\) [\#407](https://github.com/nlohmann/json/issues/407)
-- Heap-buffer-overflow \(OSS-Fuzz issue 342\) [\#405](https://github.com/nlohmann/json/issues/405)
-- strerror throwing error in compiler VS2015 [\#403](https://github.com/nlohmann/json/issues/403)
-- json::parse of std::string being underlined by Visual Studio [\#402](https://github.com/nlohmann/json/issues/402)
-- Explicitly getting string without .dump\(\) [\#401](https://github.com/nlohmann/json/issues/401)
-- Possible to speed up json::parse? [\#398](https://github.com/nlohmann/json/issues/398)
-- the alphabetic order in the code influence console\_output. [\#396](https://github.com/nlohmann/json/issues/396)
-- Execute tests with clang sanitizers [\#394](https://github.com/nlohmann/json/issues/394)
-- Check if library can be used with ETL [\#361](https://github.com/nlohmann/json/issues/361)
-
-- Feature/clang sanitize [\#410](https://github.com/nlohmann/json/pull/410) ([Daniel599](https://github.com/Daniel599))
-- Add Doozer build badge [\#400](https://github.com/nlohmann/json/pull/400) ([andoma](https://github.com/andoma))
-
-## [v2.0.9](https://github.com/nlohmann/json/releases/tag/v2.0.9) (2016-12-16)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/2.0.9...v2.0.9)
-
-## [2.0.9](https://github.com/nlohmann/json/releases/tag/2.0.9) (2016-12-16)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v2.0.8...2.0.9)
-
-- \#pragma GCC diagnostic ignored "-Wdocumentation" [\#393](https://github.com/nlohmann/json/issues/393)
-- How to parse this json file and write separate sub object as json files? [\#392](https://github.com/nlohmann/json/issues/392)
-- Integer-overflow \(OSS-Fuzz issue 267\) [\#389](https://github.com/nlohmann/json/issues/389)
-- Implement indefinite-length types from RFC 7049 [\#387](https://github.com/nlohmann/json/issues/387)
-- template parameter "T" is not used in declaring the parameter types of function template [\#386](https://github.com/nlohmann/json/issues/386)
-- Serializing json instances containing already serialized string values without escaping [\#385](https://github.com/nlohmann/json/issues/385)
-- Add test cases from RFC 7049 [\#384](https://github.com/nlohmann/json/issues/384)
-- Add a table of contents to the README file [\#383](https://github.com/nlohmann/json/issues/383)
-- Update FAQ section in the guidelines for contributing [\#382](https://github.com/nlohmann/json/issues/382)
-- Allow for forward declaring nlohmann::json [\#381](https://github.com/nlohmann/json/issues/381)
-- Bug in overflow detection when parsing integers [\#380](https://github.com/nlohmann/json/issues/380)
-- A unique name to mention the library? [\#377](https://github.com/nlohmann/json/issues/377)
-- Non-unique keys in objects. [\#375](https://github.com/nlohmann/json/issues/375)
-- Request: binary serialization/deserialization [\#358](https://github.com/nlohmann/json/issues/358)
-
-- Replace class iterator and const\_iterator by using a single template class to reduce code. [\#395](https://github.com/nlohmann/json/pull/395) ([Bosswestfalen](https://github.com/Bosswestfalen))
-- Clang: quiet a warning [\#391](https://github.com/nlohmann/json/pull/391) ([jaredgrubb](https://github.com/jaredgrubb))
-- Fix issue \#380: Signed integer overflow check [\#390](https://github.com/nlohmann/json/pull/390) ([qwename](https://github.com/qwename))
-
-## [v2.0.8](https://github.com/nlohmann/json/releases/tag/v2.0.8) (2016-12-02)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/2.0.8...v2.0.8)
-
-## [2.0.8](https://github.com/nlohmann/json/releases/tag/2.0.8) (2016-12-02)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v2.0.7...2.0.8)
-
-- Reading from file [\#374](https://github.com/nlohmann/json/issues/374)
-- Compiler warnings? [\#372](https://github.com/nlohmann/json/issues/372)
-- docs: how to release a json object in memory? [\#371](https://github.com/nlohmann/json/issues/371)
-- crash in dump [\#370](https://github.com/nlohmann/json/issues/370)
-- Coverity issue \(FORWARD\_NULL\) in lexer\(std::istream& s\) [\#368](https://github.com/nlohmann/json/issues/368)
-- json::parse on failed stream gets stuck [\#366](https://github.com/nlohmann/json/issues/366)
-- Performance improvements [\#365](https://github.com/nlohmann/json/issues/365)
-- 'to\_string' is not a member of 'std' [\#364](https://github.com/nlohmann/json/issues/364)
-- Crash in dump\(\) from a static object [\#359](https://github.com/nlohmann/json/issues/359)
-- json::parse\(...\) vs json j; j.parse\(...\) [\#357](https://github.com/nlohmann/json/issues/357)
-- Hi, is there any method to dump json to string with the insert order rather than alphabets [\#356](https://github.com/nlohmann/json/issues/356)
-- Provide an example of reading from an json with only a key that has an array of strings. [\#354](https://github.com/nlohmann/json/issues/354)
-- Request: access with default value. [\#353](https://github.com/nlohmann/json/issues/353)
-- {} and \[\] causes parser error. [\#352](https://github.com/nlohmann/json/issues/352)
-- Reading a JSON file into a JSON object [\#351](https://github.com/nlohmann/json/issues/351)
-- Request: 'emplace\_back' [\#349](https://github.com/nlohmann/json/issues/349)
-- Is it possible to stream data through the json parser without storing everything in memory? [\#347](https://github.com/nlohmann/json/issues/347)
-- pure virtual conversion operator [\#346](https://github.com/nlohmann/json/issues/346)
-- Floating point precision lost [\#345](https://github.com/nlohmann/json/issues/345)
-- unit-conversions SIGSEGV on armv7hl [\#303](https://github.com/nlohmann/json/issues/303)
-- Coverity scan fails [\#299](https://github.com/nlohmann/json/issues/299)
-- Using QString as string type [\#274](https://github.com/nlohmann/json/issues/274)
-
-## [v2.0.7](https://github.com/nlohmann/json/releases/tag/v2.0.7) (2016-11-02)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v2.0.6...v2.0.7)
-
-- JSON5 [\#348](https://github.com/nlohmann/json/issues/348)
-- Check "Parsing JSON is a Minefield" [\#344](https://github.com/nlohmann/json/issues/344)
-- Allow hex numbers [\#342](https://github.com/nlohmann/json/issues/342)
-- Convert strings to numbers [\#341](https://github.com/nlohmann/json/issues/341)
-- ""-operators ignore the length parameter [\#340](https://github.com/nlohmann/json/issues/340)
-- JSON into std::tuple [\#339](https://github.com/nlohmann/json/issues/339)
-- JSON into vector [\#335](https://github.com/nlohmann/json/issues/335)
-- Installing with Homebrew on Mac Errors \(El Capitan\) [\#331](https://github.com/nlohmann/json/issues/331)
-- g++ make check results in error [\#312](https://github.com/nlohmann/json/issues/312)
-- Cannot convert from 'json' to 'char' [\#276](https://github.com/nlohmann/json/issues/276)
-- Please add a Pretty-Print option for arrays to stay always in one line [\#229](https://github.com/nlohmann/json/issues/229)
-- Conversion to STL map\\> gives error [\#220](https://github.com/nlohmann/json/issues/220)
-- std::unorderd\_map cannot be used as ObjectType [\#164](https://github.com/nlohmann/json/issues/164)
-
-- fix minor grammar/style issue in README.md [\#336](https://github.com/nlohmann/json/pull/336) ([seeekr](https://github.com/seeekr))
-
-## [v2.0.6](https://github.com/nlohmann/json/releases/tag/v2.0.6) (2016-10-15)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v2.0.5...v2.0.6)
-
-- How to handle json files? [\#333](https://github.com/nlohmann/json/issues/333)
-- This file requires compiler and library support .... [\#332](https://github.com/nlohmann/json/issues/332)
-- Segmentation fault on saving json to file [\#326](https://github.com/nlohmann/json/issues/326)
-- parse error - unexpected \ with 2.0.5 [\#325](https://github.com/nlohmann/json/issues/325)
-- Add nested object capability to pointers [\#323](https://github.com/nlohmann/json/issues/323)
-- Fix usage examples' comments for std::multiset [\#322](https://github.com/nlohmann/json/issues/322)
-- json\_unit runs forever when executed in build directory [\#319](https://github.com/nlohmann/json/issues/319)
-- Visual studio 2015 update3 true != TRUE [\#317](https://github.com/nlohmann/json/issues/317)
-- releasing single header file in compressed format [\#316](https://github.com/nlohmann/json/issues/316)
-- json object from std::ifstream [\#315](https://github.com/nlohmann/json/issues/315)
-
-- make has\_mapped\_type struct friendly [\#324](https://github.com/nlohmann/json/pull/324) ([vpetrigo](https://github.com/vpetrigo))
-- Fix usage examples' comments for std::multiset [\#321](https://github.com/nlohmann/json/pull/321) ([vasild](https://github.com/vasild))
-- Include dir relocation [\#318](https://github.com/nlohmann/json/pull/318) ([ChristophJud](https://github.com/ChristophJud))
-- trivial documentation fix [\#313](https://github.com/nlohmann/json/pull/313) ([5tefan](https://github.com/5tefan))
-
-## [v2.0.5](https://github.com/nlohmann/json/releases/tag/v2.0.5) (2016-09-14)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v2.0.4...v2.0.5)
-
-- \[feature request\]: schema validator and comments [\#311](https://github.com/nlohmann/json/issues/311)
-- make json\_benchmarks no longer working in 2.0.4 [\#310](https://github.com/nlohmann/json/issues/310)
-- Segmentation fault \(core dumped\) [\#309](https://github.com/nlohmann/json/issues/309)
-- No matching member function for call to 'get\_impl' [\#308](https://github.com/nlohmann/json/issues/308)
-
-## [v2.0.4](https://github.com/nlohmann/json/releases/tag/v2.0.4) (2016-09-11)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v2.0.3...v2.0.4)
-
-- Parsing fails without space at end of file [\#306](https://github.com/nlohmann/json/issues/306)
-- json schema validator [\#305](https://github.com/nlohmann/json/issues/305)
-- Unused variable warning [\#304](https://github.com/nlohmann/json/issues/304)
-
-## [v2.0.3](https://github.com/nlohmann/json/releases/tag/v2.0.3) (2016-08-31)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v2.0.2...v2.0.3)
-
-- warning C4706: assignment within conditional expression [\#295](https://github.com/nlohmann/json/issues/295)
-- Q: Is it possible to build json tree from already UTF8 encoded values? [\#293](https://github.com/nlohmann/json/issues/293)
-- Equality operator results in array when assigned object [\#292](https://github.com/nlohmann/json/issues/292)
-- Support for integers not from the range \[-\(2\*\*53\)+1, \(2\*\*53\)-1\] in parser [\#291](https://github.com/nlohmann/json/issues/291)
-- Support for iterator-range parsing [\#290](https://github.com/nlohmann/json/issues/290)
-- Horribly inconsistent behavior between const/non-const reference in operator \[\] \(\) [\#289](https://github.com/nlohmann/json/issues/289)
-- Silently get numbers into smaller types [\#288](https://github.com/nlohmann/json/issues/288)
-- Incorrect parsing of large int64\_t numbers [\#287](https://github.com/nlohmann/json/issues/287)
-- \[question\]: macro to disable floating point support [\#284](https://github.com/nlohmann/json/issues/284)
-
-- unit-constructor1.cpp: Fix floating point truncation warning [\#300](https://github.com/nlohmann/json/pull/300) ([t-b](https://github.com/t-b))
-
-## [v2.0.2](https://github.com/nlohmann/json/releases/tag/v2.0.2) (2016-07-31)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v2.0.1...v2.0.2)
-
-- can function dump\(\) return string in the order I push in the json object ? [\#286](https://github.com/nlohmann/json/issues/286)
-- Error on the Mac: Undefined symbols for architecture x86\_64 [\#285](https://github.com/nlohmann/json/issues/285)
-- value\(\) does not work with \_json\_pointer types [\#283](https://github.com/nlohmann/json/issues/283)
-- Build error for std::int64 [\#282](https://github.com/nlohmann/json/issues/282)
-- strings can't be accessed after dump\(\)-\>parse\(\) - type is lost [\#281](https://github.com/nlohmann/json/issues/281)
-- Easy serialization of classes [\#280](https://github.com/nlohmann/json/issues/280)
-- recursive data structures [\#277](https://github.com/nlohmann/json/issues/277)
-- hexify\(\) function emits conversion warning [\#270](https://github.com/nlohmann/json/issues/270)
-
-- let the makefile choose the correct sed [\#279](https://github.com/nlohmann/json/pull/279) ([murinicanor](https://github.com/murinicanor))
-- Update hexify to use array lookup instead of ternary \(\#270\) [\#275](https://github.com/nlohmann/json/pull/275) ([dtoma](https://github.com/dtoma))
-
-## [v2.0.1](https://github.com/nlohmann/json/releases/tag/v2.0.1) (2016-06-28)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v2.0.0...v2.0.1)
-
-- Compilation error. [\#273](https://github.com/nlohmann/json/issues/273)
-- dump\(\) performance degradation in v2 [\#272](https://github.com/nlohmann/json/issues/272)
-
-- fixed a tiny typo [\#271](https://github.com/nlohmann/json/pull/271) ([feroldi](https://github.com/feroldi))
-
-## [v2.0.0](https://github.com/nlohmann/json/releases/tag/v2.0.0) (2016-06-23)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v1.1.0...v2.0.0)
-
-- json::diff generates incorrect patch when removing multiple array elements. [\#269](https://github.com/nlohmann/json/issues/269)
-- Docs - What does Json\[key\] return? [\#267](https://github.com/nlohmann/json/issues/267)
-- Compiler Errors With JSON.hpp [\#265](https://github.com/nlohmann/json/issues/265)
-- Ambiguous push\_back and operator+= overloads [\#263](https://github.com/nlohmann/json/issues/263)
-- Preseving order of items in json [\#262](https://github.com/nlohmann/json/issues/262)
-- '\' char problem in strings [\#261](https://github.com/nlohmann/json/issues/261)
-- VS2015 compile fail [\#260](https://github.com/nlohmann/json/issues/260)
-- -Wconversion warning [\#259](https://github.com/nlohmann/json/issues/259)
-- Maybe a bug [\#258](https://github.com/nlohmann/json/issues/258)
-- Few tests failed on Visual C++ 2015 [\#257](https://github.com/nlohmann/json/issues/257)
-- Access keys when iteration with new for loop C++11 [\#256](https://github.com/nlohmann/json/issues/256)
-- multiline text values [\#255](https://github.com/nlohmann/json/issues/255)
-- Error when using json in g++ [\#254](https://github.com/nlohmann/json/issues/254)
-- is the release 2.0? [\#253](https://github.com/nlohmann/json/issues/253)
-- concatenate objects [\#252](https://github.com/nlohmann/json/issues/252)
-- Encoding [\#251](https://github.com/nlohmann/json/issues/251)
-- Unable to build example for constructing json object with stringstreams [\#250](https://github.com/nlohmann/json/issues/250)
-- Hexadecimal support [\#249](https://github.com/nlohmann/json/issues/249)
-- Update long-term goals [\#246](https://github.com/nlohmann/json/issues/246)
-- Contribution To This Json Project [\#245](https://github.com/nlohmann/json/issues/245)
-- Trouble using parser with initial dictionary [\#243](https://github.com/nlohmann/json/issues/243)
-- Unit test fails when doing a CMake out-of-tree build [\#241](https://github.com/nlohmann/json/issues/241)
-- -Wconversion warnings [\#239](https://github.com/nlohmann/json/issues/239)
-- Additional integration options [\#237](https://github.com/nlohmann/json/issues/237)
-- .get\\(\) works for non spaced string but returns as array for spaced/longer strings [\#236](https://github.com/nlohmann/json/issues/236)
-- ambiguous overload for 'push\_back' and 'operator+=' [\#235](https://github.com/nlohmann/json/issues/235)
-- Can't use basic\_json::iterator as a base iterator for std::move\_iterator [\#233](https://github.com/nlohmann/json/issues/233)
-- json object's creation can freezes execution [\#231](https://github.com/nlohmann/json/issues/231)
-- Incorrect dumping of parsed numbers with exponents, but without decimal places [\#230](https://github.com/nlohmann/json/issues/230)
-- double values are serialized with commas as decimal points [\#228](https://github.com/nlohmann/json/issues/228)
-- Move semantics with std::initializer\_list [\#225](https://github.com/nlohmann/json/issues/225)
-- replace emplace [\#224](https://github.com/nlohmann/json/issues/224)
-- abort during getline in yyfill [\#223](https://github.com/nlohmann/json/issues/223)
-- free\(\): invalid pointer error in GCC 5.2.1 [\#221](https://github.com/nlohmann/json/issues/221)
-- Error compile Android NDK error: 'strtof' is not a member of 'std' [\#219](https://github.com/nlohmann/json/issues/219)
-- Wrong link in the README.md [\#217](https://github.com/nlohmann/json/issues/217)
-- Wide character strings not supported [\#216](https://github.com/nlohmann/json/issues/216)
-- Memory allocations using range-based for loops [\#214](https://github.com/nlohmann/json/issues/214)
-- would you like to support gcc 4.8.1? [\#211](https://github.com/nlohmann/json/issues/211)
-- Reading concatenated json's from an istream [\#210](https://github.com/nlohmann/json/issues/210)
-- Conflicting typedef of ssize\_t on Windows 32 bit when using Boost.Python [\#204](https://github.com/nlohmann/json/issues/204)
-- Inconsistency between operator\[\] and push\_back [\#203](https://github.com/nlohmann/json/issues/203)
-- Small bugs in json.hpp \(get\_number\) and unit.cpp \(non-standard integer type test\) [\#199](https://github.com/nlohmann/json/issues/199)
-- GCC/clang floating point parsing bug in strtod\(\) [\#195](https://github.com/nlohmann/json/issues/195)
-- What is within scope? [\#192](https://github.com/nlohmann/json/issues/192)
-- Bugs in miloyip/nativejson-benchmark: roundtrips [\#187](https://github.com/nlohmann/json/issues/187)
-- Floating point exceptions [\#181](https://github.com/nlohmann/json/issues/181)
-- Integer conversion to unsigned [\#178](https://github.com/nlohmann/json/issues/178)
-- map string string fails to compile [\#176](https://github.com/nlohmann/json/issues/176)
-- In basic\_json::basic\_json\(const CompatibleArrayType& val\), the requirement of CompatibleArrayType is not strict enough. [\#174](https://github.com/nlohmann/json/issues/174)
-- Provide a FAQ [\#163](https://github.com/nlohmann/json/issues/163)
-- Implicit assignment to std::string fails [\#144](https://github.com/nlohmann/json/issues/144)
-
-- Fix Issue \#265 [\#266](https://github.com/nlohmann/json/pull/266) ([06needhamt](https://github.com/06needhamt))
-- Define CMake/CTest tests [\#247](https://github.com/nlohmann/json/pull/247) ([robertmrk](https://github.com/robertmrk))
-- Out of tree builds and a few other miscellaneous CMake cleanups. [\#242](https://github.com/nlohmann/json/pull/242) ([ChrisKitching](https://github.com/ChrisKitching))
-- Implement additional integration options [\#238](https://github.com/nlohmann/json/pull/238) ([robertmrk](https://github.com/robertmrk))
-- make serialization locale-independent [\#232](https://github.com/nlohmann/json/pull/232) ([nlohmann](https://github.com/nlohmann))
-- fixes \#223 by updating README.md [\#227](https://github.com/nlohmann/json/pull/227) ([kevin--](https://github.com/kevin--))
-- Use namespace std for int64\_t and uint64\_t [\#226](https://github.com/nlohmann/json/pull/226) ([lv-zheng](https://github.com/lv-zheng))
-- Added missing cerrno header to fix ERANGE compile error on android [\#222](https://github.com/nlohmann/json/pull/222) ([Teemperor](https://github.com/Teemperor))
-- Corrected readme [\#218](https://github.com/nlohmann/json/pull/218) ([Annihil](https://github.com/Annihil))
-- Create PULL\_REQUEST\_TEMPLATE.md [\#213](https://github.com/nlohmann/json/pull/213) ([whackashoe](https://github.com/whackashoe))
-- fixed noexcept; added constexpr [\#208](https://github.com/nlohmann/json/pull/208) ([nlohmann](https://github.com/nlohmann))
-- Add support for afl-fuzz testing [\#207](https://github.com/nlohmann/json/pull/207) ([mykter](https://github.com/mykter))
-- replaced ssize\_t occurrences with auto \(addresses \#204\) [\#205](https://github.com/nlohmann/json/pull/205) ([nlohmann](https://github.com/nlohmann))
-- Fixed issue \#199 - Small bugs in json.hpp \(get\_number\) and unit.cpp \(non-standard integer type test\) [\#200](https://github.com/nlohmann/json/pull/200) ([twelsby](https://github.com/twelsby))
-- Fix broken link [\#197](https://github.com/nlohmann/json/pull/197) ([vog](https://github.com/vog))
-- Issue \#195 - update Travis to Trusty due to gcc/clang strtod\(\) bug [\#196](https://github.com/nlohmann/json/pull/196) ([twelsby](https://github.com/twelsby))
-- Issue \#178 - Extending support to full uint64\_t/int64\_t range and unsigned type \(updated\) [\#193](https://github.com/nlohmann/json/pull/193) ([twelsby](https://github.com/twelsby))
-
-## [v1.1.0](https://github.com/nlohmann/json/releases/tag/v1.1.0) (2016-01-24)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v1.0.0...v1.1.0)
-
-- Small error in pull \#185 [\#194](https://github.com/nlohmann/json/issues/194)
-- Bugs in miloyip/nativejson-benchmark: floating-point parsing [\#186](https://github.com/nlohmann/json/issues/186)
-- Floating point equality [\#185](https://github.com/nlohmann/json/issues/185)
-- Unused variables in catch [\#180](https://github.com/nlohmann/json/issues/180)
-- Typo in documentation [\#179](https://github.com/nlohmann/json/issues/179)
-- JSON performance benchmark comparision [\#177](https://github.com/nlohmann/json/issues/177)
-- Since re2c is often ignored in pull requests, it may make sense to make a contributing.md file [\#175](https://github.com/nlohmann/json/issues/175)
-- Question about exceptions [\#173](https://github.com/nlohmann/json/issues/173)
-- Android? [\#172](https://github.com/nlohmann/json/issues/172)
-- Cannot index by key of type static constexpr const char\* [\#171](https://github.com/nlohmann/json/issues/171)
-- Add assertions [\#168](https://github.com/nlohmann/json/issues/168)
-- MSVC 2015 build fails when attempting to compare object\_t [\#167](https://github.com/nlohmann/json/issues/167)
-- Member detector is not portable [\#166](https://github.com/nlohmann/json/issues/166)
-- Unnecessary const\_cast [\#162](https://github.com/nlohmann/json/issues/162)
-- Question about get\_ref\(\) [\#128](https://github.com/nlohmann/json/issues/128)
-- range based for loop for objects [\#83](https://github.com/nlohmann/json/issues/83)
-- Consider submitting this to the Boost Library Incubator [\#66](https://github.com/nlohmann/json/issues/66)
-
-- Fixed Issue \#186 - add strto\(f|d|ld\) overload wrappers, "-0.0" special case and FP trailing zero [\#191](https://github.com/nlohmann/json/pull/191) ([twelsby](https://github.com/twelsby))
-- Issue \#185 - remove approx\(\) and use \#pragma to kill warnings [\#190](https://github.com/nlohmann/json/pull/190) ([twelsby](https://github.com/twelsby))
-- Fixed Issue \#171 - added two extra template overloads of operator\[\] for T\* arguments [\#189](https://github.com/nlohmann/json/pull/189) ([twelsby](https://github.com/twelsby))
-- Fixed issue \#167 - removed operator ValueType\(\) condition for VS2015 [\#188](https://github.com/nlohmann/json/pull/188) ([twelsby](https://github.com/twelsby))
-- Implementation of get\_ref\(\) [\#184](https://github.com/nlohmann/json/pull/184) ([dariomt](https://github.com/dariomt))
-- Fixed some typos in CONTRIBUTING.md [\#182](https://github.com/nlohmann/json/pull/182) ([nibroc](https://github.com/nibroc))
-
-## [v1.0.0](https://github.com/nlohmann/json/releases/tag/v1.0.0) (2015-12-27)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/v1.0.0-rc1...v1.0.0)
-
-- add key name to exception [\#160](https://github.com/nlohmann/json/issues/160)
-- Getting member discarding qualifyer [\#159](https://github.com/nlohmann/json/issues/159)
-- basic\_json::iterator::value\(\) output includes quotes while basic\_json::iterator::key\(\) doesn't [\#158](https://github.com/nlohmann/json/issues/158)
-- Indexing `const basic_json<>` with `const basic_string` [\#157](https://github.com/nlohmann/json/issues/157)
-- token\_type\_name\(token\_type t\): not all control paths return a value [\#156](https://github.com/nlohmann/json/issues/156)
-- prevent json.hpp from emitting compiler warnings [\#154](https://github.com/nlohmann/json/issues/154)
-- json::parse\(string\) does not check utf8 bom [\#152](https://github.com/nlohmann/json/issues/152)
-- unsigned 64bit values output as signed [\#151](https://github.com/nlohmann/json/issues/151)
-- Wish feature: json5 [\#150](https://github.com/nlohmann/json/issues/150)
-- Unable to compile on MSVC 2015 with SDL checking enabled: This function or variable may be unsafe. [\#149](https://github.com/nlohmann/json/issues/149)
-- "Json Object" type does not keep object order [\#148](https://github.com/nlohmann/json/issues/148)
-- dump\(\) convert strings encoded by utf-8 to shift-jis on windows 10. [\#147](https://github.com/nlohmann/json/issues/147)
-- Unable to get field names in a json object [\#145](https://github.com/nlohmann/json/issues/145)
-- Question: Is the use of incomplete type correct? [\#138](https://github.com/nlohmann/json/issues/138)
-- json.hpp:5746:32: error: 'to\_string' is not a member of 'std' [\#136](https://github.com/nlohmann/json/issues/136)
-- Bug in basic\_json::operator\[\] const overload [\#135](https://github.com/nlohmann/json/issues/135)
-- wrong enable\_if for const pointer \(instead of pointer-to-const\) [\#134](https://github.com/nlohmann/json/issues/134)
-- overload of at\(\) with default value [\#133](https://github.com/nlohmann/json/issues/133)
-- Splitting source [\#132](https://github.com/nlohmann/json/issues/132)
-- Question about get\_ptr\(\) [\#127](https://github.com/nlohmann/json/issues/127)
-- Visual Studio 14 Debug assertion failed [\#125](https://github.com/nlohmann/json/issues/125)
-- Memory leak in face of exceptions [\#118](https://github.com/nlohmann/json/issues/118)
-- Find and Count for arrays [\#117](https://github.com/nlohmann/json/issues/117)
-- dynamically constructing an arbitrarily nested object [\#114](https://github.com/nlohmann/json/issues/114)
-- Returning any data type [\#113](https://github.com/nlohmann/json/issues/113)
-- Compile error with g++ 4.9.3 cygwin 64-bit [\#112](https://github.com/nlohmann/json/issues/112)
-- insert json array issue with gcc4.8.2 [\#110](https://github.com/nlohmann/json/issues/110)
-- error: unterminated raw string [\#109](https://github.com/nlohmann/json/issues/109)
-- vector\ copy constructor really weird [\#108](https://github.com/nlohmann/json/issues/108)
-- \[clang-3.6.2\] string/sstream with number to json issue [\#107](https://github.com/nlohmann/json/issues/107)
-- object field accessors [\#103](https://github.com/nlohmann/json/issues/103)
-- v8pp and json [\#95](https://github.com/nlohmann/json/issues/95)
-- Wishlist [\#65](https://github.com/nlohmann/json/issues/65)
-- Windows/Visual Studio \(through 2013\) is unsupported [\#62](https://github.com/nlohmann/json/issues/62)
-
-- Replace sprintf with hex function, this fixes \#149 [\#153](https://github.com/nlohmann/json/pull/153) ([whackashoe](https://github.com/whackashoe))
-- Fix character skipping after a surrogate pair [\#146](https://github.com/nlohmann/json/pull/146) ([robertmrk](https://github.com/robertmrk))
-- Detect correctly pointer-to-const [\#137](https://github.com/nlohmann/json/pull/137) ([dariomt](https://github.com/dariomt))
-- disabled "CopyAssignable" test for MSVC in Debug mode, see \#125 [\#131](https://github.com/nlohmann/json/pull/131) ([dariomt](https://github.com/dariomt))
-- removed stream operator for iterator, resolution for \#125 [\#130](https://github.com/nlohmann/json/pull/130) ([dariomt](https://github.com/dariomt))
-- fixed typos in comments for examples [\#129](https://github.com/nlohmann/json/pull/129) ([dariomt](https://github.com/dariomt))
-- Remove superfluous inefficiency [\#126](https://github.com/nlohmann/json/pull/126) ([d-frey](https://github.com/d-frey))
-- remove invalid parameter '-stdlib=libc++' in CMakeLists.txt [\#124](https://github.com/nlohmann/json/pull/124) ([emvivre](https://github.com/emvivre))
-- exception-safe object creation, fixes \#118 [\#122](https://github.com/nlohmann/json/pull/122) ([d-frey](https://github.com/d-frey))
-- Fix small oversight. [\#121](https://github.com/nlohmann/json/pull/121) ([ColinH](https://github.com/ColinH))
-- Overload parse\(\) to accept an rvalue reference [\#120](https://github.com/nlohmann/json/pull/120) ([silverweed](https://github.com/silverweed))
-- Use the right variable name in doc string [\#115](https://github.com/nlohmann/json/pull/115) ([whoshuu](https://github.com/whoshuu))
-
-## [v1.0.0-rc1](https://github.com/nlohmann/json/releases/tag/v1.0.0-rc1) (2015-07-26)
-
-[Full Changelog](https://github.com/nlohmann/json/compare/4502e7e51c0569419c26e75fbdd5748170603e54...v1.0.0-rc1)
-
-- Finish documenting the public interface in Doxygen [\#102](https://github.com/nlohmann/json/issues/102)
-- Binary string causes numbers to be dumped as hex [\#101](https://github.com/nlohmann/json/issues/101)
-- failed to iterator json object with reverse\_iterator [\#100](https://github.com/nlohmann/json/issues/100)
-- 'noexcept' : unknown override specifier [\#99](https://github.com/nlohmann/json/issues/99)
-- json float parsing problem [\#98](https://github.com/nlohmann/json/issues/98)
-- Adjust wording to JSON RFC [\#97](https://github.com/nlohmann/json/issues/97)
-- static analysis warnings [\#94](https://github.com/nlohmann/json/issues/94)
-- reverse\_iterator operator inheritance problem [\#93](https://github.com/nlohmann/json/issues/93)
-- init error [\#92](https://github.com/nlohmann/json/issues/92)
-- access by \(const\) reference [\#91](https://github.com/nlohmann/json/issues/91)
-- is\_integer and is\_float tests [\#90](https://github.com/nlohmann/json/issues/90)
-- Nonstandard integer type [\#89](https://github.com/nlohmann/json/issues/89)
-- static library build [\#84](https://github.com/nlohmann/json/issues/84)
-- lexer::get\_number return NAN [\#82](https://github.com/nlohmann/json/issues/82)
-- MinGW have no std::to\_string [\#80](https://github.com/nlohmann/json/issues/80)
-- Incorrect behaviour of basic\_json::count method [\#78](https://github.com/nlohmann/json/issues/78)
-- Invoking is\_array\(\) function creates "null" value [\#77](https://github.com/nlohmann/json/issues/77)
-- dump\(\) / parse\(\) not idempotent [\#76](https://github.com/nlohmann/json/issues/76)
-- Handle infinity and NaN cases [\#70](https://github.com/nlohmann/json/issues/70)
-- errors in g++-4.8.1 [\#68](https://github.com/nlohmann/json/issues/68)
-- Keys when iterating over objects [\#67](https://github.com/nlohmann/json/issues/67)
-- Compilation results in tons of warnings [\#64](https://github.com/nlohmann/json/issues/64)
-- Complete brief documentation [\#61](https://github.com/nlohmann/json/issues/61)
-- Double quotation mark is not parsed correctly [\#60](https://github.com/nlohmann/json/issues/60)
-- Get coverage back to 100% [\#58](https://github.com/nlohmann/json/issues/58)
-- erase elements using iterators [\#57](https://github.com/nlohmann/json/issues/57)
-- Removing item from array [\#56](https://github.com/nlohmann/json/issues/56)
-- Serialize/Deserialize like PHP? [\#55](https://github.com/nlohmann/json/issues/55)
-- Numbers as keys [\#54](https://github.com/nlohmann/json/issues/54)
-- Why are elements alphabetized on key while iterating? [\#53](https://github.com/nlohmann/json/issues/53)
-- Document erase, count, and iterators key and value [\#52](https://github.com/nlohmann/json/issues/52)
-- Do not use std::to\_string [\#51](https://github.com/nlohmann/json/issues/51)
-- Supported compilers [\#50](https://github.com/nlohmann/json/issues/50)
-- Confused about iterating through json objects [\#49](https://github.com/nlohmann/json/issues/49)
-- Use non-member begin/end [\#48](https://github.com/nlohmann/json/issues/48)
-- Erase key [\#47](https://github.com/nlohmann/json/issues/47)
-- Key iterator [\#46](https://github.com/nlohmann/json/issues/46)
-- Add count member function [\#45](https://github.com/nlohmann/json/issues/45)
-- Problem getting vector \(array\) of strings [\#44](https://github.com/nlohmann/json/issues/44)
-- Compilation error due to assuming that private=public [\#43](https://github.com/nlohmann/json/issues/43)
-- Use of deprecated implicit copy constructor [\#42](https://github.com/nlohmann/json/issues/42)
-- Printing attribute names [\#39](https://github.com/nlohmann/json/issues/39)
-- dumping a small number\_float just outputs 0.000000 [\#37](https://github.com/nlohmann/json/issues/37)
-- find is error [\#32](https://github.com/nlohmann/json/issues/32)
-- Avoid using spaces when encoding without pretty print [\#31](https://github.com/nlohmann/json/issues/31)
-- Cannot encode long numbers [\#30](https://github.com/nlohmann/json/issues/30)
-- segmentation fault when iterating over empty arrays/objects [\#28](https://github.com/nlohmann/json/issues/28)
-- Creating an empty array [\#27](https://github.com/nlohmann/json/issues/27)
-- Custom allocator support [\#25](https://github.com/nlohmann/json/issues/25)
-- make the type of the used string container customizable [\#20](https://github.com/nlohmann/json/issues/20)
-- Improper parsing of JSON string "\\" [\#17](https://github.com/nlohmann/json/issues/17)
-- create a header-only version [\#16](https://github.com/nlohmann/json/issues/16)
-- Don't return "const values" [\#15](https://github.com/nlohmann/json/issues/15)
-- Add to\_string overload for indentation [\#13](https://github.com/nlohmann/json/issues/13)
-- string parser does not recognize uncompliant strings [\#12](https://github.com/nlohmann/json/issues/12)
-- possible double-free in find function [\#11](https://github.com/nlohmann/json/issues/11)
-- UTF-8 encoding/deconding/testing [\#10](https://github.com/nlohmann/json/issues/10)
-- move code into namespace [\#9](https://github.com/nlohmann/json/issues/9)
-- free functions for explicit objects and arrays in initializer lists [\#8](https://github.com/nlohmann/json/issues/8)
-- unique\_ptr for ownership [\#7](https://github.com/nlohmann/json/issues/7)
-- Add unit tests [\#4](https://github.com/nlohmann/json/issues/4)
-- Drop C++98 support [\#3](https://github.com/nlohmann/json/issues/3)
-- Test case coverage [\#2](https://github.com/nlohmann/json/issues/2)
-- Runtime error in Travis job [\#1](https://github.com/nlohmann/json/issues/1)
-
-- Keyword 'inline' is useless when member functions are defined in headers [\#87](https://github.com/nlohmann/json/pull/87) ([ahamez](https://github.com/ahamez))
-- Remove useless typename [\#86](https://github.com/nlohmann/json/pull/86) ([ahamez](https://github.com/ahamez))
-- Avoid warning with Xcode's clang [\#85](https://github.com/nlohmann/json/pull/85) ([ahamez](https://github.com/ahamez))
-- Fix typos [\#73](https://github.com/nlohmann/json/pull/73) ([aqnouch](https://github.com/aqnouch))
-- Replace `default_callback` function with `nullptr` and check for null… [\#72](https://github.com/nlohmann/json/pull/72) ([aburgh](https://github.com/aburgh))
-- support enum [\#71](https://github.com/nlohmann/json/pull/71) ([likebeta](https://github.com/likebeta))
-- Fix performance regression introduced with the parsing callback feature. [\#69](https://github.com/nlohmann/json/pull/69) ([aburgh](https://github.com/aburgh))
-- Improve the implementations of the comparission-operators [\#63](https://github.com/nlohmann/json/pull/63) ([Florianjw](https://github.com/Florianjw))
-- Fix compilation of json\_unit with GCC 5 [\#59](https://github.com/nlohmann/json/pull/59) ([dkopecek](https://github.com/dkopecek))
-- Parse streams incrementally. [\#40](https://github.com/nlohmann/json/pull/40) ([aburgh](https://github.com/aburgh))
-- Feature/small float serialization [\#38](https://github.com/nlohmann/json/pull/38) ([jrandall](https://github.com/jrandall))
-- template version with re2c scanner [\#36](https://github.com/nlohmann/json/pull/36) ([nlohmann](https://github.com/nlohmann))
-- more descriptive documentation in example [\#33](https://github.com/nlohmann/json/pull/33) ([luxe](https://github.com/luxe))
-- Fix string conversion under Clang [\#26](https://github.com/nlohmann/json/pull/26) ([wancw](https://github.com/wancw))
-- Fixed dumping of strings [\#24](https://github.com/nlohmann/json/pull/24) ([Teemperor](https://github.com/Teemperor))
-- Added a remark to the readme that coverage is GCC only for now [\#23](https://github.com/nlohmann/json/pull/23) ([Teemperor](https://github.com/Teemperor))
-- Unicode escaping [\#22](https://github.com/nlohmann/json/pull/22) ([Teemperor](https://github.com/Teemperor))
-- Implemented the JSON spec for string parsing for everything but the \uXXXX escaping [\#21](https://github.com/nlohmann/json/pull/21) ([Teemperor](https://github.com/Teemperor))
-- add the std iterator typedefs to iterator and const\_iterator [\#19](https://github.com/nlohmann/json/pull/19) ([kirkshoop](https://github.com/kirkshoop))
-- Fixed escaped quotes [\#18](https://github.com/nlohmann/json/pull/18) ([Teemperor](https://github.com/Teemperor))
-- Fix double delete on std::bad\_alloc exception [\#14](https://github.com/nlohmann/json/pull/14) ([elliotgoodrich](https://github.com/elliotgoodrich))
-- Added CMake and lcov [\#6](https://github.com/nlohmann/json/pull/6) ([Teemperor](https://github.com/Teemperor))
-- Version 2.0 [\#5](https://github.com/nlohmann/json/pull/5) ([nlohmann](https://github.com/nlohmann))
-
-
-
-\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
diff --git a/yass/third_party/json/LICENSE.MIT b/yass/third_party/json/LICENSE.MIT
deleted file mode 100644
index 1c1f7a690d..0000000000
--- a/yass/third_party/json/LICENSE.MIT
+++ /dev/null
@@ -1,21 +0,0 @@
-MIT License
-
-Copyright (c) 2013-2022 Niels Lohmann
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
diff --git a/yass/third_party/json/LICENSES/Apache-2.0.txt b/yass/third_party/json/LICENSES/Apache-2.0.txt
deleted file mode 100644
index 137069b823..0000000000
--- a/yass/third_party/json/LICENSES/Apache-2.0.txt
+++ /dev/null
@@ -1,73 +0,0 @@
-Apache License
-Version 2.0, January 2004
-http://www.apache.org/licenses/
-
-TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
-1. Definitions.
-
-"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
-
-"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
-
-"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
-
-"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
-
-"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
-
-"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
-
-"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
-
-"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
-
-"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
-
-"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
-
-2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
-
-3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
-
-4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
-
- (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
-
- You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
-
-5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
-
-6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
-
-7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
-
-8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
-
-9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
-
-END OF TERMS AND CONDITIONS
-
-APPENDIX: How to apply the Apache License to your work.
-
-To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
-
-Copyright [yyyy] [name of copyright owner]
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
diff --git a/yass/third_party/json/LICENSES/BSD-3-Clause.txt b/yass/third_party/json/LICENSES/BSD-3-Clause.txt
deleted file mode 100644
index ea890afbc7..0000000000
--- a/yass/third_party/json/LICENSES/BSD-3-Clause.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-Copyright (c) .
-
-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
-
-1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
-
-2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
-
-3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/yass/third_party/json/LICENSES/GPL-3.0-only.txt b/yass/third_party/json/LICENSES/GPL-3.0-only.txt
deleted file mode 100644
index d41c0bd98f..0000000000
--- a/yass/third_party/json/LICENSES/GPL-3.0-only.txt
+++ /dev/null
@@ -1,232 +0,0 @@
-GNU GENERAL PUBLIC LICENSE
-Version 3, 29 June 2007
-
-Copyright © 2007 Free Software Foundation, Inc.
-
-Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
-
-Preamble
-
-The GNU General Public License is a free, copyleft license for software and other kinds of works.
-
-The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.
-
-When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.
-
-To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.
-
-For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.
-
-Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.
-
-For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.
-
-Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.
-
-Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.
-
-The precise terms and conditions for copying, distribution and modification follow.
-
-TERMS AND CONDITIONS
-
-0. Definitions.
-
-“This License” refers to version 3 of the GNU General Public License.
-
-“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.
-
-“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations.
-
-To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work.
-
-A “covered work” means either the unmodified Program or a work based on the Program.
-
-To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.
-
-To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.
-
-An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.
-
-1. Source Code.
-The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work.
-
-A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.
-
-The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.
-
-The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.
-
-The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.
-
-The Corresponding Source for a work in source code form is that same work.
-
-2. Basic Permissions.
-All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.
-
-You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.
-
-Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.
-
-3. Protecting Users' Legal Rights From Anti-Circumvention Law.
-No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.
-
-When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.
-
-4. Conveying Verbatim Copies.
-You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.
-
-You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.
-
-5. Conveying Modified Source Versions.
-You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:
-
- a) The work must carry prominent notices stating that you modified it, and giving a relevant date.
-
- b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”.
-
- c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.
-
- d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.
-
-A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.
-
-6. Conveying Non-Source Forms.
-You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:
-
- a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.
-
- b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.
-
- c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.
-
- d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.
-
- e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.
-
-A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.
-
-A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.
-
-“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.
-
-If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).
-
-The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.
-
-Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.
-
-7. Additional Terms.
-“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.
-
-When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.
-
-Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:
-
- a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or
-
- b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or
-
- c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or
-
- d) Limiting the use for publicity purposes of names of licensors or authors of the material; or
-
- e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or
-
- f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.
-
-All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.
-
-If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.
-
-Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.
-
-8. Termination.
-You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).
-
-However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.
-
-Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.
-
-Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.
-
-9. Acceptance Not Required for Having Copies.
-You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.
-
-10. Automatic Licensing of Downstream Recipients.
-Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.
-
-An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.
-
-You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.
-
-11. Patents.
-A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”.
-
-A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.
-
-Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.
-
-In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.
-
-If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.
-
-If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.
-
-A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.
-
-Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.
-
-12. No Surrender of Others' Freedom.
-If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.
-
-13. Use with the GNU Affero General Public License.
-Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.
-
-14. Revised Versions of this License.
-The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
-
-Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.
-
-If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.
-
-Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.
-
-15. Disclaimer of Warranty.
-THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
-16. Limitation of Liability.
-IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
-
-17. Interpretation of Sections 15 and 16.
-If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.
-
-END OF TERMS AND CONDITIONS
-
-How to Apply These Terms to Your New Programs
-
-If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.
-
-To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found.
-
-
- Copyright (C)
-
- This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
-
- This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License along with this program. If not, see .
-
-Also add information on how to contact you by electronic and paper mail.
-
-If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:
-
- Copyright (C)
- This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
- This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.
-
-The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an “about box”.
-
-You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see .
-
-The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read .
diff --git a/yass/third_party/json/LICENSES/MIT.txt b/yass/third_party/json/LICENSES/MIT.txt
deleted file mode 100644
index 2071b23b0e..0000000000
--- a/yass/third_party/json/LICENSES/MIT.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-MIT License
-
-Copyright (c)
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/yass/third_party/json/Makefile b/yass/third_party/json/Makefile
deleted file mode 100644
index a1b4e7328e..0000000000
--- a/yass/third_party/json/Makefile
+++ /dev/null
@@ -1,285 +0,0 @@
-.PHONY: pretty clean ChangeLog.md release
-
-##########################################################################
-# configuration
-##########################################################################
-
-# find GNU sed to use `-i` parameter
-SED:=$(shell command -v gsed || which sed)
-
-
-##########################################################################
-# source files
-##########################################################################
-
-# the list of sources in the include folder
-SRCS=$(shell find include -type f | sort)
-
-# the list of sources in the tests folder
-TESTS_SRCS=$(shell find tests -type f \( -name '*.hpp' -o -name '*.cpp' -o -name '*.cu' \) -not -path 'tests/thirdparty/*' -not -path 'tests/abi/include/nlohmann/*' | sort)
-
-# the single headers (amalgamated from the source files)
-AMALGAMATED_FILE=single_include/nlohmann/json.hpp
-AMALGAMATED_FWD_FILE=single_include/nlohmann/json_fwd.hpp
-
-
-##########################################################################
-# documentation of the Makefile's targets
-##########################################################################
-
-# main target
-all:
- @echo "amalgamate - amalgamate files single_include/nlohmann/json{,_fwd}.hpp from the include/nlohmann sources"
- @echo "ChangeLog.md - generate ChangeLog file"
- @echo "check-amalgamation - check whether sources have been amalgamated"
- @echo "clean - remove built files"
- @echo "doctest - compile example files and check their output"
- @echo "fuzz_testing - prepare fuzz testing of the JSON parser"
- @echo "fuzz_testing_bson - prepare fuzz testing of the BSON parser"
- @echo "fuzz_testing_cbor - prepare fuzz testing of the CBOR parser"
- @echo "fuzz_testing_msgpack - prepare fuzz testing of the MessagePack parser"
- @echo "fuzz_testing_ubjson - prepare fuzz testing of the UBJSON parser"
- @echo "pretty - beautify code with Artistic Style"
- @echo "run_benchmarks - build and run benchmarks"
-
-
-##########################################################################
-# documentation tests
-##########################################################################
-
-# compile example files and check output
-doctest:
- $(MAKE) check_output -C docs
-
-
-##########################################################################
-# benchmarks
-##########################################################################
-
-run_benchmarks:
- rm -fr cmake-build-benchmarks
- mkdir cmake-build-benchmarks
- cd cmake-build-benchmarks ; cmake ../tests/benchmarks -GNinja -DCMAKE_BUILD_TYPE=Release
- cd cmake-build-benchmarks ; ninja
- cd cmake-build-benchmarks ; ./json_benchmarks
-
-
-##########################################################################
-# fuzzing
-##########################################################################
-
-# the overall fuzz testing target
-fuzz_testing:
- rm -fr fuzz-testing
- mkdir -p fuzz-testing fuzz-testing/testcases fuzz-testing/out
- $(MAKE) parse_afl_fuzzer -C tests CXX=afl-clang++
- mv tests/parse_afl_fuzzer fuzz-testing/fuzzer
- find tests/data/json_tests -size -5k -name *json | xargs -I{} cp "{}" fuzz-testing/testcases
- @echo "Execute: afl-fuzz -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer"
-
-fuzz_testing_bson:
- rm -fr fuzz-testing
- mkdir -p fuzz-testing fuzz-testing/testcases fuzz-testing/out
- $(MAKE) parse_bson_fuzzer -C tests CXX=afl-clang++
- mv tests/parse_bson_fuzzer fuzz-testing/fuzzer
- find tests/data -size -5k -name *.bson | xargs -I{} cp "{}" fuzz-testing/testcases
- @echo "Execute: afl-fuzz -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer"
-
-fuzz_testing_cbor:
- rm -fr fuzz-testing
- mkdir -p fuzz-testing fuzz-testing/testcases fuzz-testing/out
- $(MAKE) parse_cbor_fuzzer -C tests CXX=afl-clang++
- mv tests/parse_cbor_fuzzer fuzz-testing/fuzzer
- find tests/data -size -5k -name *.cbor | xargs -I{} cp "{}" fuzz-testing/testcases
- @echo "Execute: afl-fuzz -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer"
-
-fuzz_testing_msgpack:
- rm -fr fuzz-testing
- mkdir -p fuzz-testing fuzz-testing/testcases fuzz-testing/out
- $(MAKE) parse_msgpack_fuzzer -C tests CXX=afl-clang++
- mv tests/parse_msgpack_fuzzer fuzz-testing/fuzzer
- find tests/data -size -5k -name *.msgpack | xargs -I{} cp "{}" fuzz-testing/testcases
- @echo "Execute: afl-fuzz -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer"
-
-fuzz_testing_ubjson:
- rm -fr fuzz-testing
- mkdir -p fuzz-testing fuzz-testing/testcases fuzz-testing/out
- $(MAKE) parse_ubjson_fuzzer -C tests CXX=afl-clang++
- mv tests/parse_ubjson_fuzzer fuzz-testing/fuzzer
- find tests/data -size -5k -name *.ubjson | xargs -I{} cp "{}" fuzz-testing/testcases
- @echo "Execute: afl-fuzz -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer"
-
-fuzzing-start:
- afl-fuzz -S fuzzer1 -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer > /dev/null &
- afl-fuzz -S fuzzer2 -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer > /dev/null &
- afl-fuzz -S fuzzer3 -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer > /dev/null &
- afl-fuzz -S fuzzer4 -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer > /dev/null &
- afl-fuzz -S fuzzer5 -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer > /dev/null &
- afl-fuzz -S fuzzer6 -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer > /dev/null &
- afl-fuzz -S fuzzer7 -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer > /dev/null &
- afl-fuzz -M fuzzer0 -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer
-
-fuzzing-stop:
- -killall fuzzer
- -killall afl-fuzz
-
-
-##########################################################################
-# Static analysis
-##########################################################################
-
-# call PVS-Studio Analyzer
-pvs_studio:
- rm -fr cmake-build-pvs-studio
- mkdir cmake-build-pvs-studio
- cd cmake-build-pvs-studio ; cmake .. -DCMAKE_EXPORT_COMPILE_COMMANDS=On -DJSON_MultipleHeaders=ON
- cd cmake-build-pvs-studio ; pvs-studio-analyzer analyze -j 10
- cd cmake-build-pvs-studio ; plog-converter -a'GA:1,2;64:1;CS' -t fullhtml PVS-Studio.log -o pvs
- open cmake-build-pvs-studio/pvs/index.html
-
-
-##########################################################################
-# Code format and source amalgamation
-##########################################################################
-
-# call the Artistic Style pretty printer on all source files
-pretty:
- astyle \
- --style=allman \
- --indent=spaces=4 \
- --indent-modifiers \
- --indent-switches \
- --indent-preproc-block \
- --indent-preproc-define \
- --indent-col1-comments \
- --pad-oper \
- --pad-header \
- --align-pointer=type \
- --align-reference=type \
- --add-braces \
- --squeeze-lines=2 \
- --convert-tabs \
- --close-templates \
- --lineend=linux \
- --preserve-date \
- --suffix=none \
- --formatted \
- $(SRCS) $(TESTS_SRCS) $(AMALGAMATED_FILE) $(AMALGAMATED_FWD_FILE) docs/examples/*.cpp
-
-# call the Clang-Format on all source files
-pretty_format:
- for FILE in $(SRCS) $(TESTS_SRCS) $(AMALGAMATED_FILE) docs/examples/*.cpp; do echo $$FILE; clang-format -i $$FILE; done
-
-# create single header files and pretty print
-amalgamate: $(AMALGAMATED_FILE) $(AMALGAMATED_FWD_FILE)
- $(MAKE) pretty
-
-# call the amalgamation tool for json.hpp
-$(AMALGAMATED_FILE): $(SRCS)
- tools/amalgamate/amalgamate.py -c tools/amalgamate/config_json.json -s . --verbose=yes
-
-# call the amalgamation tool for json_fwd.hpp
-$(AMALGAMATED_FWD_FILE): $(SRCS)
- tools/amalgamate/amalgamate.py -c tools/amalgamate/config_json_fwd.json -s . --verbose=yes
-
-# check if file single_include/nlohmann/json.hpp has been amalgamated from the nlohmann sources
-# Note: this target is called by Travis
-check-amalgamation:
- @mv $(AMALGAMATED_FILE) $(AMALGAMATED_FILE)~
- @mv $(AMALGAMATED_FWD_FILE) $(AMALGAMATED_FWD_FILE)~
- @$(MAKE) amalgamate
- @diff $(AMALGAMATED_FILE) $(AMALGAMATED_FILE)~ || (echo "===================================================================\n Amalgamation required! Please read the contribution guidelines\n in file .github/CONTRIBUTING.md.\n===================================================================" ; mv $(AMALGAMATED_FILE)~ $(AMALGAMATED_FILE) ; false)
- @diff $(AMALGAMATED_FWD_FILE) $(AMALGAMATED_FWD_FILE)~ || (echo "===================================================================\n Amalgamation required! Please read the contribution guidelines\n in file .github/CONTRIBUTING.md.\n===================================================================" ; mv $(AMALGAMATED_FWD_FILE)~ $(AMALGAMATED_FWD_FILE) ; false)
- @mv $(AMALGAMATED_FILE)~ $(AMALGAMATED_FILE)
- @mv $(AMALGAMATED_FWD_FILE)~ $(AMALGAMATED_FWD_FILE)
-
-BUILD.bazel: $(SRCS)
- cmake -P cmake/scripts/gen_bazel_build_file.cmake
-
-##########################################################################
-# ChangeLog
-##########################################################################
-
-# Create a ChangeLog based on the git log using the GitHub Changelog Generator
-# ().
-
-# variable to control the diffs between the last released version and the current repository state
-NEXT_VERSION ?= "unreleased"
-
-ChangeLog.md:
- github_changelog_generator -o ChangeLog.md --user nlohmann --project json --simple-list --release-url https://github.com/nlohmann/json/releases/tag/%s --future-release $(NEXT_VERSION)
- $(SED) -i 's|https://github.com/nlohmann/json/releases/tag/HEAD|https://github.com/nlohmann/json/tree/HEAD|' ChangeLog.md
- $(SED) -i '2i All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).' ChangeLog.md
-
-
-##########################################################################
-# Release files
-##########################################################################
-
-# Create a tar.gz archive that contains sufficient files to be used as CMake project (e.g., using FetchContent). The
-# archive is created according to the advices of .
-json.tar.xz:
- mkdir json
- rsync -R $(shell find LICENSE.MIT nlohmann_json.natvis CMakeLists.txt cmake/*.in include single_include -type f) json
- gtar --sort=name --mtime="@$(shell git log -1 --pretty=%ct)" --owner=0 --group=0 --numeric-owner --pax-option=exthdr.name=%d/PaxHeaders/%f,delete=atime,delete=ctime --create --file - json | xz --compress -9e --threads=2 - > json.tar.xz
- rm -fr json
-
-# We use `-X` to make the resulting ZIP file reproducible, see
-# .
-include.zip: BUILD.bazel
- zip -9 --recurse-paths -X include.zip $(SRCS) $(AMALGAMATED_FILE) $(AMALGAMATED_FWD_FILE) BUILD.bazel WORKSPACE.bazel meson.build LICENSE.MIT
-
-# Create the files for a release and add signatures and hashes.
-release: include.zip json.tar.xz
- rm -fr release_files
- mkdir release_files
- gpg --armor --detach-sig include.zip
- gpg --armor --detach-sig $(AMALGAMATED_FILE)
- gpg --armor --detach-sig $(AMALGAMATED_FWD_FILE)
- gpg --armor --detach-sig json.tar.xz
- cp $(AMALGAMATED_FILE) release_files
- cp $(AMALGAMATED_FWD_FILE) release_files
- mv $(AMALGAMATED_FILE).asc $(AMALGAMATED_FWD_FILE).asc json.tar.xz json.tar.xz.asc include.zip include.zip.asc release_files
- cd release_files ; shasum -a 256 json.hpp include.zip json.tar.xz > hashes.txt
-
-
-##########################################################################
-# Maintenance
-##########################################################################
-
-# clean up
-clean:
- rm -fr fuzz fuzz-testing *.dSYM tests/*.dSYM
- rm -fr benchmarks/files/numbers/*.json
- rm -fr cmake-build-benchmarks fuzz-testing cmake-build-pvs-studio release_files
- $(MAKE) clean -Cdocs
-
-
-##########################################################################
-# Thirdparty code
-##########################################################################
-
-update_hedley:
- rm -f include/nlohmann/thirdparty/hedley/hedley.hpp include/nlohmann/thirdparty/hedley/hedley_undef.hpp
- curl https://raw.githubusercontent.com/nemequ/hedley/master/hedley.h -o include/nlohmann/thirdparty/hedley/hedley.hpp
- $(SED) -i 's/HEDLEY_/JSON_HEDLEY_/g' include/nlohmann/thirdparty/hedley/hedley.hpp
- grep "[[:blank:]]*#[[:blank:]]*undef" include/nlohmann/thirdparty/hedley/hedley.hpp | grep -v "__" | sort | uniq | $(SED) 's/ //g' | $(SED) 's/undef/undef /g' > include/nlohmann/thirdparty/hedley/hedley_undef.hpp
- $(SED) -i '1s/^/#pragma once\n\n/' include/nlohmann/thirdparty/hedley/hedley.hpp
- $(SED) -i '1s/^/#pragma once\n\n/' include/nlohmann/thirdparty/hedley/hedley_undef.hpp
- $(MAKE) amalgamate
-
-##########################################################################
-# serve_header.py
-##########################################################################
-
-serve_header:
- ./tools/serve_header/serve_header.py --make $(MAKE)
-
-##########################################################################
-# REUSE
-##########################################################################
-
-reuse:
- pipx run reuse addheader --recursive single_include include -tjson --license MIT --copyright "Niels Lohmann " --year "2013-2022"
- pipx run reuse addheader $(TESTS_SRCS) --style=c -tjson_support --license MIT --copyright "Niels Lohmann " --year "2013-2022"
- pipx run reuse lint
diff --git a/yass/third_party/json/Package.swift b/yass/third_party/json/Package.swift
deleted file mode 100644
index 2f9c4a1f4d..0000000000
--- a/yass/third_party/json/Package.swift
+++ /dev/null
@@ -1,22 +0,0 @@
-// swift-tools-version: 5.9
-// The swift-tools-version declares the minimum version of Swift required to build this package.
-
-import PackageDescription
-
-let package = Package(
- name: "nlohmann-json",
- platforms: [
- .iOS(.v12), .macOS(.v10_13), .tvOS(.v12), .watchOS(.v4)
- ],
- products: [
- .library(name: "json", targets: ["json"])
- ],
- targets: [
- .target(
- name: "json",
- path: "single_include/nlohmann",
- publicHeadersPath: "."
- )
- ],
- cxxLanguageStandard: .cxx11
-)
diff --git a/yass/third_party/json/README.md b/yass/third_party/json/README.md
deleted file mode 100644
index 9109027062..0000000000
--- a/yass/third_party/json/README.md
+++ /dev/null
@@ -1,1891 +0,0 @@
-[](https://github.com/nlohmann/json/releases)
-
-[](https://ci.appveyor.com/project/nlohmann/json)
-[](https://github.com/nlohmann/json/actions?query=workflow%3AUbuntu)
-[](https://github.com/nlohmann/json/actions?query=workflow%3AmacOS)
-[](https://github.com/nlohmann/json/actions?query=workflow%3AWindows)
-[](https://coveralls.io/github/nlohmann/json?branch=develop)
-[](https://scan.coverity.com/projects/nlohmann-json)
-[](https://www.codacy.com/gh/nlohmann/json/dashboard?utm_source=github.com&utm_medium=referral&utm_content=nlohmann/json&utm_campaign=Badge_Grade)
-[](https://cirrus-ci.com/github/nlohmann/json)
-[](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:json)
-[](https://wandbox.org/permlink/1mp10JbaANo6FUc7)
-[](https://json.nlohmann.me)
-[](https://raw.githubusercontent.com/nlohmann/json/master/LICENSE.MIT)
-[](https://github.com/nlohmann/json/releases)
-[](https://vcpkg.link/ports/nlohmann-json)
-[](https://repology.org/project/nlohmann-json/versions)
-[](https://github.com/nlohmann/json/releases)
-[](https://github.com/nlohmann/json/issues)
-[](https://isitmaintained.com/project/nlohmann/json "Average time to resolve an issue")
-[](https://bestpractices.coreinfrastructure.org/projects/289)
-[](https://github.com/sponsors/nlohmann)
-[](https://api.reuse.software/info/github.com/nlohmann/json)
-[](https://discord.gg/6mrGXKvX7y)
-
-- [Design goals](#design-goals)
-- [Sponsors](#sponsors)
-- [Support](#support) ([documentation](https://json.nlohmann.me), [FAQ](https://json.nlohmann.me/home/faq/), [discussions](https://github.com/nlohmann/json/discussions), [API](https://json.nlohmann.me/api/basic_json/), [bug issues](https://github.com/nlohmann/json/issues))
-- [Examples](#examples)
- - [Read JSON from a file](#read-json-from-a-file)
- - [Creating `json` objects from JSON literals](#creating-json-objects-from-json-literals)
- - [JSON as first-class data type](#json-as-first-class-data-type)
- - [Serialization / Deserialization](#serialization--deserialization)
- - [STL-like access](#stl-like-access)
- - [Conversion from STL containers](#conversion-from-stl-containers)
- - [JSON Pointer and JSON Patch](#json-pointer-and-json-patch)
- - [JSON Merge Patch](#json-merge-patch)
- - [Implicit conversions](#implicit-conversions)
- - [Conversions to/from arbitrary types](#arbitrary-types-conversions)
- - [Specializing enum conversion](#specializing-enum-conversion)
- - [Binary formats (BSON, CBOR, MessagePack, UBJSON, and BJData)](#binary-formats-bson-cbor-messagepack-ubjson-and-bjdata)
-- [Supported compilers](#supported-compilers)
-- [Integration](#integration)
- - [CMake](#cmake)
- - [Package Managers](#package-managers)
- - [Pkg-config](#pkg-config)
-- [License](#license)
-- [Contact](#contact)
-- [Thanks](#thanks)
-- [Used third-party tools](#used-third-party-tools)
-- [Projects using JSON for Modern C++](#projects-using-json-for-modern-c)
-- [Notes](#notes)
-- [Execute unit tests](#execute-unit-tests)
-
-## Design goals
-
-There are myriads of [JSON](https://json.org) libraries out there, and each may even have its reason to exist. Our class had these design goals:
-
-- **Intuitive syntax**. In languages such as Python, JSON feels like a first class data type. We used all the operator magic of modern C++ to achieve the same feeling in your code. Check out the [examples below](#examples) and you'll know what I mean.
-
-- **Trivial integration**. Our whole code consists of a single header file [`json.hpp`](https://github.com/nlohmann/json/blob/develop/single_include/nlohmann/json.hpp). That's it. No library, no subproject, no dependencies, no complex build system. The class is written in vanilla C++11. All in all, everything should require no adjustment of your compiler flags or project settings.
-
-- **Serious testing**. Our code is heavily [unit-tested](https://github.com/nlohmann/json/tree/develop/tests/src) and covers [100%](https://coveralls.io/r/nlohmann/json) of the code, including all exceptional behavior. Furthermore, we checked with [Valgrind](https://valgrind.org) and the [Clang Sanitizers](https://clang.llvm.org/docs/index.html) that there are no memory leaks. [Google OSS-Fuzz](https://github.com/google/oss-fuzz/tree/master/projects/json) additionally runs fuzz tests against all parsers 24/7, effectively executing billions of tests so far. To maintain high quality, the project is following the [Core Infrastructure Initiative (CII) best practices](https://bestpractices.coreinfrastructure.org/projects/289).
-
-Other aspects were not so important to us:
-
-- **Memory efficiency**. Each JSON object has an overhead of one pointer (the maximal size of a union) and one enumeration element (1 byte). The default generalization uses the following C++ data types: `std::string` for strings, `int64_t`, `uint64_t` or `double` for numbers, `std::map` for objects, `std::vector` for arrays, and `bool` for Booleans. However, you can template the generalized class `basic_json` to your needs.
-
-- **Speed**. There are certainly [faster JSON libraries](https://github.com/miloyip/nativejson-benchmark#parsing-time) out there. However, if your goal is to speed up your development by adding JSON support with a single header, then this library is the way to go. If you know how to use a `std::vector` or `std::map`, you are already set.
-
-See the [contribution guidelines](https://github.com/nlohmann/json/blob/master/.github/CONTRIBUTING.md#please-dont) for more information.
-
-
-## Sponsors
-
-You can sponsor this library at [GitHub Sponsors](https://github.com/sponsors/nlohmann).
-
-### :office: Corporate Sponsor
-
-[](https://github.com/codacy/About)
-
-### :label: Named Sponsors
-
-- [Michael Hartmann](https://github.com/reFX-Mike)
-- [Stefan Hagen](https://github.com/sthagen)
-- [Steve Sperandeo](https://github.com/homer6)
-- [Robert Jefe Lindstädt](https://github.com/eljefedelrodeodeljefe)
-- [Steve Wagner](https://github.com/ciroque)
-- [Lion Yang](https://github.com/LionNatsu)
-
-Thanks everyone!
-
-## Support
-
-:question: If you have a **question**, please check if it is already answered in the [**FAQ**](https://json.nlohmann.me/home/faq/) or the [**Q&A**](https://github.com/nlohmann/json/discussions/categories/q-a) section. If not, please [**ask a new question**](https://github.com/nlohmann/json/discussions/new) there.
-
-:books: If you want to **learn more** about how to use the library, check out the rest of the [**README**](#examples), have a look at [**code examples**](https://github.com/nlohmann/json/tree/develop/docs/examples), or browse through the [**help pages**](https://json.nlohmann.me).
-
-:construction: If you want to understand the **API** better, check out the [**API Reference**](https://json.nlohmann.me/api/basic_json/).
-
-:bug: If you found a **bug**, please check the [**FAQ**](https://json.nlohmann.me/home/faq/) if it is a known issue or the result of a design decision. Please also have a look at the [**issue list**](https://github.com/nlohmann/json/issues) before you [**create a new issue**](https://github.com/nlohmann/json/issues/new/choose). Please provide as much information as possible to help us understand and reproduce your issue.
-
-There is also a [**docset**](https://github.com/Kapeli/Dash-User-Contributions/tree/master/docsets/JSON_for_Modern_C%2B%2B) for the documentation browsers [Dash](https://kapeli.com/dash), [Velocity](https://velocity.silverlakesoftware.com), and [Zeal](https://zealdocs.org) that contains the full [documentation](https://json.nlohmann.me) as offline resource.
-
-## Examples
-
-Here are some examples to give you an idea how to use the class.
-
-Beside the examples below, you may want to:
-
-→ Check the [documentation](https://json.nlohmann.me/)\
-→ Browse the [standalone example files](https://github.com/nlohmann/json/tree/develop/docs/examples)
-
-Every API function (documented in the [API Documentation](https://json.nlohmann.me/api/basic_json/)) has a corresponding standalone example file. For example, the [`emplace()`](https://json.nlohmann.me/api/basic_json/emplace/) function has a matching [emplace.cpp](https://github.com/nlohmann/json/blob/develop/docs/examples/emplace.cpp) example file.
-
-### Read JSON from a file
-
-The `json` class provides an API for manipulating a JSON value. To create a `json` object by reading a JSON file:
-
-```cpp
-#include
-#include
-using json = nlohmann::json;
-
-// ...
-
-std::ifstream f("example.json");
-json data = json::parse(f);
-```
-
-### Creating `json` objects from JSON literals
-
-Assume you want to create hard-code this literal JSON value in a file, as a `json` object:
-
-```json
-{
- "pi": 3.141,
- "happy": true
-}
-```
-
-There are various options:
-
-```cpp
-// Using (raw) string literals and json::parse
-json ex1 = json::parse(R"(
- {
- "pi": 3.141,
- "happy": true
- }
-)");
-
-// Using user-defined (raw) string literals
-using namespace nlohmann::literals;
-json ex2 = R"(
- {
- "pi": 3.141,
- "happy": true
- }
-)"_json;
-
-// Using initializer lists
-json ex3 = {
- {"happy", true},
- {"pi", 3.141},
-};
-```
-
-### JSON as first-class data type
-
-Here are some examples to give you an idea how to use the class.
-
-Assume you want to create the JSON object
-
-```json
-{
- "pi": 3.141,
- "happy": true,
- "name": "Niels",
- "nothing": null,
- "answer": {
- "everything": 42
- },
- "list": [1, 0, 2],
- "object": {
- "currency": "USD",
- "value": 42.99
- }
-}
-```
-
-With this library, you could write:
-
-```cpp
-// create an empty structure (null)
-json j;
-
-// add a number that is stored as double (note the implicit conversion of j to an object)
-j["pi"] = 3.141;
-
-// add a Boolean that is stored as bool
-j["happy"] = true;
-
-// add a string that is stored as std::string
-j["name"] = "Niels";
-
-// add another null object by passing nullptr
-j["nothing"] = nullptr;
-
-// add an object inside the object
-j["answer"]["everything"] = 42;
-
-// add an array that is stored as std::vector (using an initializer list)
-j["list"] = { 1, 0, 2 };
-
-// add another object (using an initializer list of pairs)
-j["object"] = { {"currency", "USD"}, {"value", 42.99} };
-
-// instead, you could also write (which looks very similar to the JSON above)
-json j2 = {
- {"pi", 3.141},
- {"happy", true},
- {"name", "Niels"},
- {"nothing", nullptr},
- {"answer", {
- {"everything", 42}
- }},
- {"list", {1, 0, 2}},
- {"object", {
- {"currency", "USD"},
- {"value", 42.99}
- }}
-};
-```
-
-Note that in all these cases, you never need to "tell" the compiler which JSON value type you want to use. If you want to be explicit or express some edge cases, the functions [`json::array()`](https://json.nlohmann.me/api/basic_json/array/) and [`json::object()`](https://json.nlohmann.me/api/basic_json/object/) will help:
-
-```cpp
-// a way to express the empty array []
-json empty_array_explicit = json::array();
-
-// ways to express the empty object {}
-json empty_object_implicit = json({});
-json empty_object_explicit = json::object();
-
-// a way to express an _array_ of key/value pairs [["currency", "USD"], ["value", 42.99]]
-json array_not_object = json::array({ {"currency", "USD"}, {"value", 42.99} });
-```
-
-### Serialization / Deserialization
-
-#### To/from strings
-
-You can create a JSON value (deserialization) by appending `_json` to a string literal:
-
-```cpp
-// create object from string literal
-json j = "{ \"happy\": true, \"pi\": 3.141 }"_json;
-
-// or even nicer with a raw string literal
-auto j2 = R"(
- {
- "happy": true,
- "pi": 3.141
- }
-)"_json;
-```
-
-Note that without appending the `_json` suffix, the passed string literal is not parsed, but just used as JSON string
-value. That is, `json j = "{ \"happy\": true, \"pi\": 3.141 }"` would just store the string
-`"{ "happy": true, "pi": 3.141 }"` rather than parsing the actual object.
-
-The string literal should be brought into scope with `using namespace nlohmann::literals;`
-(see [`json::parse()`](https://json.nlohmann.me/api/operator_literal_json/)).
-
-The above example can also be expressed explicitly using [`json::parse()`](https://json.nlohmann.me/api/basic_json/parse/):
-
-```cpp
-// parse explicitly
-auto j3 = json::parse(R"({"happy": true, "pi": 3.141})");
-```
-
-You can also get a string representation of a JSON value (serialize):
-
-```cpp
-// explicit conversion to string
-std::string s = j.dump(); // {"happy":true,"pi":3.141}
-
-// serialization with pretty printing
-// pass in the amount of spaces to indent
-std::cout << j.dump(4) << std::endl;
-// {
-// "happy": true,
-// "pi": 3.141
-// }
-```
-
-Note the difference between serialization and assignment:
-
-```cpp
-// store a string in a JSON value
-json j_string = "this is a string";
-
-// retrieve the string value
-auto cpp_string = j_string.template get();
-// retrieve the string value (alternative when a variable already exists)
-std::string cpp_string2;
-j_string.get_to(cpp_string2);
-
-// retrieve the serialized value (explicit JSON serialization)
-std::string serialized_string = j_string.dump();
-
-// output of original string
-std::cout << cpp_string << " == " << cpp_string2 << " == " << j_string.template get() << '\n';
-// output of serialized value
-std::cout << j_string << " == " << serialized_string << std::endl;
-```
-
-[`.dump()`](https://json.nlohmann.me/api/basic_json/dump/) returns the originally stored string value.
-
-Note the library only supports UTF-8. When you store strings with different encodings in the library, calling [`dump()`](https://json.nlohmann.me/api/basic_json/dump/) may throw an exception unless `json::error_handler_t::replace` or `json::error_handler_t::ignore` are used as error handlers.
-
-#### To/from streams (e.g. files, string streams)
-
-You can also use streams to serialize and deserialize:
-
-```cpp
-// deserialize from standard input
-json j;
-std::cin >> j;
-
-// serialize to standard output
-std::cout << j;
-
-// the setw manipulator was overloaded to set the indentation for pretty printing
-std::cout << std::setw(4) << j << std::endl;
-```
-
-These operators work for any subclasses of `std::istream` or `std::ostream`. Here is the same example with files:
-
-```cpp
-// read a JSON file
-std::ifstream i("file.json");
-json j;
-i >> j;
-
-// write prettified JSON to another file
-std::ofstream o("pretty.json");
-o << std::setw(4) << j << std::endl;
-```
-
-Please note that setting the exception bit for `failbit` is inappropriate for this use case. It will result in program termination due to the `noexcept` specifier in use.
-
-#### Read from iterator range
-
-You can also parse JSON from an iterator range; that is, from any container accessible by iterators whose `value_type` is an integral type of 1, 2 or 4 bytes, which will be interpreted as UTF-8, UTF-16 and UTF-32 respectively. For instance, a `std::vector`, or a `std::list`:
-
-```cpp
-std::vector v = {'t', 'r', 'u', 'e'};
-json j = json::parse(v.begin(), v.end());
-```
-
-You may leave the iterators for the range [begin, end):
-
-```cpp
-std::vector v = {'t', 'r', 'u', 'e'};
-json j = json::parse(v);
-```
-
-#### Custom data source
-
-Since the parse function accepts arbitrary iterator ranges, you can provide your own data sources by implementing the `LegacyInputIterator` concept.
-
-```cpp
-struct MyContainer {
- void advance();
- const char& get_current();
-};
-
-struct MyIterator {
- using difference_type = std::ptrdiff_t;
- using value_type = char;
- using pointer = const char*;
- using reference = const char&;
- using iterator_category = std::input_iterator_tag;
-
- MyIterator& operator++() {
- MyContainer.advance();
- return *this;
- }
-
- bool operator!=(const MyIterator& rhs) const {
- return rhs.target != target;
- }
-
- reference operator*() const {
- return target.get_current();
- }
-
- MyContainer* target = nullptr;
-};
-
-MyIterator begin(MyContainer& tgt) {
- return MyIterator{&tgt};
-}
-
-MyIterator end(const MyContainer&) {
- return {};
-}
-
-void foo() {
- MyContainer c;
- json j = json::parse(c);
-}
-```
-
-#### SAX interface
-
-The library uses a SAX-like interface with the following functions:
-
-```cpp
-// called when null is parsed
-bool null();
-
-// called when a boolean is parsed; value is passed
-bool boolean(bool val);
-
-// called when a signed or unsigned integer number is parsed; value is passed
-bool number_integer(number_integer_t val);
-bool number_unsigned(number_unsigned_t val);
-
-// called when a floating-point number is parsed; value and original string is passed
-bool number_float(number_float_t val, const string_t& s);
-
-// called when a string is parsed; value is passed and can be safely moved away
-bool string(string_t& val);
-// called when a binary value is parsed; value is passed and can be safely moved away
-bool binary(binary_t& val);
-
-// called when an object or array begins or ends, resp. The number of elements is passed (or -1 if not known)
-bool start_object(std::size_t elements);
-bool end_object();
-bool start_array(std::size_t elements);
-bool end_array();
-// called when an object key is parsed; value is passed and can be safely moved away
-bool key(string_t& val);
-
-// called when a parse error occurs; byte position, the last token, and an exception is passed
-bool parse_error(std::size_t position, const std::string& last_token, const detail::exception& ex);
-```
-
-The return value of each function determines whether parsing should proceed.
-
-To implement your own SAX handler, proceed as follows:
-
-1. Implement the SAX interface in a class. You can use class `nlohmann::json_sax` as base class, but you can also use any class where the functions described above are implemented and public.
-2. Create an object of your SAX interface class, e.g. `my_sax`.
-3. Call `bool json::sax_parse(input, &my_sax)`; where the first parameter can be any input like a string or an input stream and the second parameter is a pointer to your SAX interface.
-
-Note the `sax_parse` function only returns a `bool` indicating the result of the last executed SAX event. It does not return a `json` value - it is up to you to decide what to do with the SAX events. Furthermore, no exceptions are thrown in case of a parse error - it is up to you what to do with the exception object passed to your `parse_error` implementation. Internally, the SAX interface is used for the DOM parser (class `json_sax_dom_parser`) as well as the acceptor (`json_sax_acceptor`), see file [`json_sax.hpp`](https://github.com/nlohmann/json/blob/develop/include/nlohmann/detail/input/json_sax.hpp).
-
-### STL-like access
-
-We designed the JSON class to behave just like an STL container. In fact, it satisfies the [**ReversibleContainer**](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer) requirement.
-
-```cpp
-// create an array using push_back
-json j;
-j.push_back("foo");
-j.push_back(1);
-j.push_back(true);
-
-// also use emplace_back
-j.emplace_back(1.78);
-
-// iterate the array
-for (json::iterator it = j.begin(); it != j.end(); ++it) {
- std::cout << *it << '\n';
-}
-
-// range-based for
-for (auto& element : j) {
- std::cout << element << '\n';
-}
-
-// getter/setter
-const auto tmp = j[0].template get();
-j[1] = 42;
-bool foo = j.at(2);
-
-// comparison
-j == R"(["foo", 1, true, 1.78])"_json; // true
-
-// other stuff
-j.size(); // 4 entries
-j.empty(); // false
-j.type(); // json::value_t::array
-j.clear(); // the array is empty again
-
-// convenience type checkers
-j.is_null();
-j.is_boolean();
-j.is_number();
-j.is_object();
-j.is_array();
-j.is_string();
-
-// create an object
-json o;
-o["foo"] = 23;
-o["bar"] = false;
-o["baz"] = 3.141;
-
-// also use emplace
-o.emplace("weather", "sunny");
-
-// special iterator member functions for objects
-for (json::iterator it = o.begin(); it != o.end(); ++it) {
- std::cout << it.key() << " : " << it.value() << "\n";
-}
-
-// the same code as range for
-for (auto& el : o.items()) {
- std::cout << el.key() << " : " << el.value() << "\n";
-}
-
-// even easier with structured bindings (C++17)
-for (auto& [key, value] : o.items()) {
- std::cout << key << " : " << value << "\n";
-}
-
-// find an entry
-if (o.contains("foo")) {
- // there is an entry with key "foo"
-}
-
-// or via find and an iterator
-if (o.find("foo") != o.end()) {
- // there is an entry with key "foo"
-}
-
-// or simpler using count()
-int foo_present = o.count("foo"); // 1
-int fob_present = o.count("fob"); // 0
-
-// delete an entry
-o.erase("foo");
-```
-
-
-### Conversion from STL containers
-
-Any sequence container (`std::array`, `std::vector`, `std::deque`, `std::forward_list`, `std::list`) whose values can be used to construct JSON values (e.g., integers, floating point numbers, Booleans, string types, or again STL containers described in this section) can be used to create a JSON array. The same holds for similar associative containers (`std::set`, `std::multiset`, `std::unordered_set`, `std::unordered_multiset`), but in these cases the order of the elements of the array depends on how the elements are ordered in the respective STL container.
-
-```cpp
-std::vector c_vector {1, 2, 3, 4};
-json j_vec(c_vector);
-// [1, 2, 3, 4]
-
-std::deque c_deque {1.2, 2.3, 3.4, 5.6};
-json j_deque(c_deque);
-// [1.2, 2.3, 3.4, 5.6]
-
-std::list c_list {true, true, false, true};
-json j_list(c_list);
-// [true, true, false, true]
-
-std::forward_list c_flist {12345678909876, 23456789098765, 34567890987654, 45678909876543};
-json j_flist(c_flist);
-// [12345678909876, 23456789098765, 34567890987654, 45678909876543]
-
-std::array c_array {{1, 2, 3, 4}};
-json j_array(c_array);
-// [1, 2, 3, 4]
-
-std::set c_set {"one", "two", "three", "four", "one"};
-json j_set(c_set); // only one entry for "one" is used
-// ["four", "one", "three", "two"]
-
-std::unordered_set c_uset {"one", "two", "three", "four", "one"};
-json j_uset(c_uset); // only one entry for "one" is used
-// maybe ["two", "three", "four", "one"]
-
-std::multiset c_mset {"one", "two", "one", "four"};
-json j_mset(c_mset); // both entries for "one" are used
-// maybe ["one", "two", "one", "four"]
-
-std::unordered_multiset c_umset {"one", "two", "one", "four"};
-json j_umset(c_umset); // both entries for "one" are used
-// maybe ["one", "two", "one", "four"]
-```
-
-Likewise, any associative key-value containers (`std::map`, `std::multimap`, `std::unordered_map`, `std::unordered_multimap`) whose keys can construct an `std::string` and whose values can be used to construct JSON values (see examples above) can be used to create a JSON object. Note that in case of multimaps only one key is used in the JSON object and the value depends on the internal order of the STL container.
-
-```cpp
-std::map c_map { {"one", 1}, {"two", 2}, {"three", 3} };
-json j_map(c_map);
-// {"one": 1, "three": 3, "two": 2 }
-
-std::unordered_map c_umap { {"one", 1.2}, {"two", 2.3}, {"three", 3.4} };
-json j_umap(c_umap);
-// {"one": 1.2, "two": 2.3, "three": 3.4}
-
-std::multimap c_mmap { {"one", true}, {"two", true}, {"three", false}, {"three", true} };
-json j_mmap(c_mmap); // only one entry for key "three" is used
-// maybe {"one": true, "two": true, "three": true}
-
-std::unordered_multimap c_ummap { {"one", true}, {"two", true}, {"three", false}, {"three", true} };
-json j_ummap(c_ummap); // only one entry for key "three" is used
-// maybe {"one": true, "two": true, "three": true}
-```
-
-### JSON Pointer and JSON Patch
-
-The library supports **JSON Pointer** ([RFC 6901](https://tools.ietf.org/html/rfc6901)) as alternative means to address structured values. On top of this, **JSON Patch** ([RFC 6902](https://tools.ietf.org/html/rfc6902)) allows describing differences between two JSON values - effectively allowing patch and diff operations known from Unix.
-
-```cpp
-// a JSON value
-json j_original = R"({
- "baz": ["one", "two", "three"],
- "foo": "bar"
-})"_json;
-
-// access members with a JSON pointer (RFC 6901)
-j_original["/baz/1"_json_pointer];
-// "two"
-
-// a JSON patch (RFC 6902)
-json j_patch = R"([
- { "op": "replace", "path": "/baz", "value": "boo" },
- { "op": "add", "path": "/hello", "value": ["world"] },
- { "op": "remove", "path": "/foo"}
-])"_json;
-
-// apply the patch
-json j_result = j_original.patch(j_patch);
-// {
-// "baz": "boo",
-// "hello": ["world"]
-// }
-
-// calculate a JSON patch from two JSON values
-json::diff(j_result, j_original);
-// [
-// { "op":" replace", "path": "/baz", "value": ["one", "two", "three"] },
-// { "op": "remove","path": "/hello" },
-// { "op": "add", "path": "/foo", "value": "bar" }
-// ]
-```
-
-### JSON Merge Patch
-
-The library supports **JSON Merge Patch** ([RFC 7386](https://tools.ietf.org/html/rfc7386)) as a patch format. Instead of using JSON Pointer (see above) to specify values to be manipulated, it describes the changes using a syntax that closely mimics the document being modified.
-
-```cpp
-// a JSON value
-json j_document = R"({
- "a": "b",
- "c": {
- "d": "e",
- "f": "g"
- }
-})"_json;
-
-// a patch
-json j_patch = R"({
- "a":"z",
- "c": {
- "f": null
- }
-})"_json;
-
-// apply the patch
-j_document.merge_patch(j_patch);
-// {
-// "a": "z",
-// "c": {
-// "d": "e"
-// }
-// }
-```
-
-### Implicit conversions
-
-Supported types can be implicitly converted to JSON values.
-
-It is recommended to **NOT USE** implicit conversions **FROM** a JSON value.
-You can find more details about this recommendation [here](https://www.github.com/nlohmann/json/issues/958).
-You can switch off implicit conversions by defining `JSON_USE_IMPLICIT_CONVERSIONS` to `0` before including the `json.hpp` header. When using CMake, you can also achieve this by setting the option `JSON_ImplicitConversions` to `OFF`.
-
-```cpp
-// strings
-std::string s1 = "Hello, world!";
-json js = s1;
-auto s2 = js.template get();
-// NOT RECOMMENDED
-std::string s3 = js;
-std::string s4;
-s4 = js;
-
-// Booleans
-bool b1 = true;
-json jb = b1;
-auto b2 = jb.template get();
-// NOT RECOMMENDED
-bool b3 = jb;
-bool b4;
-b4 = jb;
-
-// numbers
-int i = 42;
-json jn = i;
-auto f = jn.template get();
-// NOT RECOMMENDED
-double f2 = jb;
-double f3;
-f3 = jb;
-
-// etc.
-```
-
-Note that `char` types are not automatically converted to JSON strings, but to integer numbers. A conversion to a string must be specified explicitly:
-
-```cpp
-char ch = 'A'; // ASCII value 65
-json j_default = ch; // stores integer number 65
-json j_string = std::string(1, ch); // stores string "A"
-```
-
-### Arbitrary types conversions
-
-Every type can be serialized in JSON, not just STL containers and scalar types. Usually, you would do something along those lines:
-
-```cpp
-namespace ns {
- // a simple struct to model a person
- struct person {
- std::string name;
- std::string address;
- int age;
- };
-}
-
-ns::person p = {"Ned Flanders", "744 Evergreen Terrace", 60};
-
-// convert to JSON: copy each value into the JSON object
-json j;
-j["name"] = p.name;
-j["address"] = p.address;
-j["age"] = p.age;
-
-// ...
-
-// convert from JSON: copy each value from the JSON object
-ns::person p {
- j["name"].template get(),
- j["address"].template get(),
- j["age"].template get()
-};
-```
-
-It works, but that's quite a lot of boilerplate... Fortunately, there's a better way:
-
-```cpp
-// create a person
-ns::person p {"Ned Flanders", "744 Evergreen Terrace", 60};
-
-// conversion: person -> json
-json j = p;
-
-std::cout << j << std::endl;
-// {"address":"744 Evergreen Terrace","age":60,"name":"Ned Flanders"}
-
-// conversion: json -> person
-auto p2 = j.template get();
-
-// that's it
-assert(p == p2);
-```
-
-#### Basic usage
-
-To make this work with one of your types, you only need to provide two functions:
-
-```cpp
-using json = nlohmann::json;
-
-namespace ns {
- void to_json(json& j, const person& p) {
- j = json{{"name", p.name}, {"address", p.address}, {"age", p.age}};
- }
-
- void from_json(const json& j, person& p) {
- j.at("name").get_to(p.name);
- j.at("address").get_to(p.address);
- j.at("age").get_to(p.age);
- }
-} // namespace ns
-```
-
-That's all! When calling the `json` constructor with your type, your custom `to_json` method will be automatically called.
-Likewise, when calling `template get()` or `get_to(your_type&)`, the `from_json` method will be called.
-
-Some important things:
-
-* Those methods **MUST** be in your type's namespace (which can be the global namespace), or the library will not be able to locate them (in this example, they are in namespace `ns`, where `person` is defined).
-* Those methods **MUST** be available (e.g., proper headers must be included) everywhere you use these conversions. Look at [issue 1108](https://github.com/nlohmann/json/issues/1108) for errors that may occur otherwise.
-* When using `template get()`, `your_type` **MUST** be [DefaultConstructible](https://en.cppreference.com/w/cpp/named_req/DefaultConstructible). (There is a way to bypass this requirement described later.)
-* In function `from_json`, use function [`at()`](https://json.nlohmann.me/api/basic_json/at/) to access the object values rather than `operator[]`. In case a key does not exist, `at` throws an exception that you can handle, whereas `operator[]` exhibits undefined behavior.
-* You do not need to add serializers or deserializers for STL types like `std::vector`: the library already implements these.
-
-#### Simplify your life with macros
-
-If you just want to serialize/deserialize some structs, the `to_json`/`from_json` functions can be a lot of boilerplate.
-
-There are two macros to make your life easier as long as you (1) want to use a JSON object as serialization and (2) want to use the member variable names as object keys in that object:
-
-- `NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(name, member1, member2, ...)` is to be defined inside the namespace of the class/struct to create code for.
-- `NLOHMANN_DEFINE_TYPE_INTRUSIVE(name, member1, member2, ...)` is to be defined inside the class/struct to create code for. This macro can also access private members.
-
-In both macros, the first parameter is the name of the class/struct, and all remaining parameters name the members.
-
-##### Examples
-
-The `to_json`/`from_json` functions for the `person` struct above can be created with:
-
-```cpp
-namespace ns {
- NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(person, name, address, age)
-}
-```
-
-Here is an example with private members, where `NLOHMANN_DEFINE_TYPE_INTRUSIVE` is needed:
-
-```cpp
-namespace ns {
- class address {
- private:
- std::string street;
- int housenumber;
- int postcode;
-
- public:
- NLOHMANN_DEFINE_TYPE_INTRUSIVE(address, street, housenumber, postcode)
- };
-}
-```
-
-#### How do I convert third-party types?
-
-This requires a bit more advanced technique. But first, let's see how this conversion mechanism works:
-
-The library uses **JSON Serializers** to convert types to json.
-The default serializer for `nlohmann::json` is `nlohmann::adl_serializer` (ADL means [Argument-Dependent Lookup](https://en.cppreference.com/w/cpp/language/adl)).
-
-It is implemented like this (simplified):
-
-```cpp
-template
-struct adl_serializer {
- static void to_json(json& j, const T& value) {
- // calls the "to_json" method in T's namespace
- }
-
- static void from_json(const json& j, T& value) {
- // same thing, but with the "from_json" method
- }
-};
-```
-
-This serializer works fine when you have control over the type's namespace. However, what about `boost::optional` or `std::filesystem::path` (C++17)? Hijacking the `boost` namespace is pretty bad, and it's illegal to add something other than template specializations to `std`...
-
-To solve this, you need to add a specialization of `adl_serializer` to the `nlohmann` namespace, here's an example:
-
-```cpp
-// partial specialization (full specialization works too)
-namespace nlohmann {
- template
- struct adl_serializer> {
- static void to_json(json& j, const boost::optional& opt) {
- if (opt == boost::none) {
- j = nullptr;
- } else {
- j = *opt; // this will call adl_serializer::to_json which will
- // find the free function to_json in T's namespace!
- }
- }
-
- static void from_json(const json& j, boost::optional& opt) {
- if (j.is_null()) {
- opt = boost::none;
- } else {
- opt = j.template get(); // same as above, but with
- // adl_serializer::from_json
- }
- }
- };
-}
-```
-
-#### How can I use `get()` for non-default constructible/non-copyable types?
-
-There is a way, if your type is [MoveConstructible](https://en.cppreference.com/w/cpp/named_req/MoveConstructible). You will need to specialize the `adl_serializer` as well, but with a special `from_json` overload:
-
-```cpp
-struct move_only_type {
- move_only_type() = delete;
- move_only_type(int ii): i(ii) {}
- move_only_type(const move_only_type&) = delete;
- move_only_type(move_only_type&&) = default;
-
- int i;
-};
-
-namespace nlohmann {
- template <>
- struct adl_serializer {
- // note: the return type is no longer 'void', and the method only takes
- // one argument
- static move_only_type from_json(const json& j) {
- return {j.template get()};
- }
-
- // Here's the catch! You must provide a to_json method! Otherwise, you
- // will not be able to convert move_only_type to json, since you fully
- // specialized adl_serializer on that type
- static void to_json(json& j, move_only_type t) {
- j = t.i;
- }
- };
-}
-```
-
-#### Can I write my own serializer? (Advanced use)
-
-Yes. You might want to take a look at [`unit-udt.cpp`](https://github.com/nlohmann/json/blob/develop/tests/src/unit-udt.cpp) in the test suite, to see a few examples.
-
-If you write your own serializer, you'll need to do a few things:
-
-- use a different `basic_json` alias than `nlohmann::json` (the last template parameter of `basic_json` is the `JSONSerializer`)
-- use your `basic_json` alias (or a template parameter) in all your `to_json`/`from_json` methods
-- use `nlohmann::to_json` and `nlohmann::from_json` when you need ADL
-
-Here is an example, without simplifications, that only accepts types with a size <= 32, and uses ADL.
-
-```cpp
-// You should use void as a second template argument
-// if you don't need compile-time checks on T
-template::type>
-struct less_than_32_serializer {
- template
- static void to_json(BasicJsonType& j, T value) {
- // we want to use ADL, and call the correct to_json overload
- using nlohmann::to_json; // this method is called by adl_serializer,
- // this is where the magic happens
- to_json(j, value);
- }
-
- template
- static void from_json(const BasicJsonType& j, T& value) {
- // same thing here
- using nlohmann::from_json;
- from_json(j, value);
- }
-};
-```
-
-Be **very** careful when reimplementing your serializer, you can stack overflow if you don't pay attention:
-
-```cpp
-template
-struct bad_serializer
-{
- template
- static void to_json(BasicJsonType& j, const T& value) {
- // this calls BasicJsonType::json_serializer::to_json(j, value);
- // if BasicJsonType::json_serializer == bad_serializer ... oops!
- j = value;
- }
-
- template
- static void to_json(const BasicJsonType& j, T& value) {
- // this calls BasicJsonType::json_serializer::from_json(j, value);
- // if BasicJsonType::json_serializer == bad_serializer ... oops!
- value = j.template get(); // oops!
- }
-};
-```
-
-### Specializing enum conversion
-
-By default, enum values are serialized to JSON as integers. In some cases this could result in undesired behavior. If an enum is modified or re-ordered after data has been serialized to JSON, the later de-serialized JSON data may be undefined or a different enum value than was originally intended.
-
-It is possible to more precisely specify how a given enum is mapped to and from JSON as shown below:
-
-```cpp
-// example enum type declaration
-enum TaskState {
- TS_STOPPED,
- TS_RUNNING,
- TS_COMPLETED,
- TS_INVALID=-1,
-};
-
-// map TaskState values to JSON as strings
-NLOHMANN_JSON_SERIALIZE_ENUM( TaskState, {
- {TS_INVALID, nullptr},
- {TS_STOPPED, "stopped"},
- {TS_RUNNING, "running"},
- {TS_COMPLETED, "completed"},
-})
-```
-
-The `NLOHMANN_JSON_SERIALIZE_ENUM()` macro declares a set of `to_json()` / `from_json()` functions for type `TaskState` while avoiding repetition and boilerplate serialization code.
-
-**Usage:**
-
-```cpp
-// enum to JSON as string
-json j = TS_STOPPED;
-assert(j == "stopped");
-
-// json string to enum
-json j3 = "running";
-assert(j3.template get() == TS_RUNNING);
-
-// undefined json value to enum (where the first map entry above is the default)
-json jPi = 3.14;
-assert(jPi.template get() == TS_INVALID );
-```
-
-Just as in [Arbitrary Type Conversions](#arbitrary-types-conversions) above,
-- `NLOHMANN_JSON_SERIALIZE_ENUM()` MUST be declared in your enum type's namespace (which can be the global namespace), or the library will not be able to locate it, and it will default to integer serialization.
-- It MUST be available (e.g., proper headers must be included) everywhere you use the conversions.
-
-Other Important points:
-- When using `template get()`, undefined JSON values will default to the first pair specified in your map. Select this default pair carefully.
-- If an enum or JSON value is specified more than once in your map, the first matching occurrence from the top of the map will be returned when converting to or from JSON.
-
-### Binary formats (BSON, CBOR, MessagePack, UBJSON, and BJData)
-
-Though JSON is a ubiquitous data format, it is not a very compact format suitable for data exchange, for instance over a network. Hence, the library supports [BSON](https://bsonspec.org) (Binary JSON), [CBOR](https://cbor.io) (Concise Binary Object Representation), [MessagePack](https://msgpack.org), [UBJSON](https://ubjson.org) (Universal Binary JSON Specification) and [BJData](https://neurojson.org/bjdata) (Binary JData) to efficiently encode JSON values to byte vectors and to decode such vectors.
-
-```cpp
-// create a JSON value
-json j = R"({"compact": true, "schema": 0})"_json;
-
-// serialize to BSON
-std::vector v_bson = json::to_bson(j);
-
-// 0x1B, 0x00, 0x00, 0x00, 0x08, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0x00, 0x01, 0x10, 0x73, 0x63, 0x68, 0x65, 0x6D, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-
-// roundtrip
-json j_from_bson = json::from_bson(v_bson);
-
-// serialize to CBOR
-std::vector v_cbor = json::to_cbor(j);
-
-// 0xA2, 0x67, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0xF5, 0x66, 0x73, 0x63, 0x68, 0x65, 0x6D, 0x61, 0x00
-
-// roundtrip
-json j_from_cbor = json::from_cbor(v_cbor);
-
-// serialize to MessagePack
-std::vector v_msgpack = json::to_msgpack(j);
-
-// 0x82, 0xA7, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0xC3, 0xA6, 0x73, 0x63, 0x68, 0x65, 0x6D, 0x61, 0x00
-
-// roundtrip
-json j_from_msgpack = json::from_msgpack(v_msgpack);
-
-// serialize to UBJSON
-std::vector v_ubjson = json::to_ubjson(j);
-
-// 0x7B, 0x69, 0x07, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0x54, 0x69, 0x06, 0x73, 0x63, 0x68, 0x65, 0x6D, 0x61, 0x69, 0x00, 0x7D
-
-// roundtrip
-json j_from_ubjson = json::from_ubjson(v_ubjson);
-```
-
-The library also supports binary types from BSON, CBOR (byte strings), and MessagePack (bin, ext, fixext). They are stored by default as `std::vector` to be processed outside the library.
-
-```cpp
-// CBOR byte string with payload 0xCAFE
-std::vector v = {0x42, 0xCA, 0xFE};
-
-// read value
-json j = json::from_cbor(v);
-
-// the JSON value has type binary
-j.is_binary(); // true
-
-// get reference to stored binary value
-auto& binary = j.get_binary();
-
-// the binary value has no subtype (CBOR has no binary subtypes)
-binary.has_subtype(); // false
-
-// access std::vector member functions
-binary.size(); // 2
-binary[0]; // 0xCA
-binary[1]; // 0xFE
-
-// set subtype to 0x10
-binary.set_subtype(0x10);
-
-// serialize to MessagePack
-auto cbor = json::to_msgpack(j); // 0xD5 (fixext2), 0x10, 0xCA, 0xFE
-```
-
-
-## Supported compilers
-
-Though it's 2023 already, the support for C++11 is still a bit sparse. Currently, the following compilers are known to work:
-
-- GCC 4.8 - 12.0 (and possibly later)
-- Clang 3.4 - 15.0 (and possibly later)
-- Apple Clang 9.1 - 13.1 (and possibly later)
-- Intel C++ Compiler 17.0.2 (and possibly later)
-- Nvidia CUDA Compiler 11.0.221 (and possibly later)
-- Microsoft Visual C++ 2015 / Build Tools 14.0.25123.0 (and possibly later)
-- Microsoft Visual C++ 2017 / Build Tools 15.5.180.51428 (and possibly later)
-- Microsoft Visual C++ 2019 / Build Tools 16.3.1+1def00d3d (and possibly later)
-- Microsoft Visual C++ 2022 / Build Tools 19.30.30709.0 (and possibly later)
-
-I would be happy to learn about other compilers/versions.
-
-Please note:
-
-- GCC 4.8 has a bug [57824](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57824)): multiline raw strings cannot be the arguments to macros. Don't use multiline raw strings directly in macros with this compiler.
-- Android defaults to using very old compilers and C++ libraries. To fix this, add the following to your `Application.mk`. This will switch to the LLVM C++ library, the Clang compiler, and enable C++11 and other features disabled by default.
-
- ```
- APP_STL := c++_shared
- NDK_TOOLCHAIN_VERSION := clang3.6
- APP_CPPFLAGS += -frtti -fexceptions
- ```
-
- The code compiles successfully with [Android NDK](https://developer.android.com/ndk/index.html?hl=ml), Revision 9 - 11 (and possibly later) and [CrystaX's Android NDK](https://www.crystax.net/en/android/ndk) version 10.
-
-- For GCC running on MinGW or Android SDK, the error `'to_string' is not a member of 'std'` (or similarly, for `strtod` or `strtof`) may occur. Note this is not an issue with the code, but rather with the compiler itself. On Android, see above to build with a newer environment. For MinGW, please refer to [this site](https://tehsausage.com/mingw-to-string) and [this discussion](https://github.com/nlohmann/json/issues/136) for information on how to fix this bug. For Android NDK using `APP_STL := gnustl_static`, please refer to [this discussion](https://github.com/nlohmann/json/issues/219).
-
-- Unsupported versions of GCC and Clang are rejected by `#error` directives. This can be switched off by defining `JSON_SKIP_UNSUPPORTED_COMPILER_CHECK`. Note that you can expect no support in this case.
-
-The following compilers are currently used in continuous integration at [AppVeyor](https://ci.appveyor.com/project/nlohmann/json), [Cirrus CI](https://cirrus-ci.com/github/nlohmann/json), and [GitHub Actions](https://github.com/nlohmann/json/actions):
-
-| Compiler | Operating System | CI Provider |
-|--------------------------------------------------------------------------------------------------------|--------------------|----------------|
-| Apple Clang 11.0.3 (clang-1103.0.32.62); Xcode 11.7 | macOS 11.7.1 | GitHub Actions |
-| Apple Clang 12.0.0 (clang-1200.0.32.29); Xcode 12.4 | macOS 11.7.1 | GitHub Actions |
-| Apple Clang 12.0.5 (clang-1205.0.22.11); Xcode 12.5.1 | macOS 11.7.1 | GitHub Actions |
-| Apple Clang 13.0.0 (clang-1300.0.29.3); Xcode 13.0 | macOS 11.7.1 | GitHub Actions |
-| Apple Clang 13.0.0 (clang-1300.0.29.3); Xcode 13.1 | macOS 12.6.1 | GitHub Actions |
-| Apple Clang 13.0.0 (clang-1300.0.29.30); Xcode 13.2.1 | macOS 12.6.1 | GitHub Actions |
-| Apple Clang 13.1.6 (clang-1316.0.21.2.3); Xcode 13.3.1 | macOS 12.6.1 | GitHub Actions |
-| Apple Clang 13.1.6 (clang-1316.0.21.2.5); Xcode 13.4.1 | macOS 12.6.1 | GitHub Actions |
-| Apple Clang 14.0.0 (clang-1400.0.29.102); Xcode 14.0 | macOS 12.6.1 | GitHub Actions |
-| Apple Clang 14.0.0 (clang-1400.0.29.102); Xcode 14.0.1 | macOS 12.6.1 | GitHub Actions |
-| Apple Clang 14.0.0 (clang-1400.0.29.202); Xcode 14.1 | macOS 12.6.1 | GitHub Actions |
-| Clang 3.5.2 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| Clang 3.6.2 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| Clang 3.7.1 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| Clang 3.8.1 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| Clang 3.9.1 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| Clang 4.0.1 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| Clang 5.0.2 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| Clang 6.0.1 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| Clang 7.0.1 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| Clang 8.0.0 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| Clang 9.0.0 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| Clang 10.0.0 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| Clang 10.0.0 with GNU-like command-line | Windows-10.0.17763 | GitHub Actions |
-| Clang 11.0.0 with GNU-like command-line | Windows-10.0.17763 | GitHub Actions |
-| Clang 11.0.0 with MSVC-like command-line | Windows-10.0.17763 | GitHub Actions |
-| Clang 11.0.0 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| Clang 12.0.0 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| Clang 12.0.0 with GNU-like command-line | Windows-10.0.17763 | GitHub Actions |
-| Clang 13.0.0 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| Clang 13.0.0 with GNU-like command-line | Windows-10.0.17763 | GitHub Actions |
-| Clang 14.0.0 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| Clang 14.0.0 with GNU-like command-line | Windows-10.0.17763 | GitHub Actions |
-| Clang 15.0.0 with GNU-like command-line | Windows-10.0.17763 | GitHub Actions |
-| Clang 15.0.4 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| Clang 16.0.0 (16.0.0-++20221031071727+500876226c60-1~exp1~20221031071831.439) | Ubuntu 20.04.3 LTS | GitHub Actions |
-| GCC 4.8.5 (Ubuntu 4.8.5-4ubuntu2) | Ubuntu 20.04.3 LTS | GitHub Actions |
-| GCC 4.9.4 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| GCC 5.5.0 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| GCC 6.5.0 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| GCC 7.5.0 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| GCC 8.1.0 (i686-posix-dwarf-rev0, Built by MinGW-W64 project) | Windows-10.0.17763 | GitHub Actions |
-| GCC 8.1.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) | Windows-10.0.17763 | GitHub Actions |
-| GCC 8.5.0 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| GCC 9.5.0 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| GCC 10.4.0 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| GCC 11.1.0 | Ubuntu (aarch64) | Cirrus CI |
-| GCC 11.3.0 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| GCC 12.2.0 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| GCC 13.0.0 20220605 (experimental) | Ubuntu 20.04.3 LTS | GitHub Actions |
-| Intel C++ Compiler 2021.5.0.20211109 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| NVCC 11.0.221 | Ubuntu 20.04.3 LTS | GitHub Actions |
-| Visual Studio 14 2015 MSVC 19.0.24241.7 (Build Engine version 14.0.25420.1) | Windows-6.3.9600 | AppVeyor |
-| Visual Studio 15 2017 MSVC 19.16.27035.0 (Build Engine version 15.9.21+g9802d43bc3 for .NET Framework) | Windows-10.0.14393 | AppVeyor |
-| Visual Studio 16 2019 MSVC 19.28.29912.0 (Build Engine version 16.9.0+57a23d249 for .NET Framework) | Windows-10.0.17763 | GitHub Actions |
-| Visual Studio 16 2019 MSVC 19.28.29912.0 (Build Engine version 16.9.0+57a23d249 for .NET Framework) | Windows-10.0.17763 | AppVeyor |
-| Visual Studio 17 2022 MSVC 19.30.30709.0 (Build Engine version 17.0.31804.368 for .NET Framework) | Windows-10.0.20348 | GitHub Actions |
-
-
-## Integration
-
-[`json.hpp`](https://github.com/nlohmann/json/blob/develop/single_include/nlohmann/json.hpp) is the single required file in `single_include/nlohmann` or [released here](https://github.com/nlohmann/json/releases). You need to add
-
-```cpp
-#include
-
-// for convenience
-using json = nlohmann::json;
-```
-
-to the files you want to process JSON and set the necessary switches to enable C++11 (e.g., `-std=c++11` for GCC and Clang).
-
-You can further use file [`include/nlohmann/json_fwd.hpp`](https://github.com/nlohmann/json/blob/develop/include/nlohmann/json_fwd.hpp) for forward-declarations. The installation of json_fwd.hpp (as part of cmake's install step), can be achieved by setting `-DJSON_MultipleHeaders=ON`.
-
-### CMake
-
-You can also use the `nlohmann_json::nlohmann_json` interface target in CMake. This target populates the appropriate usage requirements for `INTERFACE_INCLUDE_DIRECTORIES` to point to the appropriate include directories and `INTERFACE_COMPILE_FEATURES` for the necessary C++11 flags.
-
-#### External
-
-To use this library from a CMake project, you can locate it directly with `find_package()` and use the namespaced imported target from the generated package configuration:
-
-```cmake
-# CMakeLists.txt
-find_package(nlohmann_json 3.2.0 REQUIRED)
-...
-add_library(foo ...)
-...
-target_link_libraries(foo PRIVATE nlohmann_json::nlohmann_json)
-```
-
-The package configuration file, `nlohmann_jsonConfig.cmake`, can be used either from an install tree or directly out of the build tree.
-
-#### Embedded
-
-To embed the library directly into an existing CMake project, place the entire source tree in a subdirectory and call `add_subdirectory()` in your `CMakeLists.txt` file:
-
-```cmake
-# Typically you don't care so much for a third party library's tests to be
-# run from your own project's code.
-set(JSON_BuildTests OFF CACHE INTERNAL "")
-
-# If you only include this third party in PRIVATE source files, you do not
-# need to install it when your main project gets installed.
-# set(JSON_Install OFF CACHE INTERNAL "")
-
-# Don't use include(nlohmann_json/CMakeLists.txt) since that carries with it
-# unintended consequences that will break the build. It's generally
-# discouraged (although not necessarily well documented as such) to use
-# include(...) for pulling in other CMake projects anyways.
-add_subdirectory(nlohmann_json)
-...
-add_library(foo ...)
-...
-target_link_libraries(foo PRIVATE nlohmann_json::nlohmann_json)
-```
-
-##### Embedded (FetchContent)
-
-Since CMake v3.11,
-[FetchContent](https://cmake.org/cmake/help/v3.11/module/FetchContent.html) can
-be used to automatically download a release as a dependency at configure time.
-
-Example:
-```cmake
-include(FetchContent)
-
-FetchContent_Declare(json URL https://github.com/nlohmann/json/releases/download/v3.11.3/json.tar.xz)
-FetchContent_MakeAvailable(json)
-
-target_link_libraries(foo PRIVATE nlohmann_json::nlohmann_json)
-```
-
-**Note**: It is recommended to use the URL approach described above which is supported as of version 3.10.0. See
- for more information.
-
-#### Supporting Both
-
-To allow your project to support either an externally supplied or an embedded JSON library, you can use a pattern akin to the following:
-
-``` cmake
-# Top level CMakeLists.txt
-project(FOO)
-...
-option(FOO_USE_EXTERNAL_JSON "Use an external JSON library" OFF)
-...
-add_subdirectory(thirdparty)
-...
-add_library(foo ...)
-...
-# Note that the namespaced target will always be available regardless of the
-# import method
-target_link_libraries(foo PRIVATE nlohmann_json::nlohmann_json)
-```
-```cmake
-# thirdparty/CMakeLists.txt
-...
-if(FOO_USE_EXTERNAL_JSON)
- find_package(nlohmann_json 3.2.0 REQUIRED)
-else()
- set(JSON_BuildTests OFF CACHE INTERNAL "")
- add_subdirectory(nlohmann_json)
-endif()
-...
-```
-
-`thirdparty/nlohmann_json` is then a complete copy of this source tree.
-
-### Package Managers
-
-:beer: If you are using OS X and [Homebrew](https://brew.sh), just type `brew install nlohmann-json` and you're set. If you want the bleeding edge rather than the latest release, use `brew install nlohmann-json --HEAD`. See [nlohmann-json](https://formulae.brew.sh/formula/nlohmann-json) for more information.
-
-If you are using the [Meson Build System](https://mesonbuild.com), add this source tree as a [meson subproject](https://mesonbuild.com/Subprojects.html#using-a-subproject). You may also use the `include.zip` published in this project's [Releases](https://github.com/nlohmann/json/releases) to reduce the size of the vendored source tree. Alternatively, you can get a wrap file by downloading it from [Meson WrapDB](https://wrapdb.mesonbuild.com/nlohmann_json), or simply use `meson wrap install nlohmann_json`. Please see the meson project for any issues regarding the packaging.
-
-The provided `meson.build` can also be used as an alternative to CMake for installing `nlohmann_json` system-wide in which case a pkg-config file is installed. To use it, simply have your build system require the `nlohmann_json` pkg-config dependency. In Meson, it is preferred to use the [`dependency()`](https://mesonbuild.com/Reference-manual.html#dependency) object with a subproject fallback, rather than using the subproject directly.
-
-If you are using [Bazel](https://bazel.build/) you can simply reference this repository using `http_archive` or `git_repository` and depend on `@nlohmann_json//:json`.
-
-If you are using [Conan](https://www.conan.io/) to manage your dependencies, merely add [`nlohmann_json/x.y.z`](https://conan.io/center/nlohmann_json) to your `conanfile`'s requires, where `x.y.z` is the release version you want to use. Please file issues [here](https://github.com/conan-io/conan-center-index/issues) if you experience problems with the packages.
-
-If you are using [Spack](https://www.spack.io/) to manage your dependencies, you can use the [`nlohmann-json` package](https://spack.readthedocs.io/en/latest/package_list.html#nlohmann-json). Please see the [spack project](https://github.com/spack/spack) for any issues regarding the packaging.
-
-If you are using [hunter](https://github.com/cpp-pm/hunter) on your project for external dependencies, then you can use the [nlohmann_json package](https://hunter.readthedocs.io/en/latest/packages/pkg/nlohmann_json.html). Please see the hunter project for any issues regarding the packaging.
-
-If you are using [Buckaroo](https://buckaroo.pm), you can install this library's module with `buckaroo add github.com/buckaroo-pm/nlohmann-json`. Please file issues [here](https://github.com/buckaroo-pm/nlohmann-json). There is a demo repo [here](https://github.com/njlr/buckaroo-nholmann-json-example).
-
-If you are using [vcpkg](https://github.com/Microsoft/vcpkg/) on your project for external dependencies, then you can install the [nlohmann-json package](https://github.com/Microsoft/vcpkg/tree/master/ports/nlohmann-json) with `vcpkg install nlohmann-json` and follow the then displayed descriptions. Please see the vcpkg project for any issues regarding the packaging.
-
-If you are using [cget](https://cget.readthedocs.io/en/latest/), you can install the latest development version with `cget install nlohmann/json`. A specific version can be installed with `cget install nlohmann/json@v3.1.0`. Also, the multiple header version can be installed by adding the `-DJSON_MultipleHeaders=ON` flag (i.e., `cget install nlohmann/json -DJSON_MultipleHeaders=ON`).
-
-If you are using [CocoaPods](https://cocoapods.org), you can use the library by adding pod `"nlohmann_json", '~>3.1.2'` to your podfile (see [an example](https://bitbucket.org/benman/nlohmann_json-cocoapod/src/master/)). Please file issues [here](https://bitbucket.org/benman/nlohmann_json-cocoapod/issues?status=new&status=open).
-
-If you are using [Swift Package Manager](https://swift.org/package-manager/), you can use the library by adding a package dependency to this repository. And target dependency as `.product(name: "nlohmann-json", package: "json")`.
-
-If you are using [NuGet](https://www.nuget.org), you can use the package [nlohmann.json](https://www.nuget.org/packages/nlohmann.json/). Please check [this extensive description](https://github.com/nlohmann/json/issues/1132#issuecomment-452250255) on how to use the package. Please file issues [here](https://github.com/hnkb/nlohmann-json-nuget/issues).
-
-If you are using [conda](https://conda.io/), you can use the package [nlohmann_json](https://github.com/conda-forge/nlohmann_json-feedstock) from [conda-forge](https://conda-forge.org) executing `conda install -c conda-forge nlohmann_json`. Please file issues [here](https://github.com/conda-forge/nlohmann_json-feedstock/issues).
-
-If you are using [MSYS2](https://www.msys2.org/), you can use the [mingw-w64-nlohmann-json](https://packages.msys2.org/base/mingw-w64-nlohmann-json) package, just type `pacman -S mingw-w64-i686-nlohmann-json` or `pacman -S mingw-w64-x86_64-nlohmann-json` for installation. Please file issues [here](https://github.com/msys2/MINGW-packages/issues/new?title=%5Bnlohmann-json%5D) if you experience problems with the packages.
-
-If you are using [MacPorts](https://ports.macports.org), execute `sudo port install nlohmann-json` to install the [nlohmann-json](https://ports.macports.org/port/nlohmann-json/) package.
-
-If you are using [`build2`](https://build2.org), you can use the [`nlohmann-json`](https://cppget.org/nlohmann-json) package from the public repository https://cppget.org or directly from the [package's sources repository](https://github.com/build2-packaging/nlohmann-json). In your project's `manifest` file, just add `depends: nlohmann-json` (probably with some [version constraints](https://build2.org/build2-toolchain/doc/build2-toolchain-intro.xhtml#guide-add-remove-deps)). If you are not familiar with using dependencies in `build2`, [please read this introduction](https://build2.org/build2-toolchain/doc/build2-toolchain-intro.xhtml).
-Please file issues [here](https://github.com/build2-packaging/nlohmann-json) if you experience problems with the packages.
-
-If you are using [`wsjcpp`](https://wsjcpp.org), you can use the command `wsjcpp install "https://github.com/nlohmann/json:develop"` to get the latest version. Note you can change the branch ":develop" to an existing tag or another branch.
-
-If you are using [`CPM.cmake`](https://github.com/TheLartians/CPM.cmake), you can check this [`example`](https://github.com/TheLartians/CPM.cmake/tree/master/examples/json). After [adding CPM script](https://github.com/TheLartians/CPM.cmake#adding-cpm) to your project, implement the following snippet to your CMake:
-
-```cmake
-CPMAddPackage(
- NAME nlohmann_json
- GITHUB_REPOSITORY nlohmann/json
- VERSION 3.9.1)
-```
-
-### Pkg-config
-
-If you are using bare Makefiles, you can use `pkg-config` to generate the include flags that point to where the library is installed:
-
-```sh
-pkg-config nlohmann_json --cflags
-```
-
-Users of the Meson build system will also be able to use a system-wide library, which will be found by `pkg-config`:
-
-```meson
-json = dependency('nlohmann_json', required: true)
-```
-
-
-## License
-
-
-
-The class is licensed under the [MIT License](https://opensource.org/licenses/MIT):
-
-Copyright © 2013-2022 [Niels Lohmann](https://nlohmann.me)
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-* * *
-
-The class contains the UTF-8 Decoder from Bjoern Hoehrmann which is licensed under the [MIT License](https://opensource.org/licenses/MIT) (see above). Copyright © 2008-2009 [Björn Hoehrmann](https://bjoern.hoehrmann.de/)
-
-The class contains a slightly modified version of the Grisu2 algorithm from Florian Loitsch which is licensed under the [MIT License](https://opensource.org/licenses/MIT) (see above). Copyright © 2009 [Florian Loitsch](https://florian.loitsch.com/)
-
-The class contains a copy of [Hedley](https://nemequ.github.io/hedley/) from Evan Nemerson which is licensed as [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/).
-
-The class contains parts of [Google Abseil](https://github.com/abseil/abseil-cpp) which is licensed under the [Apache 2.0 License](https://opensource.org/licenses/Apache-2.0).
-
-## Contact
-
-If you have questions regarding the library, I would like to invite you to [open an issue at GitHub](https://github.com/nlohmann/json/issues/new/choose). Please describe your request, problem, or question as detailed as possible, and also mention the version of the library you are using as well as the version of your compiler and operating system. Opening an issue at GitHub allows other users and contributors to this library to collaborate. For instance, I have little experience with MSVC, and most issues in this regard have been solved by a growing community. If you have a look at the [closed issues](https://github.com/nlohmann/json/issues?q=is%3Aissue+is%3Aclosed), you will see that we react quite timely in most cases.
-
-Only if your request would contain confidential information, please [send me an email](mailto:mail@nlohmann.me). For encrypted messages, please use [this key](https://keybase.io/nlohmann/pgp_keys.asc).
-
-## Security
-
-[Commits by Niels Lohmann](https://github.com/nlohmann/json/commits) and [releases](https://github.com/nlohmann/json/releases) are signed with this [PGP Key](https://keybase.io/nlohmann/pgp_keys.asc?fingerprint=797167ae41c0a6d9232e48457f3cea63ae251b69).
-
-## Thanks
-
-I deeply appreciate the help of the following people.
-
-
-
-1. [Teemperor](https://github.com/Teemperor) implemented CMake support and lcov integration, realized escape and Unicode handling in the string parser, and fixed the JSON serialization.
-2. [elliotgoodrich](https://github.com/elliotgoodrich) fixed an issue with double deletion in the iterator classes.
-3. [kirkshoop](https://github.com/kirkshoop) made the iterators of the class composable to other libraries.
-4. [wancw](https://github.com/wanwc) fixed a bug that hindered the class to compile with Clang.
-5. Tomas Åblad found a bug in the iterator implementation.
-6. [Joshua C. Randall](https://github.com/jrandall) fixed a bug in the floating-point serialization.
-7. [Aaron Burghardt](https://github.com/aburgh) implemented code to parse streams incrementally. Furthermore, he greatly improved the parser class by allowing the definition of a filter function to discard undesired elements while parsing.
-8. [Daniel Kopeček](https://github.com/dkopecek) fixed a bug in the compilation with GCC 5.0.
-9. [Florian Weber](https://github.com/Florianjw) fixed a bug in and improved the performance of the comparison operators.
-10. [Eric Cornelius](https://github.com/EricMCornelius) pointed out a bug in the handling with NaN and infinity values. He also improved the performance of the string escaping.
-11. [易思龙](https://github.com/likebeta) implemented a conversion from anonymous enums.
-12. [kepkin](https://github.com/kepkin) patiently pushed forward the support for Microsoft Visual studio.
-13. [gregmarr](https://github.com/gregmarr) simplified the implementation of reverse iterators and helped with numerous hints and improvements. In particular, he pushed forward the implementation of user-defined types.
-14. [Caio Luppi](https://github.com/caiovlp) fixed a bug in the Unicode handling.
-15. [dariomt](https://github.com/dariomt) fixed some typos in the examples.
-16. [Daniel Frey](https://github.com/d-frey) cleaned up some pointers and implemented exception-safe memory allocation.
-17. [Colin Hirsch](https://github.com/ColinH) took care of a small namespace issue.
-18. [Huu Nguyen](https://github.com/whoshuu) correct a variable name in the documentation.
-19. [Silverweed](https://github.com/silverweed) overloaded `parse()` to accept an rvalue reference.
-20. [dariomt](https://github.com/dariomt) fixed a subtlety in MSVC type support and implemented the `get_ref()` function to get a reference to stored values.
-21. [ZahlGraf](https://github.com/ZahlGraf) added a workaround that allows compilation using Android NDK.
-22. [whackashoe](https://github.com/whackashoe) replaced a function that was marked as unsafe by Visual Studio.
-23. [406345](https://github.com/406345) fixed two small warnings.
-24. [Glen Fernandes](https://github.com/glenfe) noted a potential portability problem in the `has_mapped_type` function.
-25. [Corbin Hughes](https://github.com/nibroc) fixed some typos in the contribution guidelines.
-26. [twelsby](https://github.com/twelsby) fixed the array subscript operator, an issue that failed the MSVC build, and floating-point parsing/dumping. He further added support for unsigned integer numbers and implemented better roundtrip support for parsed numbers.
-27. [Volker Diels-Grabsch](https://github.com/vog) fixed a link in the README file.
-28. [msm-](https://github.com/msm-) added support for American Fuzzy Lop.
-29. [Annihil](https://github.com/Annihil) fixed an example in the README file.
-30. [Themercee](https://github.com/Themercee) noted a wrong URL in the README file.
-31. [Lv Zheng](https://github.com/lv-zheng) fixed a namespace issue with `int64_t` and `uint64_t`.
-32. [abc100m](https://github.com/abc100m) analyzed the issues with GCC 4.8 and proposed a [partial solution](https://github.com/nlohmann/json/pull/212).
-33. [zewt](https://github.com/zewt) added useful notes to the README file about Android.
-34. [Róbert Márki](https://github.com/robertmrk) added a fix to use move iterators and improved the integration via CMake.
-35. [Chris Kitching](https://github.com/ChrisKitching) cleaned up the CMake files.
-36. [Tom Needham](https://github.com/06needhamt) fixed a subtle bug with MSVC 2015 which was also proposed by [Michael K.](https://github.com/Epidal).
-37. [Mário Feroldi](https://github.com/thelostt) fixed a small typo.
-38. [duncanwerner](https://github.com/duncanwerner) found a really embarrassing performance regression in the 2.0.0 release.
-39. [Damien](https://github.com/dtoma) fixed one of the last conversion warnings.
-40. [Thomas Braun](https://github.com/t-b) fixed a warning in a test case and adjusted MSVC calls in the CI.
-41. [Théo DELRIEU](https://github.com/theodelrieu) patiently and constructively oversaw the long way toward [iterator-range parsing](https://github.com/nlohmann/json/issues/290). He also implemented the magic behind the serialization/deserialization of user-defined types and split the single header file into smaller chunks.
-42. [Stefan](https://github.com/5tefan) fixed a minor issue in the documentation.
-43. [Vasil Dimov](https://github.com/vasild) fixed the documentation regarding conversions from `std::multiset`.
-44. [ChristophJud](https://github.com/ChristophJud) overworked the CMake files to ease project inclusion.
-45. [Vladimir Petrigo](https://github.com/vpetrigo) made a SFINAE hack more readable and added Visual Studio 17 to the build matrix.
-46. [Denis Andrejew](https://github.com/seeekr) fixed a grammar issue in the README file.
-47. [Pierre-Antoine Lacaze](https://github.com/palacaze) found a subtle bug in the `dump()` function.
-48. [TurpentineDistillery](https://github.com/TurpentineDistillery) pointed to [`std::locale::classic()`](https://en.cppreference.com/w/cpp/locale/locale/classic) to avoid too much locale joggling, found some nice performance improvements in the parser, improved the benchmarking code, and realized locale-independent number parsing and printing.
-49. [cgzones](https://github.com/cgzones) had an idea how to fix the Coverity scan.
-50. [Jared Grubb](https://github.com/jaredgrubb) silenced a nasty documentation warning.
-51. [Yixin Zhang](https://github.com/qwename) fixed an integer overflow check.
-52. [Bosswestfalen](https://github.com/Bosswestfalen) merged two iterator classes into a smaller one.
-53. [Daniel599](https://github.com/Daniel599) helped to get Travis execute the tests with Clang's sanitizers.
-54. [Jonathan Lee](https://github.com/vjon) fixed an example in the README file.
-55. [gnzlbg](https://github.com/gnzlbg) supported the implementation of user-defined types.
-56. [Alexej Harm](https://github.com/qis) helped to get the user-defined types working with Visual Studio.
-57. [Jared Grubb](https://github.com/jaredgrubb) supported the implementation of user-defined types.
-58. [EnricoBilla](https://github.com/EnricoBilla) noted a typo in an example.
-59. [Martin Hořeňovský](https://github.com/horenmar) found a way for a 2x speedup for the compilation time of the test suite.
-60. [ukhegg](https://github.com/ukhegg) found proposed an improvement for the examples section.
-61. [rswanson-ihi](https://github.com/rswanson-ihi) noted a typo in the README.
-62. [Mihai Stan](https://github.com/stanmihai4) fixed a bug in the comparison with `nullptr`s.
-63. [Tushar Maheshwari](https://github.com/tusharpm) added [cotire](https://github.com/sakra/cotire) support to speed up the compilation.
-64. [TedLyngmo](https://github.com/TedLyngmo) noted a typo in the README, removed unnecessary bit arithmetic, and fixed some `-Weffc++` warnings.
-65. [Krzysztof Woś](https://github.com/krzysztofwos) made exceptions more visible.
-66. [ftillier](https://github.com/ftillier) fixed a compiler warning.
-67. [tinloaf](https://github.com/tinloaf) made sure all pushed warnings are properly popped.
-68. [Fytch](https://github.com/Fytch) found a bug in the documentation.
-69. [Jay Sistar](https://github.com/Type1J) implemented a Meson build description.
-70. [Henry Lee](https://github.com/HenryRLee) fixed a warning in ICC and improved the iterator implementation.
-71. [Vincent Thiery](https://github.com/vthiery) maintains a package for the Conan package manager.
-72. [Steffen](https://github.com/koemeet) fixed a potential issue with MSVC and `std::min`.
-73. [Mike Tzou](https://github.com/Chocobo1) fixed some typos.
-74. [amrcode](https://github.com/amrcode) noted a misleading documentation about comparison of floats.
-75. [Oleg Endo](https://github.com/olegendo) reduced the memory consumption by replacing `` with ``.
-76. [dan-42](https://github.com/dan-42) cleaned up the CMake files to simplify including/reusing of the library.
-77. [Nikita Ofitserov](https://github.com/himikof) allowed for moving values from initializer lists.
-78. [Greg Hurrell](https://github.com/wincent) fixed a typo.
-79. [Dmitry Kukovinets](https://github.com/DmitryKuk) fixed a typo.
-80. [kbthomp1](https://github.com/kbthomp1) fixed an issue related to the Intel OSX compiler.
-81. [Markus Werle](https://github.com/daixtrose) fixed a typo.
-82. [WebProdPP](https://github.com/WebProdPP) fixed a subtle error in a precondition check.
-83. [Alex](https://github.com/leha-bot) noted an error in a code sample.
-84. [Tom de Geus](https://github.com/tdegeus) reported some warnings with ICC and helped to fix them.
-85. [Perry Kundert](https://github.com/pjkundert) simplified reading from input streams.
-86. [Sonu Lohani](https://github.com/sonulohani) fixed a small compilation error.
-87. [Jamie Seward](https://github.com/jseward) fixed all MSVC warnings.
-88. [Nate Vargas](https://github.com/eld00d) added a Doxygen tag file.
-89. [pvleuven](https://github.com/pvleuven) helped to fix a warning in ICC.
-90. [Pavel](https://github.com/crea7or) helped to fix some warnings in MSVC.
-91. [Jamie Seward](https://github.com/jseward) avoided unnecessary string copies in `find()` and `count()`.
-92. [Mitja](https://github.com/Itja) fixed some typos.
-93. [Jorrit Wronski](https://github.com/jowr) updated the Hunter package links.
-94. [Matthias Möller](https://github.com/TinyTinni) added a `.natvis` for the MSVC debug view.
-95. [bogemic](https://github.com/bogemic) fixed some C++17 deprecation warnings.
-96. [Eren Okka](https://github.com/erengy) fixed some MSVC warnings.
-97. [abolz](https://github.com/abolz) integrated the Grisu2 algorithm for proper floating-point formatting, allowing more roundtrip checks to succeed.
-98. [Vadim Evard](https://github.com/Pipeliner) fixed a Markdown issue in the README.
-99. [zerodefect](https://github.com/zerodefect) fixed a compiler warning.
-100. [Kert](https://github.com/kaidokert) allowed to template the string type in the serialization and added the possibility to override the exceptional behavior.
-101. [mark-99](https://github.com/mark-99) helped fixing an ICC error.
-102. [Patrik Huber](https://github.com/patrikhuber) fixed links in the README file.
-103. [johnfb](https://github.com/johnfb) found a bug in the implementation of CBOR's indefinite length strings.
-104. [Paul Fultz II](https://github.com/pfultz2) added a note on the cget package manager.
-105. [Wilson Lin](https://github.com/wla80) made the integration section of the README more concise.
-106. [RalfBielig](https://github.com/ralfbielig) detected and fixed a memory leak in the parser callback.
-107. [agrianius](https://github.com/agrianius) allowed to dump JSON to an alternative string type.
-108. [Kevin Tonon](https://github.com/ktonon) overworked the C++11 compiler checks in CMake.
-109. [Axel Huebl](https://github.com/ax3l) simplified a CMake check and added support for the [Spack package manager](https://spack.io).
-110. [Carlos O'Ryan](https://github.com/coryan) fixed a typo.
-111. [James Upjohn](https://github.com/jammehcow) fixed a version number in the compilers section.
-112. [Chuck Atkins](https://github.com/chuckatkins) adjusted the CMake files to the CMake packaging guidelines and provided documentation for the CMake integration.
-113. [Jan Schöppach](https://github.com/dns13) fixed a typo.
-114. [martin-mfg](https://github.com/martin-mfg) fixed a typo.
-115. [Matthias Möller](https://github.com/TinyTinni) removed the dependency from `std::stringstream`.
-116. [agrianius](https://github.com/agrianius) added code to use alternative string implementations.
-117. [Daniel599](https://github.com/Daniel599) allowed to use more algorithms with the `items()` function.
-118. [Julius Rakow](https://github.com/jrakow) fixed the Meson include directory and fixed the links to [cppreference.com](cppreference.com).
-119. [Sonu Lohani](https://github.com/sonulohani) fixed the compilation with MSVC 2015 in debug mode.
-120. [grembo](https://github.com/grembo) fixed the test suite and re-enabled several test cases.
-121. [Hyeon Kim](https://github.com/simnalamburt) introduced the macro `JSON_INTERNAL_CATCH` to control the exception handling inside the library.
-122. [thyu](https://github.com/thyu) fixed a compiler warning.
-123. [David Guthrie](https://github.com/LEgregius) fixed a subtle compilation error with Clang 3.4.2.
-124. [Dennis Fischer](https://github.com/dennisfischer) allowed to call `find_package` without installing the library.
-125. [Hyeon Kim](https://github.com/simnalamburt) fixed an issue with a double macro definition.
-126. [Ben Berman](https://github.com/rivertam) made some error messages more understandable.
-127. [zakalibit](https://github.com/zakalibit) fixed a compilation problem with the Intel C++ compiler.
-128. [mandreyel](https://github.com/mandreyel) fixed a compilation problem.
-129. [Kostiantyn Ponomarenko](https://github.com/koponomarenko) added version and license information to the Meson build file.
-130. [Henry Schreiner](https://github.com/henryiii) added support for GCC 4.8.
-131. [knilch](https://github.com/knilch0r) made sure the test suite does not stall when run in the wrong directory.
-132. [Antonio Borondo](https://github.com/antonioborondo) fixed an MSVC 2017 warning.
-133. [Dan Gendreau](https://github.com/dgendreau) implemented the `NLOHMANN_JSON_SERIALIZE_ENUM` macro to quickly define an enum/JSON mapping.
-134. [efp](https://github.com/efp) added line and column information to parse errors.
-135. [julian-becker](https://github.com/julian-becker) added BSON support.
-136. [Pratik Chowdhury](https://github.com/pratikpc) added support for structured bindings.
-137. [David Avedissian](https://github.com/davedissian) added support for Clang 5.0.1 (PS4 version).
-138. [Jonathan Dumaresq](https://github.com/dumarjo) implemented an input adapter to read from `FILE*`.
-139. [kjpus](https://github.com/kjpus) fixed a link in the documentation.
-140. [Manvendra Singh](https://github.com/manu-chroma) fixed a typo in the documentation.
-141. [ziggurat29](https://github.com/ziggurat29) fixed an MSVC warning.
-142. [Sylvain Corlay](https://github.com/SylvainCorlay) added code to avoid an issue with MSVC.
-143. [mefyl](https://github.com/mefyl) fixed a bug when JSON was parsed from an input stream.
-144. [Millian Poquet](https://github.com/mpoquet) allowed to install the library via Meson.
-145. [Michael Behrns-Miller](https://github.com/moodboom) found an issue with a missing namespace.
-146. [Nasztanovics Ferenc](https://github.com/naszta) fixed a compilation issue with libc 2.12.
-147. [Andreas Schwab](https://github.com/andreas-schwab) fixed the endian conversion.
-148. [Mark-Dunning](https://github.com/Mark-Dunning) fixed a warning in MSVC.
-149. [Gareth Sylvester-Bradley](https://github.com/garethsb-sony) added `operator/` for JSON Pointers.
-150. [John-Mark](https://github.com/johnmarkwayve) noted a missing header.
-151. [Vitaly Zaitsev](https://github.com/xvitaly) fixed compilation with GCC 9.0.
-152. [Laurent Stacul](https://github.com/stac47) fixed compilation with GCC 9.0.
-153. [Ivor Wanders](https://github.com/iwanders) helped to reduce the CMake requirement to version 3.1.
-154. [njlr](https://github.com/njlr) updated the Buckaroo instructions.
-155. [Lion](https://github.com/lieff) fixed a compilation issue with GCC 7 on CentOS.
-156. [Isaac Nickaein](https://github.com/nickaein) improved the integer serialization performance and implemented the `contains()` function.
-157. [past-due](https://github.com/past-due) suppressed an unfixable warning.
-158. [Elvis Oric](https://github.com/elvisoric) improved Meson support.
-159. [Matěj Plch](https://github.com/Afforix) fixed an example in the README.
-160. [Mark Beckwith](https://github.com/wythe) fixed a typo.
-161. [scinart](https://github.com/scinart) fixed bug in the serializer.
-162. [Patrick Boettcher](https://github.com/pboettch) implemented `push_back()` and `pop_back()` for JSON Pointers.
-163. [Bruno Oliveira](https://github.com/nicoddemus) added support for Conda.
-164. [Michele Caini](https://github.com/skypjack) fixed links in the README.
-165. [Hani](https://github.com/hnkb) documented how to install the library with NuGet.
-166. [Mark Beckwith](https://github.com/wythe) fixed a typo.
-167. [yann-morin-1998](https://github.com/yann-morin-1998) helped to reduce the CMake requirement to version 3.1.
-168. [Konstantin Podsvirov](https://github.com/podsvirov) maintains a package for the MSYS2 software distro.
-169. [remyabel](https://github.com/remyabel) added GNUInstallDirs to the CMake files.
-170. [Taylor Howard](https://github.com/taylorhoward92) fixed a unit test.
-171. [Gabe Ron](https://github.com/Macr0Nerd) implemented the `to_string` method.
-172. [Watal M. Iwasaki](https://github.com/heavywatal) fixed a Clang warning.
-173. [Viktor Kirilov](https://github.com/onqtam) switched the unit tests from [Catch](https://github.com/philsquared/Catch) to [doctest](https://github.com/onqtam/doctest)
-174. [Juncheng E](https://github.com/ejcjason) fixed a typo.
-175. [tete17](https://github.com/tete17) fixed a bug in the `contains` function.
-176. [Xav83](https://github.com/Xav83) fixed some cppcheck warnings.
-177. [0xflotus](https://github.com/0xflotus) fixed some typos.
-178. [Christian Deneke](https://github.com/chris0x44) added a const version of `json_pointer::back`.
-179. [Julien Hamaide](https://github.com/crazyjul) made the `items()` function work with custom string types.
-180. [Evan Nemerson](https://github.com/nemequ) updated fixed a bug in Hedley and updated this library accordingly.
-181. [Florian Pigorsch](https://github.com/flopp) fixed a lot of typos.
-182. [Camille Bégué](https://github.com/cbegue) fixed an issue in the conversion from `std::pair` and `std::tuple` to `json`.
-183. [Anthony VH](https://github.com/AnthonyVH) fixed a compile error in an enum deserialization.
-184. [Yuriy Vountesmery](https://github.com/ua-code-dragon) noted a subtle bug in a preprocessor check.
-185. [Chen](https://github.com/dota17) fixed numerous issues in the library.
-186. [Antony Kellermann](https://github.com/aokellermann) added a CI step for GCC 10.1.
-187. [Alex](https://github.com/gistrec) fixed an MSVC warning.
-188. [Rainer](https://github.com/rvjr) proposed an improvement in the floating-point serialization in CBOR.
-189. [Francois Chabot](https://github.com/FrancoisChabot) made performance improvements in the input adapters.
-190. [Arthur Sonzogni](https://github.com/ArthurSonzogni) documented how the library can be included via `FetchContent`.
-191. [Rimas Misevičius](https://github.com/rmisev) fixed an error message.
-192. [Alexander Myasnikov](https://github.com/alexandermyasnikov) fixed some examples and a link in the README.
-193. [Hubert Chathi](https://github.com/uhoreg) made CMake's version config file architecture-independent.
-194. [OmnipotentEntity](https://github.com/OmnipotentEntity) implemented the binary values for CBOR, MessagePack, BSON, and UBJSON.
-195. [ArtemSarmini](https://github.com/ArtemSarmini) fixed a compilation issue with GCC 10 and fixed a leak.
-196. [Evgenii Sopov](https://github.com/sea-kg) integrated the library to the wsjcpp package manager.
-197. [Sergey Linev](https://github.com/linev) fixed a compiler warning.
-198. [Miguel Magalhães](https://github.com/magamig) fixed the year in the copyright.
-199. [Gareth Sylvester-Bradley](https://github.com/garethsb-sony) fixed a compilation issue with MSVC.
-200. [Alexander “weej” Jones](https://github.com/alex-weej) fixed an example in the README.
-201. [Antoine Cœur](https://github.com/Coeur) fixed some typos in the documentation.
-202. [jothepro](https://github.com/jothepro) updated links to the Hunter package.
-203. [Dave Lee](https://github.com/kastiglione) fixed link in the README.
-204. [Joël Lamotte](https://github.com/Klaim) added instruction for using Build2's package manager.
-205. [Paul Jurczak](https://github.com/pauljurczak) fixed an example in the README.
-206. [Sonu Lohani](https://github.com/sonulohani) fixed a warning.
-207. [Carlos Gomes Martinho](https://github.com/gocarlos) updated the Conan package source.
-208. [Konstantin Podsvirov](https://github.com/podsvirov) fixed the MSYS2 package documentation.
-209. [Tridacnid](https://github.com/Tridacnid) improved the CMake tests.
-210. [Michael](https://github.com/MBalszun) fixed MSVC warnings.
-211. [Quentin Barbarat](https://github.com/quentin-dev) fixed an example in the documentation.
-212. [XyFreak](https://github.com/XyFreak) fixed a compiler warning.
-213. [TotalCaesar659](https://github.com/TotalCaesar659) fixed links in the README.
-214. [Tanuj Garg](https://github.com/tanuj208) improved the fuzzer coverage for UBSAN input.
-215. [AODQ](https://github.com/AODQ) fixed a compiler warning.
-216. [jwittbrodt](https://github.com/jwittbrodt) made `NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE` inline.
-217. [pfeatherstone](https://github.com/pfeatherstone) improved the upper bound of arguments of the `NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE`/`NLOHMANN_DEFINE_TYPE_INTRUSIVE` macros.
-218. [Jan Procházka](https://github.com/jprochazk) fixed a bug in the CBOR parser for binary and string values.
-219. [T0b1-iOS](https://github.com/T0b1-iOS) fixed a bug in the new hash implementation.
-220. [Matthew Bauer](https://github.com/matthewbauer) adjusted the CBOR writer to create tags for binary subtypes.
-221. [gatopeich](https://github.com/gatopeich) implemented an ordered map container for `nlohmann::ordered_json`.
-222. [Érico Nogueira Rolim](https://github.com/ericonr) added support for pkg-config.
-223. [KonanM](https://github.com/KonanM) proposed an implementation for the `NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE`/`NLOHMANN_DEFINE_TYPE_INTRUSIVE` macros.
-224. [Guillaume Racicot](https://github.com/gracicot) implemented `string_view` support and allowed C++20 support.
-225. [Alex Reinking](https://github.com/alexreinking) improved CMake support for `FetchContent`.
-226. [Hannes Domani](https://github.com/ssbssa) provided a GDB pretty printer.
-227. Lars Wirzenius reviewed the README file.
-228. [Jun Jie](https://github.com/ongjunjie) fixed a compiler path in the CMake scripts.
-229. [Ronak Buch](https://github.com/rbuch) fixed typos in the documentation.
-230. [Alexander Karzhenkov](https://github.com/karzhenkov) fixed a move constructor and the Travis builds.
-231. [Leonardo Lima](https://github.com/leozz37) added CPM.Cmake support.
-232. [Joseph Blackman](https://github.com/jbzdarkid) fixed a warning.
-233. [Yaroslav](https://github.com/YarikTH) updated doctest and implemented unit tests.
-234. [Martin Stump](https://github.com/globberwops) fixed a bug in the CMake files.
-235. [Jaakko Moisio](https://github.com/jasujm) fixed a bug in the input adapters.
-236. [bl-ue](https://github.com/bl-ue) fixed some Markdown issues in the README file.
-237. [William A. Wieselquist](https://github.com/wawiesel) fixed an example from the README.
-238. [abbaswasim](https://github.com/abbaswasim) fixed an example from the README.
-239. [Remy Jette](https://github.com/remyjette) fixed a warning.
-240. [Fraser](https://github.com/frasermarlow) fixed the documentation.
-241. [Ben Beasley](https://github.com/musicinmybrain) updated doctest.
-242. [Doron Behar](https://github.com/doronbehar) fixed pkg-config.pc.
-243. [raduteo](https://github.com/raduteo) fixed a warning.
-244. [David Pfahler](https://github.com/theShmoo) added the possibility to compile the library without I/O support.
-245. [Morten Fyhn Amundsen](https://github.com/mortenfyhn) fixed a typo.
-246. [jpl-mac](https://github.com/jpl-mac) allowed to treat the library as a system header in CMake.
-247. [Jason Dsouza](https://github.com/jasmcaus) fixed the indentation of the CMake file.
-248. [offa](https://github.com/offa) added a link to Conan Center to the documentation.
-249. [TotalCaesar659](https://github.com/TotalCaesar659) updated the links in the documentation to use HTTPS.
-250. [Rafail Giavrimis](https://github.com/grafail) fixed the Google Benchmark default branch.
-251. [Louis Dionne](https://github.com/ldionne) fixed a conversion operator.
-252. [justanotheranonymoususer](https://github.com/justanotheranonymoususer) made the examples in the README more consistent.
-253. [Finkman](https://github.com/Finkman) suppressed some `-Wfloat-equal` warnings.
-254. [Ferry Huberts](https://github.com/fhuberts) fixed `-Wswitch-enum` warnings.
-255. [Arseniy Terekhin](https://github.com/senyai) made the GDB pretty-printer robust against unset variable names.
-256. [Amir Masoud Abdol](https://github.com/amirmasoudabdol) updated the Homebrew command as nlohmann/json is now in homebrew-core.
-257. [Hallot](https://github.com/Hallot) fixed some `-Wextra-semi-stmt warnings`.
-258. [Giovanni Cerretani](https://github.com/gcerretani) fixed `-Wunused` warnings on `JSON_DIAGNOSTICS`.
-259. [Bogdan Popescu](https://github.com/Kapeli) hosts the [docset](https://github.com/Kapeli/Dash-User-Contributions/tree/master/docsets/JSON_for_Modern_C%2B%2B) for offline documentation viewers.
-260. [Carl Smedstad](https://github.com/carlsmedstad) fixed an assertion error when using `JSON_DIAGNOSTICS`.
-261. [miikka75](https://github.com/miikka75) provided an important fix to compile C++17 code with Clang 9.
-262. [Maarten Becker](https://github.com/kernie) fixed a warning for shadowed variables.
-263. [Cristi Vîjdea](https://github.com/axnsan12) fixed typos in the `operator[]` documentation.
-264. [Alex Beregszaszi](https://github.com/axic) fixed spelling mistakes in comments.
-265. [Dirk Stolle](https://github.com/striezel) fixed typos in documentation.
-266. [Daniel Albuschat](https://github.com/daniel-kun) corrected the parameter name in the `parse` documentation.
-267. [Prince Mendiratta](https://github.com/Prince-Mendiratta) fixed a link to the FAQ.
-268. [Florian Albrechtskirchinger](https://github.com/falbrechtskirchinger) implemented `std::string_view` support for object keys and made dozens of other improvements.
-269. [Qianqian Fang](https://github.com/fangq) implemented the Binary JData (BJData) format.
-270. [pketelsen](https://github.com/pketelsen) added macros `NLOHMANN_DEFINE_TYPE_INTRUSIVE_WITH_DEFAULT` and `NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE_WITH_DEFAULT`.
-271. [DarkZeros](https://github.com/DarkZeros) adjusted to code to not clash with Arduino defines.
-272. [flagarde](https://github.com/flagarde) fixed the output of `meta()` for MSVC.
-273. [Giovanni Cerretani](https://github.com/gcerretani) fixed a check for `std::filesystem`.
-274. [Dimitris Apostolou](https://github.com/rex4539) fixed a typo.
-275. [Ferry Huberts](https://github.com/fhuberts) fixed a typo.
-276. [Michael Nosthoff](https://github.com/heinemml) fixed a typo.
-277. [JungHoon Lee](https://github.com/jhnlee) fixed a typo.
-278. [Faruk D.](https://github.com/fdiblen) fixed the CITATION.CFF file.
-279. [Andrea Cocito](https://github.com/puffetto) added a clarification on macro usage to the documentation.
-280. [Krzysiek Karbowiak](https://github.com/kkarbowiak) refactored the tests to use `CHECK_THROWS_WITH_AS`.
-281. [Chaoqi Zhang](https://github.com/prncoprs) fixed a typo.
-282. [ivanovmp](https://github.com/ivanovmp) fixed a whitespace error.
-283. [KsaNL](https://github.com/KsaNL) fixed a build error when including ``.
-284. [Andrea Pappacoda](https://github.com/Tachi107) moved `.pc` and `.cmake` files to `share` directory.
-285. [Wolf Vollprecht](https://github.com/wolfv) added the `patch_inplace` function.
-286. [Jake Zimmerman](https://github.com/jez) highlighted common usage patterns in the README file.
-287. [NN](https://github.com/NN---) added the Visual Studio output directory to `.gitignore`.
-288. [Romain Reignier](https://github.com/romainreignier) improved the performance the vector output adapter.
-289. [Mike](https://github.com/Mike-Leo-Smith) fixed the `std::iterator_traits`.
-290. [Richard Hozák](https://github.com/zxey) added macro `JSON_NO_ENUM` to disable default enum conversions.
-291. [vakokako](https://github.com/vakokako) fixed tests when compiling with C++20.
-292. [Alexander “weej” Jones](https://github.com/alexweej) fixed an example in the README.
-293. [Eli Schwartz](https://github.com/eli-schwartz) added more files to the `include.zip` archive.
-294. [Kevin Lu](https://github.com/kevinlul) fixed a compilation issue when typedefs with certain names were present.
-295. [Trevor Hickey](https://github.com/luxe) improved the description of an example.
-296. [Jef LeCompte](https://github.com/jef) updated the year in the README file.
-297. [Alexandre Hamez](https://github.com/ahamez) fixed a warning.
-298. [Maninderpal Badhan](https://github.com/mbadhan) fixed a typo.
-299. [kevin--](https://github.com/kevin--) added a note to an example in the README file.
-300. [I](https://github.com/wx257osn2) fixed a typo.
-301. [Gregorio Litenstein](https://github.com/Lord-Kamina) fixed the Clang detection.
-302. [Andreas Smas](https://github.com/andoma) added a Doozer badge.
-303. [WanCW](https://github.com/wancw) fixed the string conversion with Clang.
-304. [zhaohuaxishi](https://github.com/zhaohuaxishi) fixed a Doxygen error.
-305. [emvivre](https://github.com/emvivre) removed an invalid parameter from CMake.
-306. [Tobias Hermann](https://github.com/Dobiasd) fixed a link in the README file.
-307. [Michael](https://github.com/traits) fixed a warning.
-308. [Ryan Mulder](https://github.com/ryanjmulder) added `ensure_ascii` to the `dump` function.
-309. [Muri Nicanor](https://github.com/murinicanor) fixed the `sed` discovery in the Makefile.
-310. [David Avedissian](https://github.com/dgavedissian) implemented SFINAE-friendly `iterator_traits`.
-311. [AQNOUCH Mohammed](https://github.com/aqnouch) fixed a typo in the README.
-312. [Gareth Sylvester-Bradley](https://github.com/garethsb) added `operator/=` and `operator/` to construct JSON pointers.
-313. [Michael Macnair](https://github.com/mykter) added support for afl-fuzz testing.
-314. [Berkus Decker](https://github.com/berkus) fixed a typo in the README.
-315. [Illia Polishchuk](https://github.com/effolkronium) improved the CMake testing.
-316. [Ikko Ashimine](https://github.com/eltociear) fixed a typo.
-317. [Raphael Grimm](https://github.com/barcode) added the possibility to define a custom base class.
-318. [tocic](https://github.com/tocic) fixed typos in the documentation.
-319. [Vertexwahn](https://github.com/Vertexwahn) added Bazel build support.
-320. [Dirk Stolle](https://github.com/striezel) fixed typos in the documentation.
-321. [DavidKorczynski](https://github.com/DavidKorczynski) added a CIFuzz CI GitHub action.
-322. [Finkman](https://github.com/Finkman) fixed the debug pretty-printer.
-323. [Florian Segginger](https://github.com/floriansegginger) bumped the years in the README.
-324. [haadfida](https://github.com/haadfida) cleaned up the badges of used services.
-325. [Arsen Arsenović](https://github.com/ArsenArsen) fixed a build error.
-326. [theevilone45](https://github.com/theevilone45) fixed a typo in a CMake file.
-327. [Sergei Trofimovich](https://github.com/trofi) fixed the custom allocator support.
-328. [Joyce](https://github.com/joycebrum) fixed some security issues in the GitHub workflows.
-329. [Nicolas Jakob](https://github.com/njakob) add vcpkg version badge.
-330. [Tomerkm](https://github.com/Tomerkm) added tests.
-331. [No.](https://github.com/tusooa) fixed the use of `get<>` calls.
-332. [taro](https://github.com/tarolling) fixed a typo in the `CODEOWNERS` file.
-333. [Ikko Eltociear Ashimine](https://github.com/eltociear) fixed a typo.
-334. [Felix Yan](https://github.com/felixonmars) fixed a typo in the README.
-335. [HO-COOH](https://github.com/HO-COOH) fixed a parentheses in the documentation.
-336. [Ivor Wanders](https://github.com/iwanders) fixed the examples to catch exception by `const&`.
-337. [miny1233](https://github.com/miny1233) fixed a parentheses in the documentation.
-338. [tomalakgeretkal](https://github.com/tomalakgeretkal) fixed a compilation error.
-339. [alferov](https://github.com/ALF-ONE) fixed a compilation error.
-340. [Craig Scott](https://github.com/craigscott-crascit) fixed a deprecation warning in CMake.
-341. [Vyacheslav Zhdanovskiy](https://github.com/ZeronSix) added macros for serialization-only types.
-342. [Mathieu Westphal](https://github.com/mwestphal) fixed typos.
-343. [scribam](https://github.com/scribam) fixed the MinGW workflow.
-344. [Aleksei Sapitskii](https://github.com/aleksproger) added support for Apple's Swift Package Manager.
-345. [Benjamin Buch](https://github.com/bebuch) fixed the installation path in CMake.
-346. [Colby Haskell](https://github.com/colbychaskell) clarified the parse error message in case a file cannot be opened.
-
-Thanks a lot for helping out! Please [let me know](mailto:mail@nlohmann.me) if I forgot someone.
-
-
-## Used third-party tools
-
-The library itself consists of a single header file licensed under the MIT license. However, it is built, tested, documented, and whatnot using a lot of third-party tools and services. Thanks a lot!
-
-- [**amalgamate.py - Amalgamate C source and header files**](https://github.com/edlund/amalgamate) to create a single header file
-- [**American fuzzy lop**](https://lcamtuf.coredump.cx/afl/) for fuzz testing
-- [**AppVeyor**](https://www.appveyor.com) for [continuous integration](https://ci.appveyor.com/project/nlohmann/json) on Windows
-- [**Artistic Style**](http://astyle.sourceforge.net) for automatic source code indentation
-- [**Clang**](https://clang.llvm.org) for compilation with code sanitizers
-- [**CMake**](https://cmake.org) for build automation
-- [**Codacy**](https://www.codacy.com) for further [code analysis](https://www.codacy.com/app/nlohmann/json)
-- [**Coveralls**](https://coveralls.io) to measure [code coverage](https://coveralls.io/github/nlohmann/json)
-- [**Coverity Scan**](https://scan.coverity.com) for [static analysis](https://scan.coverity.com/projects/nlohmann-json)
-- [**cppcheck**](http://cppcheck.sourceforge.net) for static analysis
-- [**doctest**](https://github.com/onqtam/doctest) for the unit tests
-- [**git-update-ghpages**](https://github.com/rstacruz/git-update-ghpages) to upload the documentation to gh-pages
-- [**GitHub Changelog Generator**](https://github.com/skywinder/github-changelog-generator) to generate the [ChangeLog](https://github.com/nlohmann/json/blob/develop/ChangeLog.md)
-- [**Google Benchmark**](https://github.com/google/benchmark) to implement the benchmarks
-- [**Hedley**](https://nemequ.github.io/hedley/) to avoid re-inventing several compiler-agnostic feature macros
-- [**lcov**](http://ltp.sourceforge.net/coverage/lcov.php) to process coverage information and create an HTML view
-- [**libFuzzer**](https://llvm.org/docs/LibFuzzer.html) to implement fuzz testing for OSS-Fuzz
-- [**Material for MkDocs**](https://squidfunk.github.io/mkdocs-material/) for the style of the documentation site
-- [**MkDocs**](https://www.mkdocs.org) for the documentation site
-- [**OSS-Fuzz**](https://github.com/google/oss-fuzz) for continuous fuzz testing of the library ([project repository](https://github.com/google/oss-fuzz/tree/master/projects/json))
-- [**Probot**](https://probot.github.io) for automating maintainer tasks such as closing stale issues, requesting missing information, or detecting toxic comments.
-- [**Valgrind**](https://valgrind.org) to check for correct memory management
-
-
-## Projects using JSON for Modern C++
-
-The library is currently used in Apple macOS Sierra-Monterey and iOS 10-15. I am not sure what they are using the library for, but I am happy that it runs on so many devices.
-
-
-## Notes
-
-### Character encoding
-
-The library supports **Unicode input** as follows:
-
-- Only **UTF-8** encoded input is supported which is the default encoding for JSON according to [RFC 8259](https://tools.ietf.org/html/rfc8259.html#section-8.1).
-- `std::u16string` and `std::u32string` can be parsed, assuming UTF-16 and UTF-32 encoding, respectively. These encodings are not supported when reading from files or other input containers.
-- Other encodings such as Latin-1 or ISO 8859-1 are **not** supported and will yield parse or serialization errors.
-- [Unicode noncharacters](https://www.unicode.org/faq/private_use.html#nonchar1) will not be replaced by the library.
-- Invalid surrogates (e.g., incomplete pairs such as `\uDEAD`) will yield parse errors.
-- The strings stored in the library are UTF-8 encoded. When using the default string type (`std::string`), note that its length/size functions return the number of stored bytes rather than the number of characters or glyphs.
-- When you store strings with different encodings in the library, calling [`dump()`](https://json.nlohmann.me/api/basic_json/dump/) may throw an exception unless `json::error_handler_t::replace` or `json::error_handler_t::ignore` are used as error handlers.
-- To store wide strings (e.g., `std::wstring`), you need to convert them to a UTF-8 encoded `std::string` before, see [an example](https://json.nlohmann.me/home/faq/#wide-string-handling).
-
-### Comments in JSON
-
-This library does not support comments by default. It does so for three reasons:
-
-1. Comments are not part of the [JSON specification](https://tools.ietf.org/html/rfc8259). You may argue that `//` or `/* */` are allowed in JavaScript, but JSON is not JavaScript.
-2. This was not an oversight: Douglas Crockford [wrote on this](https://plus.google.com/118095276221607585885/posts/RK8qyGVaGSr) in May 2012:
-
- > I removed comments from JSON because I saw people were using them to hold parsing directives, a practice which would have destroyed interoperability. I know that the lack of comments makes some people sad, but it shouldn't.
-
- > Suppose you are using JSON to keep configuration files, which you would like to annotate. Go ahead and insert all the comments you like. Then pipe it through JSMin before handing it to your JSON parser.
-
-3. It is dangerous for interoperability if some libraries would add comment support while others don't. Please check [The Harmful Consequences of the Robustness Principle](https://tools.ietf.org/html/draft-iab-protocol-maintenance-01) on this.
-
-However, you can pass set parameter `ignore_comments` to true in the `parse` function to ignore `//` or `/* */` comments. Comments will then be treated as whitespace.
-
-### Order of object keys
-
-By default, the library does not preserve the **insertion order of object elements**. This is standards-compliant, as the [JSON standard](https://tools.ietf.org/html/rfc8259.html) defines objects as "an unordered collection of zero or more name/value pairs".
-
-If you do want to preserve the insertion order, you can try the type [`nlohmann::ordered_json`](https://github.com/nlohmann/json/issues/2179). Alternatively, you can use a more sophisticated ordered map like [`tsl::ordered_map`](https://github.com/Tessil/ordered-map) ([integration](https://github.com/nlohmann/json/issues/546#issuecomment-304447518)) or [`nlohmann::fifo_map`](https://github.com/nlohmann/fifo_map) ([integration](https://github.com/nlohmann/json/issues/485#issuecomment-333652309)).
-
-### Memory Release
-
-We checked with Valgrind and the Address Sanitizer (ASAN) that there are no memory leaks.
-
-If you find that a parsing program with this library does not release memory, please consider the following case, and it may be unrelated to this library.
-
-**Your program is compiled with glibc.** There is a tunable threshold that glibc uses to decide whether to actually return memory to the system or whether to cache it for later reuse. If in your program you make lots of small allocations and those small allocations are not a contiguous block and are presumably below the threshold, then they will not get returned to the OS.
-Here is a related issue [#1924](https://github.com/nlohmann/json/issues/1924).
-
-### Further notes
-
-- The code contains numerous debug **assertions** which can be switched off by defining the preprocessor macro `NDEBUG`, see the [documentation of `assert`](https://en.cppreference.com/w/cpp/error/assert). In particular, note [`operator[]`](https://json.nlohmann.me/api/basic_json/operator%5B%5D/) implements **unchecked access** for const objects: If the given key is not present, the behavior is undefined (think of a dereferenced null pointer) and yields an [assertion failure](https://github.com/nlohmann/json/issues/289) if assertions are switched on. If you are not sure whether an element in an object exists, use checked access with the [`at()` function](https://json.nlohmann.me/api/basic_json/at/). Furthermore, you can define `JSON_ASSERT(x)` to replace calls to `assert(x)`.
-- As the exact number type is not defined in the [JSON specification](https://tools.ietf.org/html/rfc8259.html), this library tries to choose the best fitting C++ number type automatically. As a result, the type `double` may be used to store numbers which may yield [**floating-point exceptions**](https://github.com/nlohmann/json/issues/181) in certain rare situations if floating-point exceptions have been unmasked in the calling code. These exceptions are not caused by the library and need to be fixed in the calling code, such as by re-masking the exceptions prior to calling library functions.
-- The code can be compiled without C++ **runtime type identification** features; that is, you can use the `-fno-rtti` compiler flag.
-- **Exceptions** are used widely within the library. They can, however, be switched off with either using the compiler flag `-fno-exceptions` or by defining the symbol `JSON_NOEXCEPTION`. In this case, exceptions are replaced by `abort()` calls. You can further control this behavior by defining `JSON_THROW_USER` (overriding `throw`), `JSON_TRY_USER` (overriding `try`), and `JSON_CATCH_USER` (overriding `catch`). Note that `JSON_THROW_USER` should leave the current scope (e.g., by throwing or aborting), as continuing after it may yield undefined behavior. Note the explanatory [`what()`](https://en.cppreference.com/w/cpp/error/exception/what) string of exceptions is not available for MSVC if exceptions are disabled, see [#2824](https://github.com/nlohmann/json/discussions/2824).
-
-## Execute unit tests
-
-To compile and run the tests, you need to execute
-
-```sh
-$ mkdir build
-$ cd build
-$ cmake .. -DJSON_BuildTests=On
-$ cmake --build .
-$ ctest --output-on-failure
-```
-
-Note that during the `ctest` stage, several JSON test files are downloaded from an [external repository](https://github.com/nlohmann/json_test_data). If policies forbid downloading artifacts during testing, you can download the files yourself and pass the directory with the test files via `-DJSON_TestDataDirectory=path` to CMake. Then, no Internet connectivity is required. See [issue #2189](https://github.com/nlohmann/json/issues/2189) for more information.
-
-If the test suite is not found, several test suites will fail like this:
-
-```
-===============================================================================
-json/tests/src/make_test_data_available.hpp:21:
-TEST CASE: check test suite is downloaded
-
-json/tests/src/make_test_data_available.hpp:23: FATAL ERROR: REQUIRE( utils::check_testsuite_downloaded() ) is NOT correct!
- values: REQUIRE( false )
- logged: Test data not found in 'json/cmake-build-debug/json_test_data'.
- Please execute target 'download_test_data' before running this test suite.
- See for more information.
-
-===============================================================================
-```
-
-In case you have downloaded the library rather than checked out the code via Git, test `cmake_fetch_content_configure` will fail. Please execute `ctest -LE git_required` to skip these tests. See [issue #2189](https://github.com/nlohmann/json/issues/2189) for more information.
-
-Some tests change the installed files and hence make the whole process not reproducible. Please execute `ctest -LE not_reproducible` to skip these tests. See [issue #2324](https://github.com/nlohmann/json/issues/2324) for more information.
-
-Note you need to call `cmake -LE "not_reproducible|git_required"` to exclude both labels. See [issue #2596](https://github.com/nlohmann/json/issues/2596) for more information.
-
-As Intel compilers use unsafe floating point optimization by default, the unit tests may fail. Use flag [`/fp:precise`](https://software.intel.com/content/www/us/en/develop/documentation/cpp-compiler-developer-guide-and-reference/top/compiler-reference/compiler-options/compiler-option-details/floating-point-options/fp-model-fp.html) then.
diff --git a/yass/third_party/json/WORKSPACE.bazel b/yass/third_party/json/WORKSPACE.bazel
deleted file mode 100644
index 2b2ae9dba7..0000000000
--- a/yass/third_party/json/WORKSPACE.bazel
+++ /dev/null
@@ -1 +0,0 @@
-workspace(name = "nlohmann_json")
diff --git a/yass/third_party/json/cmake/ci.cmake b/yass/third_party/json/cmake/ci.cmake
deleted file mode 100644
index bbb2d4cb95..0000000000
--- a/yass/third_party/json/cmake/ci.cmake
+++ /dev/null
@@ -1,983 +0,0 @@
-# number of parallel jobs for CTest
-set(N 10)
-
-###############################################################################
-# Needed tools.
-###############################################################################
-
-include(FindPython3)
-find_package(Python3 COMPONENTS Interpreter)
-
-find_program(ASTYLE_TOOL NAMES astyle)
-execute_process(COMMAND ${ASTYLE_TOOL} --version OUTPUT_VARIABLE ASTYLE_TOOL_VERSION ERROR_VARIABLE ASTYLE_TOOL_VERSION)
-string(REGEX MATCH "[0-9]+(\\.[0-9]+)+" ASTYLE_TOOL_VERSION "${ASTYLE_TOOL_VERSION}")
-message(STATUS "🔖 Artistic Style ${ASTYLE_TOOL_VERSION} (${ASTYLE_TOOL})")
-
-find_program(CLANG_TOOL NAMES clang++-HEAD clang++ clang++-17 clang++-16 clang++-15 clang++-14 clang++-13 clang++-12 clang++-11 clang++)
-execute_process(COMMAND ${CLANG_TOOL} --version OUTPUT_VARIABLE CLANG_TOOL_VERSION ERROR_VARIABLE CLANG_TOOL_VERSION)
-string(REGEX MATCH "[0-9]+(\\.[0-9]+)+" CLANG_TOOL_VERSION "${CLANG_TOOL_VERSION}")
-message(STATUS "🔖 Clang ${CLANG_TOOL_VERSION} (${CLANG_TOOL})")
-
-find_program(CLANG_TIDY_TOOL NAMES clang-tidy-17 clang-tidy-16 clang-tidy-15 clang-tidy-14 clang-tidy-13 clang-tidy-12 clang-tidy-11 clang-tidy)
-execute_process(COMMAND ${CLANG_TIDY_TOOL} --version OUTPUT_VARIABLE CLANG_TIDY_TOOL_VERSION ERROR_VARIABLE CLANG_TIDY_TOOL_VERSION)
-string(REGEX MATCH "[0-9]+(\\.[0-9]+)+" CLANG_TIDY_TOOL_VERSION "${CLANG_TIDY_TOOL_VERSION}")
-message(STATUS "🔖 Clang-Tidy ${CLANG_TIDY_TOOL_VERSION} (${CLANG_TIDY_TOOL})")
-
-message(STATUS "🔖 CMake ${CMAKE_VERSION} (${CMAKE_COMMAND})")
-
-find_program(CPPCHECK_TOOL NAMES cppcheck)
-execute_process(COMMAND ${CPPCHECK_TOOL} --version OUTPUT_VARIABLE CPPCHECK_TOOL_VERSION ERROR_VARIABLE CPPCHECK_TOOL_VERSION)
-string(REGEX MATCH "[0-9]+(\\.[0-9]+)+" CPPCHECK_TOOL_VERSION "${CPPCHECK_TOOL_VERSION}")
-message(STATUS "🔖 Cppcheck ${CPPCHECK_TOOL_VERSION} (${CPPCHECK_TOOL})")
-
-find_program(GCC_TOOL NAMES g++-latest g++-HEAD g++-13 g++-12 g++-11 g++-10)
-execute_process(COMMAND ${GCC_TOOL} --version OUTPUT_VARIABLE GCC_TOOL_VERSION ERROR_VARIABLE GCC_TOOL_VERSION)
-string(REGEX MATCH "[0-9]+(\\.[0-9]+)+" GCC_TOOL_VERSION "${GCC_TOOL_VERSION}")
-message(STATUS "🔖 GCC ${GCC_TOOL_VERSION} (${GCC_TOOL})")
-
-find_program(GCOV_TOOL NAMES gcov-HEAD gcov-11 gcov-10 gcov)
-execute_process(COMMAND ${GCOV_TOOL} --version OUTPUT_VARIABLE GCOV_TOOL_VERSION ERROR_VARIABLE GCOV_TOOL_VERSION)
-string(REGEX MATCH "[0-9]+(\\.[0-9]+)+" GCOV_TOOL_VERSION "${GCOV_TOOL_VERSION}")
-message(STATUS "🔖 GCOV ${GCOV_TOOL_VERSION} (${GCOV_TOOL})")
-
-find_program(GIT_TOOL NAMES git)
-execute_process(COMMAND ${GIT_TOOL} --version OUTPUT_VARIABLE GIT_TOOL_VERSION ERROR_VARIABLE GIT_TOOL_VERSION)
-string(REGEX MATCH "[0-9]+(\\.[0-9]+)+" GIT_TOOL_VERSION "${GIT_TOOL_VERSION}")
-message(STATUS "🔖 Git ${GIT_TOOL_VERSION} (${GIT_TOOL})")
-
-find_program(IWYU_TOOL NAMES include-what-you-use iwyu)
-execute_process(COMMAND ${IWYU_TOOL} --version OUTPUT_VARIABLE IWYU_TOOL_VERSION ERROR_VARIABLE IWYU_TOOL_VERSION)
-string(REGEX MATCH "[0-9]+(\\.[0-9]+)+" IWYU_TOOL_VERSION "${IWYU_TOOL_VERSION}")
-message(STATUS "🔖 include-what-you-use ${IWYU_TOOL_VERSION} (${IWYU_TOOL})")
-
-find_program(INFER_TOOL NAMES infer)
-execute_process(COMMAND ${INFER_TOOL} --version OUTPUT_VARIABLE INFER_TOOL_VERSION ERROR_VARIABLE INFER_TOOL_VERSION)
-string(REGEX MATCH "[0-9]+(\\.[0-9]+)+" INFER_TOOL_VERSION "${INFER_TOOL_VERSION}")
-message(STATUS "🔖 Infer ${INFER_TOOL_VERSION} (${INFER_TOOL})")
-
-find_program(LCOV_TOOL NAMES lcov)
-execute_process(COMMAND ${LCOV_TOOL} --version OUTPUT_VARIABLE LCOV_TOOL_VERSION ERROR_VARIABLE LCOV_TOOL_VERSION)
-string(REGEX MATCH "[0-9]+(\\.[0-9]+)+" LCOV_TOOL_VERSION "${LCOV_TOOL_VERSION}")
-message(STATUS "🔖 LCOV ${LCOV_TOOL_VERSION} (${LCOV_TOOL})")
-
-find_program(NINJA_TOOL NAMES ninja)
-execute_process(COMMAND ${NINJA_TOOL} --version OUTPUT_VARIABLE NINJA_TOOL_VERSION ERROR_VARIABLE NINJA_TOOL_VERSION)
-string(REGEX MATCH "[0-9]+(\\.[0-9]+)+" NINJA_TOOL_VERSION "${NINJA_TOOL_VERSION}")
-message(STATUS "🔖 Ninja ${NINJA_TOOL_VERSION} (${NINJA_TOOL})")
-
-find_program(OCLINT_TOOL NAMES oclint-json-compilation-database)
-find_program(OCLINT_VERSION_TOOL NAMES oclint)
-execute_process(COMMAND ${OCLINT_VERSION_TOOL} --version OUTPUT_VARIABLE OCLINT_TOOL_VERSION ERROR_VARIABLE OCLINT_TOOL_VERSION)
-string(REGEX MATCH "[0-9]+(\\.[0-9]+)+" OCLINT_TOOL_VERSION "${OCLINT_TOOL_VERSION}")
-message(STATUS "🔖 OCLint ${OCLINT_TOOL_VERSION} (${OCLINT_TOOL})")
-
-find_program(VALGRIND_TOOL NAMES valgrind)
-execute_process(COMMAND ${VALGRIND_TOOL} --version OUTPUT_VARIABLE VALGRIND_TOOL_VERSION ERROR_VARIABLE VALGRIND_TOOL_VERSION)
-string(REGEX MATCH "[0-9]+(\\.[0-9]+)+" VALGRIND_TOOL_VERSION "${VALGRIND_TOOL_VERSION}")
-message(STATUS "🔖 Valgrind ${VALGRIND_TOOL_VERSION} (${VALGRIND_TOOL})")
-
-find_program(GENHTML_TOOL NAMES genhtml)
-find_program(PLOG_CONVERTER_TOOL NAMES plog-converter)
-find_program(PVS_STUDIO_ANALYZER_TOOL NAMES pvs-studio-analyzer)
-find_program(SCAN_BUILD_TOOL NAMES scan-build-15 scan-build-14 scan-build-13 scan-build-12 scan-build-11 scan-build)
-
-# the individual source files
-file(GLOB_RECURSE SRC_FILES ${PROJECT_SOURCE_DIR}/include/nlohmann/*.hpp)
-
-###############################################################################
-# Thorough check with recent compilers
-###############################################################################
-
-# Ignored Clang warnings:
-# -Wno-c++98-compat The library targets C++11.
-# -Wno-c++98-compat-pedantic The library targets C++11.
-# -Wno-deprecated-declarations The library contains annotations for deprecated functions.
-# -Wno-extra-semi-stmt The library uses std::assert which triggers this warning.
-# -Wno-padded We do not care about padding warnings.
-# -Wno-covered-switch-default All switches list all cases and a default case.
-# -Wno-unsafe-buffer-usage Otherwise Doctest would not compile.
-# -Wno-weak-vtables The library is header-only.
-# -Wreserved-identifier See https://github.com/onqtam/doctest/issues/536.
-
-set(CLANG_CXXFLAGS
- -Werror
- -Weverything
- -Wno-c++98-compat
- -Wno-c++98-compat-pedantic
- -Wno-deprecated-declarations
- -Wno-extra-semi-stmt
- -Wno-padded
- -Wno-covered-switch-default
- -Wno-unsafe-buffer-usage
- -Wno-weak-vtables
- -Wno-reserved-identifier
-)
-
-# Warning flags determined for GCC 13.0 (experimental) with https://github.com/nlohmann/gcc_flags:
-# Ignored GCC warnings:
-# -Wno-abi-tag We do not care about ABI tags.
-# -Wno-aggregate-return The library uses aggregate returns.
-# -Wno-long-long The library uses the long long type to interface with system functions.
-# -Wno-namespaces The library uses namespaces.
-# -Wno-padded We do not care about padding warnings.
-# -Wno-system-headers We do not care about warnings in system headers.
-# -Wno-templates The library uses templates.
-
-set(GCC_CXXFLAGS
- -pedantic
- -Werror
- --all-warnings
- --extra-warnings
- -W
- -WNSObject-attribute
- -Wno-abi-tag
- -Waddress
- -Waddress-of-packed-member
- -Wno-aggregate-return
- -Waggressive-loop-optimizations
- -Waligned-new=all
- -Wall
- -Walloc-zero
- -Walloca
- -Wanalyzer-double-fclose
- -Wanalyzer-double-free
- -Wanalyzer-exposure-through-output-file
- -Wanalyzer-file-leak
- -Wanalyzer-free-of-non-heap
- -Wanalyzer-malloc-leak
- -Wanalyzer-mismatching-deallocation
- -Wanalyzer-null-argument
- -Wanalyzer-null-dereference
- -Wanalyzer-possible-null-argument
- -Wanalyzer-possible-null-dereference
- -Wanalyzer-shift-count-negative
- -Wanalyzer-shift-count-overflow
- -Wanalyzer-stale-setjmp-buffer
- -Wanalyzer-tainted-allocation-size
- -Wanalyzer-tainted-array-index
- -Wanalyzer-tainted-divisor
- -Wanalyzer-tainted-offset
- -Wanalyzer-tainted-size
- -Wanalyzer-too-complex
- -Wanalyzer-unsafe-call-within-signal-handler
- -Wanalyzer-use-after-free
- -Wanalyzer-use-of-pointer-in-stale-stack-frame
- -Wanalyzer-use-of-uninitialized-value
- -Wanalyzer-va-arg-type-mismatch
- -Wanalyzer-va-list-exhausted
- -Wanalyzer-va-list-leak
- -Wanalyzer-va-list-use-after-va-end
- -Wanalyzer-write-to-const
- -Wanalyzer-write-to-string-literal
- -Warith-conversion
- -Warray-bounds=2
- -Warray-compare
- -Warray-parameter=2
- -Wattribute-alias=2
- -Wattribute-warning
- -Wattributes
- -Wbool-compare
- -Wbool-operation
- -Wbuiltin-declaration-mismatch
- -Wbuiltin-macro-redefined
- -Wc++0x-compat
- -Wc++11-compat
- -Wc++11-extensions
- -Wc++14-compat
- -Wc++14-extensions
- -Wc++17-compat
- -Wc++17-extensions
- -Wc++1z-compat
- -Wc++20-compat
- -Wc++20-extensions
- -Wc++23-extensions
- -Wc++2a-compat
- -Wcannot-profile
- -Wcast-align
- -Wcast-align=strict
- -Wcast-function-type
- -Wcast-qual
- -Wcatch-value=3
- -Wchar-subscripts
- -Wclass-conversion
- -Wclass-memaccess
- -Wclobbered
- -Wcomma-subscript
- -Wcomment
- -Wcomments
- -Wconditionally-supported
- -Wconversion
- -Wconversion-null
- -Wcoverage-invalid-line-number
- -Wcoverage-mismatch
- -Wcpp
- -Wctad-maybe-unsupported
- -Wctor-dtor-privacy
- -Wdangling-else
- -Wdangling-pointer=2
- -Wdate-time
- -Wdelete-incomplete
- -Wdelete-non-virtual-dtor
- -Wdeprecated
- -Wdeprecated-copy
- -Wdeprecated-copy-dtor
- -Wdeprecated-declarations
- -Wdeprecated-enum-enum-conversion
- -Wdeprecated-enum-float-conversion
- -Wdisabled-optimization
- -Wdiv-by-zero
- -Wdouble-promotion
- -Wduplicated-branches
- -Wduplicated-cond
- -Weffc++
- -Wempty-body
- -Wendif-labels
- -Wenum-compare
- -Wenum-conversion
- -Wexceptions
- -Wexpansion-to-defined
- -Wextra
- -Wextra-semi
- -Wfloat-conversion
- -Wfloat-equal
- -Wformat-diag
- -Wformat-overflow=2
- -Wformat-signedness
- -Wformat-truncation=2
- -Wformat=2
- -Wframe-address
- -Wfree-nonheap-object
- -Whsa
- -Wif-not-aligned
- -Wignored-attributes
- -Wignored-qualifiers
- -Wimplicit-fallthrough=5
- -Winaccessible-base
- -Winfinite-recursion
- -Winherited-variadic-ctor
- -Winit-list-lifetime
- -Winit-self
- -Winline
- -Wint-in-bool-context
- -Wint-to-pointer-cast
- -Winterference-size
- -Winvalid-imported-macros
- -Winvalid-memory-model
- -Winvalid-offsetof
- -Winvalid-pch
- -Wliteral-suffix
- -Wlogical-not-parentheses
- -Wlogical-op
- -Wno-long-long
- -Wlto-type-mismatch
- -Wmain
- -Wmaybe-uninitialized
- -Wmemset-elt-size
- -Wmemset-transposed-args
- -Wmisleading-indentation
- -Wmismatched-dealloc
- -Wmismatched-new-delete
- -Wmismatched-tags
- -Wmissing-attributes
- -Wmissing-braces
- -Wmissing-declarations
- -Wmissing-field-initializers
- -Wmissing-include-dirs
- -Wmissing-profile
- -Wmissing-requires
- -Wmissing-template-keyword
- -Wmultichar
- -Wmultiple-inheritance
- -Wmultistatement-macros
- -Wno-namespaces
- -Wnarrowing
- -Wnoexcept
- -Wnoexcept-type
- -Wnon-template-friend
- -Wnon-virtual-dtor
- -Wnonnull
- -Wnonnull-compare
- -Wnormalized=nfkc
- -Wnull-dereference
- -Wodr
- -Wold-style-cast
- -Wopenacc-parallelism
- -Wopenmp-simd
- -Woverflow
- -Woverlength-strings
- -Woverloaded-virtual
- -Wpacked
- -Wpacked-bitfield-compat
- -Wpacked-not-aligned
- -Wno-padded
- -Wparentheses
- -Wpedantic
- -Wpessimizing-move
- -Wplacement-new=2
- -Wpmf-conversions
- -Wpointer-arith
- -Wpointer-compare
- -Wpragmas
- -Wprio-ctor-dtor
- -Wpsabi
- -Wrange-loop-construct
- -Wredundant-decls
- -Wredundant-move
- -Wredundant-tags
- -Wregister
- -Wreorder
- -Wrestrict
- -Wreturn-local-addr
- -Wreturn-type
- -Wscalar-storage-order
- -Wsequence-point
- -Wshadow=compatible-local
- -Wshadow=global
- -Wshadow=local
- -Wshift-count-negative
- -Wshift-count-overflow
- -Wshift-negative-value
- -Wshift-overflow=2
- -Wsign-compare
- -Wsign-conversion
- -Wsign-promo
- -Wsized-deallocation
- -Wsizeof-array-argument
- -Wsizeof-array-div
- -Wsizeof-pointer-div
- -Wsizeof-pointer-memaccess
- -Wstack-protector
- -Wstrict-aliasing=3
- -Wstrict-null-sentinel
- -Wno-strict-overflow
- -Wstring-compare
- -Wstringop-overflow=4
- -Wstringop-overread
- -Wstringop-truncation
- -Wsubobject-linkage
- -Wsuggest-attribute=cold
- -Wsuggest-attribute=const
- -Wsuggest-attribute=format
- -Wsuggest-attribute=malloc
- -Wsuggest-attribute=noreturn
- -Wsuggest-attribute=pure
- -Wsuggest-final-methods
- -Wsuggest-final-types
- -Wsuggest-override
- -Wswitch
- -Wswitch-bool
- -Wswitch-default
- -Wswitch-enum
- -Wswitch-outside-range
- -Wswitch-unreachable
- -Wsync-nand
- -Wsynth
- -Wno-system-headers
- -Wtautological-compare
- -Wno-templates
- -Wterminate
- -Wtrampolines
- -Wtrigraphs
- -Wtrivial-auto-var-init
- -Wtsan
- -Wtype-limits
- -Wundef
- -Wuninitialized
- -Wunknown-pragmas
- -Wunreachable-code
- -Wunsafe-loop-optimizations
- -Wunused
- -Wunused-but-set-parameter
- -Wunused-but-set-variable
- -Wunused-const-variable=2
- -Wunused-function
- -Wunused-label
- -Wunused-local-typedefs
- -Wunused-macros
- -Wunused-parameter
- -Wunused-result
- -Wunused-value
- -Wunused-variable
- -Wuse-after-free=3
- -Wuseless-cast
- -Wvarargs
- -Wvariadic-macros
- -Wvector-operation-performance
- -Wvexing-parse
- -Wvirtual-inheritance
- -Wvirtual-move-assign
- -Wvla
- -Wvla-parameter
- -Wvolatile
- -Wvolatile-register-var
- -Wwrite-strings
- -Wzero-as-null-pointer-constant
- -Wzero-length-bounds
-)
-
-add_custom_target(ci_test_gcc
- COMMAND CXX=${GCC_TOOL} CXXFLAGS="${GCC_CXXFLAGS}" ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja
- -DJSON_BuildTests=ON
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_gcc
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_gcc
- COMMAND cd ${PROJECT_BINARY_DIR}/build_gcc && ${CMAKE_CTEST_COMMAND} --parallel ${N} --output-on-failure
- COMMENT "Compile and test with GCC using maximal warning flags"
-)
-
-add_custom_target(ci_test_clang
- COMMAND CXX=${CLANG_TOOL} CXXFLAGS="${CLANG_CXXFLAGS}" ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja
- -DJSON_BuildTests=ON
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_clang
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_clang
- COMMAND cd ${PROJECT_BINARY_DIR}/build_clang && ${CMAKE_CTEST_COMMAND} --parallel ${N} --output-on-failure
- COMMENT "Compile and test with Clang using maximal warning flags"
-)
-
-###############################################################################
-# Different C++ Standards.
-###############################################################################
-
-foreach(CXX_STANDARD 11 14 17 20 23)
- add_custom_target(ci_test_gcc_cxx${CXX_STANDARD}
- COMMAND CXX=${GCC_TOOL} CXXFLAGS="${GCC_CXXFLAGS}" ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja
- -DJSON_BuildTests=ON -DJSON_FastTests=ON
- -DJSON_TestStandards=${CXX_STANDARD}
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_gcc_cxx${CXX_STANDARD}
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_gcc_cxx${CXX_STANDARD}
- COMMAND cd ${PROJECT_BINARY_DIR}/build_gcc_cxx${CXX_STANDARD} && ${CMAKE_CTEST_COMMAND} --parallel ${N} --output-on-failure
- COMMENT "Compile and test with GCC for C++${CXX_STANDARD}"
- )
-
- add_custom_target(ci_test_clang_cxx${CXX_STANDARD}
- COMMAND CXX=${CLANG_TOOL} CXXFLAGS="${CLANG_CXXFLAGS}" ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja
- -DJSON_BuildTests=ON -DJSON_FastTests=ON
- -DJSON_TestStandards=${CXX_STANDARD}
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_clang_cxx${CXX_STANDARD}
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_clang_cxx${CXX_STANDARD}
- COMMAND cd ${PROJECT_BINARY_DIR}/build_clang_cxx${CXX_STANDARD} && ${CMAKE_CTEST_COMMAND} --parallel ${N} --output-on-failure
- COMMENT "Compile and test with Clang for C++${CXX_STANDARD}"
- )
-endforeach()
-
-###############################################################################
-# Disable exceptions.
-###############################################################################
-
-add_custom_target(ci_test_noexceptions
- COMMAND ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja
- -DJSON_BuildTests=ON -DCMAKE_CXX_FLAGS=-DJSON_NOEXCEPTION -DDOCTEST_TEST_FILTER=--no-throw
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_noexceptions
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_noexceptions
- COMMAND cd ${PROJECT_BINARY_DIR}/build_noexceptions && ${CMAKE_CTEST_COMMAND} --parallel ${N} --output-on-failure
- COMMENT "Compile and test with exceptions switched off"
-)
-
-###############################################################################
-# Disable implicit conversions.
-###############################################################################
-
-add_custom_target(ci_test_noimplicitconversions
- COMMAND ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja
- -DJSON_BuildTests=ON -DJSON_ImplicitConversions=OFF
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_noimplicitconversions
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_noimplicitconversions
- COMMAND cd ${PROJECT_BINARY_DIR}/build_noimplicitconversions && ${CMAKE_CTEST_COMMAND} --parallel ${N} --output-on-failure
- COMMENT "Compile and test with implicit conversions switched off"
-)
-
-###############################################################################
-# Enable improved diagnostics.
-###############################################################################
-
-add_custom_target(ci_test_diagnostics
- COMMAND ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja
- -DJSON_BuildTests=ON -DJSON_Diagnostics=ON
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_diagnostics
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_diagnostics
- COMMAND cd ${PROJECT_BINARY_DIR}/build_diagnostics && ${CMAKE_CTEST_COMMAND} --parallel ${N} --output-on-failure
- COMMENT "Compile and test with improved diagnostics enabled"
-)
-
-###############################################################################
-# Enable legacy discarded value comparison.
-###############################################################################
-
-add_custom_target(ci_test_legacycomparison
- COMMAND ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja
- -DJSON_BuildTests=ON -DJSON_LegacyDiscardedValueComparison=ON
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_legacycomparison
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_legacycomparison
- COMMAND cd ${PROJECT_BINARY_DIR}/build_legacycomparison && ${CMAKE_CTEST_COMMAND} --parallel ${N} --output-on-failure
- COMMENT "Compile and test with legacy discarded value comparison enabled"
-)
-
-###############################################################################
-# Disable global UDLs.
-###############################################################################
-
-add_custom_target(ci_test_noglobaludls
- COMMAND ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja
- -DJSON_BuildTests=ON -DJSON_FastTests=ON -DJSON_GlobalUDLs=OFF
- -DCMAKE_CXX_FLAGS=-DJSON_TEST_NO_GLOBAL_UDLS
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_noglobaludls
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_noglobaludls
- COMMAND cd ${PROJECT_BINARY_DIR}/build_noglobaludls && ${CMAKE_CTEST_COMMAND} --parallel ${N} --output-on-failure
- COMMENT "Compile and test with global UDLs disabled"
-)
-
-###############################################################################
-# Coverage.
-###############################################################################
-
-add_custom_target(ci_test_coverage
- COMMAND CXX=g++ ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja -DCMAKE_CXX_FLAGS="--coverage;-fprofile-arcs;-ftest-coverage"
- -DJSON_BuildTests=ON
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_coverage
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_coverage
- COMMAND cd ${PROJECT_BINARY_DIR}/build_coverage && ${CMAKE_CTEST_COMMAND} --parallel ${N} --output-on-failure
-
- COMMAND CXX=g++ ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja -DCMAKE_CXX_FLAGS="-m32;--coverage;-fprofile-arcs;-ftest-coverage"
- -DJSON_BuildTests=ON -DJSON_32bitTest=ONLY
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_coverage32
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_coverage32
- COMMAND cd ${PROJECT_BINARY_DIR}/build_coverage32 && ${CMAKE_CTEST_COMMAND} --parallel ${N} --output-on-failure
-
- COMMAND ${LCOV_TOOL} --directory . --capture --output-file json.info --rc lcov_branch_coverage=1
- COMMAND ${LCOV_TOOL} -e json.info ${SRC_FILES} --output-file json.info.filtered --rc lcov_branch_coverage=1
- COMMAND ${CMAKE_SOURCE_DIR}/tests/thirdparty/imapdl/filterbr.py json.info.filtered > json.info.filtered.noexcept
- COMMAND genhtml --title "JSON for Modern C++" --legend --demangle-cpp --output-directory html --show-details --branch-coverage json.info.filtered.noexcept
-
- COMMENT "Compile and test with coverage"
-)
-
-###############################################################################
-# Sanitizers.
-###############################################################################
-
-set(CLANG_CXX_FLAGS_SANITIZER "-g -O1 -fsanitize=address -fsanitize=undefined -fsanitize=integer -fsanitize=nullability -fno-omit-frame-pointer -fno-sanitize-recover=all -fno-sanitize=unsigned-integer-overflow -fno-sanitize=unsigned-shift-base")
-
-add_custom_target(ci_test_clang_sanitizer
- COMMAND CXX=${CLANG_TOOL} CXXFLAGS=${CLANG_CXX_FLAGS_SANITIZER} ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja
- -DJSON_BuildTests=ON
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_clang_sanitizer
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_clang_sanitizer
- COMMAND cd ${PROJECT_BINARY_DIR}/build_clang_sanitizer && ${CMAKE_CTEST_COMMAND} --parallel ${N} --output-on-failure
- COMMENT "Compile and test with sanitizers"
-)
-
-###############################################################################
-# Check if header is amalgamated and sources are properly indented.
-###############################################################################
-
-set(ASTYLE_FLAGS --style=allman --indent=spaces=4 --indent-modifiers --indent-switches --indent-preproc-block --indent-preproc-define --indent-col1-comments --pad-oper --pad-header --align-pointer=type --align-reference=type --add-brackets --convert-tabs --close-templates --lineend=linux --preserve-date --formatted)
-
-file(GLOB_RECURSE INDENT_FILES
- ${PROJECT_SOURCE_DIR}/include/nlohmann/*.hpp
- ${PROJECT_SOURCE_DIR}/tests/src/*.cpp
- ${PROJECT_SOURCE_DIR}/tests/src/*.hpp
- ${PROJECT_SOURCE_DIR}/tests/benchmarks/src/benchmarks.cpp
- ${PROJECT_SOURCE_DIR}/docs/examples/*.cpp
-)
-
-set(include_dir ${PROJECT_SOURCE_DIR}/single_include/nlohmann)
-set(tool_dir ${PROJECT_SOURCE_DIR}/tools/amalgamate)
-add_custom_target(ci_test_amalgamation
- COMMAND rm -fr ${include_dir}/json.hpp~ ${include_dir}/json_fwd.hpp~
- COMMAND cp ${include_dir}/json.hpp ${include_dir}/json.hpp~
- COMMAND cp ${include_dir}/json_fwd.hpp ${include_dir}/json_fwd.hpp~
-
- COMMAND ${Python3_EXECUTABLE} ${tool_dir}/amalgamate.py -c ${tool_dir}/config_json.json -s .
- COMMAND ${Python3_EXECUTABLE} ${tool_dir}/amalgamate.py -c ${tool_dir}/config_json_fwd.json -s .
- COMMAND ${ASTYLE_TOOL} ${ASTYLE_FLAGS} --suffix=none --quiet ${include_dir}/json.hpp ${include_dir}/json_fwd.hpp
-
- COMMAND diff ${include_dir}/json.hpp~ ${include_dir}/json.hpp
- COMMAND diff ${include_dir}/json_fwd.hpp~ ${include_dir}/json_fwd.hpp
-
- COMMAND ${ASTYLE_TOOL} ${ASTYLE_FLAGS} ${INDENT_FILES}
- COMMAND for FILE in `find . -name '*.orig'`\; do false \; done
-
- WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
- COMMENT "Check amalgamation and indentation"
-)
-
-###############################################################################
-# Build and test using the amalgamated header
-###############################################################################
-
-add_custom_target(ci_test_single_header
- COMMAND CXX=${GCC_TOOL} CXXFLAGS="${GCC_CXXFLAGS}" ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja
- -DJSON_BuildTests=ON -DJSON_MultipleHeaders=OFF -DJSON_FastTests=ON
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_single_header
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_single_header
- COMMAND cd ${PROJECT_BINARY_DIR}/build_single_header && ${CMAKE_CTEST_COMMAND} --parallel ${N} --output-on-failure
- COMMENT "Compile and test single-header version"
-)
-
-###############################################################################
-# Valgrind.
-###############################################################################
-
-add_custom_target(ci_test_valgrind
- COMMAND CXX=${GCC_TOOL} ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja
- -DJSON_BuildTests=ON -DJSON_Valgrind=ON
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_valgrind
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_valgrind
- COMMAND cd ${PROJECT_BINARY_DIR}/build_valgrind && ${CMAKE_CTEST_COMMAND} -L valgrind --parallel ${N} --output-on-failure
- COMMENT "Compile and test with Valgrind"
-)
-
-###############################################################################
-# Check code with Clang Static Analyzer.
-###############################################################################
-
-set(CLANG_ANALYZER_CHECKS "fuchsia.HandleChecker,nullability.NullableDereferenced,nullability.NullablePassedToNonnull,nullability.NullableReturnedFromNonnull,optin.cplusplus.UninitializedObject,optin.cplusplus.VirtualCall,optin.mpi.MPI-Checker,optin.osx.OSObjectCStyleCast,optin.osx.cocoa.localizability.EmptyLocalizationContextChecker,optin.osx.cocoa.localizability.NonLocalizedStringChecker,optin.performance.GCDAntipattern,optin.performance.Padding,optin.portability.UnixAPI,security.FloatLoopCounter,security.insecureAPI.DeprecatedOrUnsafeBufferHandling,security.insecureAPI.bcmp,security.insecureAPI.bcopy,security.insecureAPI.bzero,security.insecureAPI.rand,security.insecureAPI.strcpy,valist.CopyToSelf,valist.Uninitialized,valist.Unterminated,webkit.NoUncountedMemberChecker,webkit.RefCntblBaseVirtualDtor,core.CallAndMessage,core.DivideZero,core.NonNullParamChecker,core.NullDereference,core.StackAddressEscape,core.UndefinedBinaryOperatorResult,core.VLASize,core.uninitialized.ArraySubscript,core.uninitialized.Assign,core.uninitialized.Branch,core.uninitialized.CapturedBlockVariable,core.uninitialized.UndefReturn,cplusplus.InnerPointer,cplusplus.Move,cplusplus.NewDelete,cplusplus.NewDeleteLeaks,cplusplus.PlacementNew,cplusplus.PureVirtualCall,deadcode.DeadStores,nullability.NullPassedToNonnull,nullability.NullReturnedFromNonnull,osx.API,osx.MIG,osx.NumberObjectConversion,osx.OSObjectRetainCount,osx.ObjCProperty,osx.SecKeychainAPI,osx.cocoa.AtSync,osx.cocoa.AutoreleaseWrite,osx.cocoa.ClassRelease,osx.cocoa.Dealloc,osx.cocoa.IncompatibleMethodTypes,osx.cocoa.Loops,osx.cocoa.MissingSuperCall,osx.cocoa.NSAutoreleasePool,osx.cocoa.NSError,osx.cocoa.NilArg,osx.cocoa.NonNilReturnValue,osx.cocoa.ObjCGenerics,osx.cocoa.RetainCount,osx.cocoa.RunLoopAutoreleaseLeak,osx.cocoa.SelfInit,osx.cocoa.SuperDealloc,osx.cocoa.UnusedIvars,osx.cocoa.VariadicMethodTypes,osx.coreFoundation.CFError,osx.coreFoundation.CFNumber,osx.coreFoundation.CFRetainRelease,osx.coreFoundation.containers.OutOfBounds,osx.coreFoundation.containers.PointerSizedValues,security.insecureAPI.UncheckedReturn,security.insecureAPI.decodeValueOfObjCType,security.insecureAPI.getpw,security.insecureAPI.gets,security.insecureAPI.mkstemp,security.insecureAPI.mktemp,security.insecureAPI.vfork,unix.API,unix.Malloc,unix.MallocSizeof,unix.MismatchedDeallocator,unix.Vfork,unix.cstring.BadSizeArg,unix.cstring.NullArg")
-
-add_custom_target(ci_clang_analyze
- COMMAND CXX=${CLANG_TOOL} ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja
- -DJSON_BuildTests=ON
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_clang_analyze
- COMMAND cd ${PROJECT_BINARY_DIR}/build_clang_analyze && ${SCAN_BUILD_TOOL} -enable-checker ${CLANG_ANALYZER_CHECKS} --use-c++=${CLANG_TOOL} -analyze-headers -o ${PROJECT_BINARY_DIR}/report ninja
- COMMENT "Check code with Clang Analyzer"
-)
-
-###############################################################################
-# Check code with Cppcheck.
-###############################################################################
-
-add_custom_target(ci_cppcheck
- COMMAND ${CPPCHECK_TOOL} --enable=warning --suppress=missingReturn --inline-suppr --inconclusive --force --std=c++11 ${PROJECT_SOURCE_DIR}/single_include/nlohmann/json.hpp --error-exitcode=1
- COMMENT "Check code with Cppcheck"
-)
-
-###############################################################################
-# Check code with cpplint.
-###############################################################################
-
-add_custom_target(ci_cpplint
- COMMAND ${Python3_EXECUTABLE} -mvenv venv_cpplint
- COMMAND venv_cpplint/bin/pip3 --quiet install cpplint
- COMMAND venv_cpplint/bin/cpplint --filter=-whitespace,-legal,-runtime/references,-runtime/explicit,-runtime/indentation_namespace,-readability/casting,-readability/nolint --quiet --recursive ${SRC_FILES}
- COMMENT "Check code with cpplint"
- WORKING_DIRECTORY ${PROJECT_BINARY_DIR}
-)
-
-###############################################################################
-# Check code with OCLint.
-###############################################################################
-
-file(COPY ${PROJECT_SOURCE_DIR}/single_include/nlohmann/json.hpp DESTINATION ${PROJECT_BINARY_DIR}/src_single)
-file(RENAME ${PROJECT_BINARY_DIR}/src_single/json.hpp ${PROJECT_BINARY_DIR}/src_single/all.cpp)
-file(APPEND "${PROJECT_BINARY_DIR}/src_single/all.cpp" "\n\nint main()\n{}\n")
-
-add_executable(single_all ${PROJECT_BINARY_DIR}/src_single/all.cpp)
-target_compile_features(single_all PRIVATE cxx_std_11)
-
-add_custom_target(ci_oclint
- COMMAND ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug
- -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
- -DJSON_BuildTests=OFF -DJSON_CI=ON
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_oclint
- COMMAND ${OCLINT_TOOL} -i ${PROJECT_BINARY_DIR}/build_oclint/src_single/all.cpp -p ${PROJECT_BINARY_DIR}/build_oclint --
- -report-type html -enable-global-analysis --max-priority-1=0 --max-priority-2=1000 --max-priority-3=2000
- --disable-rule=MultipleUnaryOperator
- --disable-rule=DoubleNegative
- --disable-rule=ShortVariableName
- --disable-rule=GotoStatement
- --disable-rule=LongLine
- -o ${PROJECT_BINARY_DIR}/build_oclint/oclint_report.html
- COMMENT "Check code with OCLint"
-)
-
-###############################################################################
-# Check code with Clang-Tidy.
-###############################################################################
-
-add_custom_target(ci_clang_tidy
- COMMAND CXX=${CLANG_TOOL} ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja
- -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_CXX_CLANG_TIDY=${CLANG_TIDY_TOOL}
- -DJSON_BuildTests=ON
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_clang_tidy
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_clang_tidy
- COMMENT "Check code with Clang-Tidy"
-)
-
-###############################################################################
-# Check code with PVS-Studio Analyzer .
-###############################################################################
-
-add_custom_target(ci_pvs_studio
- COMMAND CXX=${CLANG_TOOL} ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug
- -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
- -DJSON_BuildTests=ON
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_pvs_studio
- COMMAND cd ${PROJECT_BINARY_DIR}/build_pvs_studio && ${PVS_STUDIO_ANALYZER_TOOL} analyze -j 10
- COMMAND cd ${PROJECT_BINARY_DIR}/build_pvs_studio && ${PLOG_CONVERTER_TOOL} -a'GA:1,2;64:1;CS' -t fullhtml PVS-Studio.log -o pvs
- COMMENT "Check code with PVS Studio"
-)
-
-###############################################################################
-# Check code with Infer static analyzer.
-###############################################################################
-
-add_custom_target(ci_infer
- COMMAND mkdir -p ${PROJECT_BINARY_DIR}/build_infer
- COMMAND cd ${PROJECT_BINARY_DIR}/build_infer && ${INFER_TOOL} compile -- ${CMAKE_COMMAND} -DCMAKE_BUILD_TYPE=Debug ${PROJECT_SOURCE_DIR} -DJSON_BuildTests=ON
- COMMAND cd ${PROJECT_BINARY_DIR}/build_infer && ${INFER_TOOL} run -- make
- COMMENT "Check code with Infer"
-)
-
-###############################################################################
-# Run test suite with previously downloaded test data.
-###############################################################################
-
-add_custom_target(ci_offline_testdata
- COMMAND mkdir -p ${PROJECT_BINARY_DIR}/build_offline_testdata/test_data
- COMMAND cd ${PROJECT_BINARY_DIR}/build_offline_testdata/test_data && ${GIT_TOOL} clone -c advice.detachedHead=false --branch v3.1.0 https://github.com/nlohmann/json_test_data.git --quiet --depth 1
- COMMAND ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja
- -DJSON_BuildTests=ON -DJSON_FastTests=ON -DJSON_TestDataDirectory=${PROJECT_BINARY_DIR}/build_offline_testdata/test_data/json_test_data
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_offline_testdata
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_offline_testdata
- COMMAND cd ${PROJECT_BINARY_DIR}/build_offline_testdata && ${CMAKE_CTEST_COMMAND} --parallel ${N} --output-on-failure
- COMMENT "Check code with previously downloaded test data"
-)
-
-###############################################################################
-# Run test suite when project was not checked out from Git
-###############################################################################
-
-add_custom_target(ci_non_git_tests
- COMMAND git config --global --add safe.directory ${PROJECT_SOURCE_DIR}
- COMMAND mkdir -p ${PROJECT_BINARY_DIR}/build_non_git_tests/sources
- COMMAND cd ${PROJECT_SOURCE_DIR} && for FILE in `${GIT_TOOL} ls-tree --name-only HEAD`\; do cp -r $$FILE ${PROJECT_BINARY_DIR}/build_non_git_tests/sources \; done
- COMMAND ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja
- -DJSON_BuildTests=ON -DJSON_FastTests=ON
- -S${PROJECT_BINARY_DIR}/build_non_git_tests/sources -B${PROJECT_BINARY_DIR}/build_non_git_tests
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_non_git_tests
- COMMAND cd ${PROJECT_BINARY_DIR}/build_non_git_tests && ${CMAKE_CTEST_COMMAND} --parallel ${N} -LE git_required --output-on-failure
- COMMENT "Check code when project was not checked out from Git"
-)
-
-###############################################################################
-# Run test suite and exclude tests that change installed files
-###############################################################################
-
-add_custom_target(ci_reproducible_tests
- COMMAND ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja
- -DJSON_BuildTests=ON -DJSON_FastTests=ON
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_reproducible_tests
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_reproducible_tests
- COMMAND cd ${PROJECT_BINARY_DIR}/build_reproducible_tests && ${CMAKE_CTEST_COMMAND} --parallel ${N} -LE not_reproducible --output-on-failure
- COMMENT "Check code and exclude tests that change installed files"
-)
-
-###############################################################################
-# Check if every header in the include folder includes sufficient headers to
-# be compiled individually.
-###############################################################################
-
-set(iwyu_path_and_options ${IWYU_TOOL} -Xiwyu --max_line_length=300)
-
-foreach(SRC_FILE ${SRC_FILES})
- # get relative path of the header file
- file(RELATIVE_PATH RELATIVE_SRC_FILE "${PROJECT_SOURCE_DIR}/include/nlohmann" "${SRC_FILE}")
- # replace slashes and strip suffix
- string(REPLACE "/" "_" RELATIVE_SRC_FILE "${RELATIVE_SRC_FILE}")
- string(REPLACE ".hpp" "" RELATIVE_SRC_FILE "${RELATIVE_SRC_FILE}")
- # create code file
- file(WRITE "${PROJECT_BINARY_DIR}/src_single/${RELATIVE_SRC_FILE}.cpp" "#include \"${SRC_FILE}\" // IWYU pragma: keep\n\nint main()\n{}\n")
- # create executable
- add_executable(single_${RELATIVE_SRC_FILE} EXCLUDE_FROM_ALL ${PROJECT_BINARY_DIR}/src_single/${RELATIVE_SRC_FILE}.cpp)
- target_include_directories(single_${RELATIVE_SRC_FILE} PRIVATE ${PROJECT_SOURCE_DIR}/include)
- target_compile_features(single_${RELATIVE_SRC_FILE} PRIVATE cxx_std_11)
- set_property(TARGET single_${RELATIVE_SRC_FILE} PROPERTY CXX_INCLUDE_WHAT_YOU_USE "${iwyu_path_and_options}")
- # remember binary for ci_single_binaries target
- list(APPEND single_binaries single_${RELATIVE_SRC_FILE})
-endforeach()
-
-add_custom_target(ci_single_binaries
- DEPENDS ${single_binaries}
- COMMENT "Check if headers are self-contained"
-)
-
-###############################################################################
-# Benchmarks
-###############################################################################
-
-add_custom_target(ci_benchmarks
- COMMAND ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Release -GNinja
- -S${PROJECT_SOURCE_DIR}/benchmarks -B${PROJECT_BINARY_DIR}/build_benchmarks
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_benchmarks --target json_benchmarks
- COMMAND cd ${PROJECT_BINARY_DIR}/build_benchmarks && ./json_benchmarks
- COMMENT "Run benchmarks"
-)
-
-###############################################################################
-# CMake flags
-###############################################################################
-
-function(ci_get_cmake version var)
- set(${var} ${PROJECT_BINARY_DIR}/cmake-${version}/bin/cmake)
- add_custom_command(
- OUTPUT ${${var}}
- COMMAND wget -nc https://github.com/Kitware/CMake/releases/download/v${version}/cmake-${version}.tar.gz
- COMMAND tar xfz cmake-${version}.tar.gz
- COMMAND rm cmake-${version}.tar.gz
- COMMAND ${CMAKE_COMMAND} -S cmake-${version} -B cmake-${version}
- COMMAND ${CMAKE_COMMAND} --build cmake-${version} --parallel 10
- WORKING_DIRECTORY ${PROJECT_BINARY_DIR}
- COMMENT "Download CMake ${version}"
- )
- set(${var} ${${var}} PARENT_SCOPE)
-endfunction()
-
-ci_get_cmake(3.1.0 CMAKE_3_1_0_BINARY)
-ci_get_cmake(3.13.0 CMAKE_3_13_0_BINARY)
-
-set(JSON_CMAKE_FLAGS_3_1_0 JSON_Diagnostics JSON_GlobalUDLs JSON_ImplicitConversions JSON_DisableEnumSerialization
- JSON_LegacyDiscardedValueComparison JSON_Install JSON_MultipleHeaders JSON_SystemInclude JSON_Valgrind)
-set(JSON_CMAKE_FLAGS_3_13_0 JSON_BuildTests)
-
-function(ci_add_cmake_flags_targets flag min_version)
- string(TOLOWER "ci_cmake_flag_${flag}" flag_target)
- string(REPLACE . _ min_version_var ${min_version})
- set(cmake_binary ${CMAKE_${min_version_var}_BINARY})
- add_custom_target(${flag_target}
- COMMENT "Check CMake flag ${flag} (CMake ${CMAKE_VERSION})"
- COMMAND ${CMAKE_COMMAND}
- -Werror=dev
- -D${flag}=ON
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_${flag_target}
- )
- add_custom_target(${flag_target}_${min_version_var}
- COMMENT "Check CMake flag ${JSON_CMAKE_FLAG} (CMake ${min_version})"
- COMMAND mkdir -pv ${PROJECT_BINARY_DIR}/build_${flag_target}_${min_version_var}
- COMMAND cd ${PROJECT_BINARY_DIR}/build_${flag_target}_${min_version_var}
- && ${cmake_binary} -Werror=dev ${PROJECT_SOURCE_DIR} -D${flag}=ON
- DEPENDS ${cmake_binary}
- )
- list(APPEND JSON_CMAKE_FLAG_TARGETS ${JSON_CMAKE_FLAG_TARGET} ${flag_target}_${min_version_var})
- list(APPEND JSON_CMAKE_FLAG_BUILD_DIRS ${PROJECT_BINARY_DIR}/build_${flag_target} ${PROJECT_BINARY_DIR}/build_${flag_target}_${min_version_var})
- set(JSON_CMAKE_FLAG_TARGETS ${JSON_CMAKE_FLAG_TARGETS} PARENT_SCOPE)
- set(JSON_CMAKE_FLAG_BUILD_DIRS ${JSON_CMAKE_FLAG_BUILD_DIRS} PARENT_SCOPE)
-endfunction()
-
-foreach(JSON_CMAKE_FLAG ${JSON_CMAKE_FLAGS_3_1_0})
- ci_add_cmake_flags_targets(${JSON_CMAKE_FLAG} 3.1.0)
-endforeach()
-
-foreach(JSON_CMAKE_FLAG ${JSON_CMAKE_FLAGS_3_13_0})
- ci_add_cmake_flags_targets(${JSON_CMAKE_FLAG} 3.13.0)
-endforeach()
-
-add_custom_target(ci_cmake_flags
- DEPENDS ${JSON_CMAKE_FLAG_TARGETS}
- COMMENT "Check CMake flags"
-)
-
-###############################################################################
-# Use more installed compilers.
-###############################################################################
-
-foreach(COMPILER g++-4.8 g++-4.9 g++-5 g++-6 g++-7 g++-8 g++-9 g++-10 g++-11 clang++-3.5 clang++-3.6 clang++-3.7 clang++-3.8 clang++-3.9 clang++-4.0 clang++-5.0 clang++-6.0 clang++-7 clang++-8 clang++-9 clang++-10 clang++-11 clang++-12 clang++-13 clang++-14 clang++-15 clang++-16 clang++-17)
- find_program(COMPILER_TOOL NAMES ${COMPILER})
- if (COMPILER_TOOL)
- unset(ADDITIONAL_FLAGS)
-
- add_custom_target(ci_test_compiler_${COMPILER}
- COMMAND CXX=${COMPILER} ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja
- -DJSON_BuildTests=ON -DJSON_FastTests=ON
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_compiler_${COMPILER}
- ${ADDITIONAL_FLAGS}
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_compiler_${COMPILER}
- COMMAND cd ${PROJECT_BINARY_DIR}/build_compiler_${COMPILER} && ${CMAKE_CTEST_COMMAND} --parallel ${N} --exclude-regex "test-unicode" --output-on-failure
- COMMENT "Compile and test with ${COMPILER}"
- )
- endif()
- unset(COMPILER_TOOL CACHE)
-endforeach()
-
-add_custom_target(ci_test_compiler_default
- COMMAND ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja
- -DJSON_BuildTests=ON -DJSON_FastTests=ON
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_compiler_default
- ${ADDITIONAL_FLAGS}
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_compiler_default --parallel ${N}
- COMMAND cd ${PROJECT_BINARY_DIR}/build_compiler_default && ${CMAKE_CTEST_COMMAND} --parallel ${N} --exclude-regex "test-unicode" -LE git_required --output-on-failure
- COMMENT "Compile and test with default C++ compiler"
-)
-
-###############################################################################
-# CUDA example
-###############################################################################
-
-add_custom_target(ci_cuda_example
- COMMAND ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja
- -DCMAKE_CUDA_HOST_COMPILER=g++-8
- -S${PROJECT_SOURCE_DIR}/tests/cuda_example -B${PROJECT_BINARY_DIR}/build_cuda_example
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_cuda_example
-)
-
-###############################################################################
-# Intel C++ Compiler
-###############################################################################
-
-add_custom_target(ci_icpc
- COMMAND ${CMAKE_COMMAND}
- -DCMAKE_BUILD_TYPE=Debug -GNinja
- -DCMAKE_C_COMPILER=icc -DCMAKE_CXX_COMPILER=icpc
- -DJSON_BuildTests=ON -DJSON_FastTests=ON
- -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_icpc
- COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_icpc
- COMMAND cd ${PROJECT_BINARY_DIR}/build_icpc && ${CMAKE_CTEST_COMMAND} --parallel ${N} --exclude-regex "test-unicode" --output-on-failure
- COMMENT "Compile and test with ICPC"
-)
-
-###############################################################################
-# test documentation
-###############################################################################
-
-add_custom_target(ci_test_examples
- COMMAND make CXX="${GCC_TOOL}" check_output_portable -j8
- WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/docs
- COMMENT "Check that all examples compile and create the desired output"
-)
-
-add_custom_target(ci_test_api_documentation
- COMMAND ${Python3_EXECUTABLE} scripts/check_structure.py
- WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/docs/mkdocs
- COMMENT "Lint the API documentation"
-)
-
-###############################################################################
-# Clean up all generated files.
-###############################################################################
-
-add_custom_target(ci_clean
- COMMAND rm -fr ${PROJECT_BINARY_DIR}/build_* cmake-3.1.0-Darwin64 ${JSON_CMAKE_FLAG_BUILD_DIRS} ${single_binaries}
- COMMENT "Clean generated directories"
-)
diff --git a/yass/third_party/json/cmake/config.cmake.in b/yass/third_party/json/cmake/config.cmake.in
deleted file mode 100644
index 9a17a7d7b2..0000000000
--- a/yass/third_party/json/cmake/config.cmake.in
+++ /dev/null
@@ -1,15 +0,0 @@
-include(FindPackageHandleStandardArgs)
-set(${CMAKE_FIND_PACKAGE_NAME}_CONFIG ${CMAKE_CURRENT_LIST_FILE})
-find_package_handle_standard_args(@PROJECT_NAME@ CONFIG_MODE)
-
-if(NOT TARGET @PROJECT_NAME@::@NLOHMANN_JSON_TARGET_NAME@)
- include("${CMAKE_CURRENT_LIST_DIR}/@NLOHMANN_JSON_TARGETS_EXPORT_NAME@.cmake")
- if((NOT TARGET @NLOHMANN_JSON_TARGET_NAME@) AND
- (NOT @PROJECT_NAME@_FIND_VERSION OR
- @PROJECT_NAME@_FIND_VERSION VERSION_LESS 3.2.0))
- add_library(@NLOHMANN_JSON_TARGET_NAME@ INTERFACE IMPORTED)
- set_target_properties(@NLOHMANN_JSON_TARGET_NAME@ PROPERTIES
- INTERFACE_LINK_LIBRARIES @PROJECT_NAME@::@NLOHMANN_JSON_TARGET_NAME@
- )
- endif()
-endif()
diff --git a/yass/third_party/json/cmake/download_test_data.cmake b/yass/third_party/json/cmake/download_test_data.cmake
deleted file mode 100644
index 1bb998dae6..0000000000
--- a/yass/third_party/json/cmake/download_test_data.cmake
+++ /dev/null
@@ -1,56 +0,0 @@
-set(JSON_TEST_DATA_URL https://github.com/nlohmann/json_test_data)
-set(JSON_TEST_DATA_VERSION 3.1.0)
-
-# if variable is set, use test data from given directory rather than downloading them
-if(JSON_TestDataDirectory)
- message(STATUS "Using test data in ${JSON_TestDataDirectory}.")
- add_custom_target(download_test_data)
- file(WRITE ${CMAKE_BINARY_DIR}/include/test_data.hpp "#define TEST_DATA_DIRECTORY \"${JSON_TestDataDirectory}\"\n")
-else()
- find_package(Git)
- # target to download test data
- add_custom_target(download_test_data
- COMMAND test -d json_test_data || ${GIT_EXECUTABLE} clone -c advice.detachedHead=false --branch v${JSON_TEST_DATA_VERSION} ${JSON_TEST_DATA_URL}.git --quiet --depth 1
- COMMENT "Downloading test data from ${JSON_TEST_DATA_URL} (v${JSON_TEST_DATA_VERSION})"
- WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
- )
- # create a header with the path to the downloaded test data
- file(WRITE ${CMAKE_BINARY_DIR}/include/test_data.hpp "#define TEST_DATA_DIRECTORY \"${CMAKE_BINARY_DIR}/json_test_data\"\n")
-endif()
-
-# determine the operating system (for debug and support purposes)
-find_program(UNAME_COMMAND uname)
-find_program(VER_COMMAND ver)
-find_program(LSB_RELEASE_COMMAND lsb_release)
-find_program(SW_VERS_COMMAND sw_vers)
-set(OS_VERSION_STRINGS "${CMAKE_SYSTEM}")
-if (VER_COMMAND)
- execute_process(COMMAND ${VER_COMMAND} OUTPUT_VARIABLE VER_COMMAND_RESULT OUTPUT_STRIP_TRAILING_WHITESPACE)
- set(OS_VERSION_STRINGS "${OS_VERSION_STRINGS}; ${VER_COMMAND_RESULT}")
-endif()
-if (SW_VERS_COMMAND)
- execute_process(COMMAND ${SW_VERS_COMMAND} OUTPUT_VARIABLE SW_VERS_COMMAND_RESULT OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_QUIET)
- string(REGEX REPLACE "[ ]*\n" "; " SW_VERS_COMMAND_RESULT "${SW_VERS_COMMAND_RESULT}")
- set(OS_VERSION_STRINGS "${OS_VERSION_STRINGS}; ${SW_VERS_COMMAND_RESULT}")
-endif()
-if (LSB_RELEASE_COMMAND)
- execute_process(COMMAND ${LSB_RELEASE_COMMAND} -a OUTPUT_VARIABLE LSB_RELEASE_COMMAND_RESULT OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_QUIET)
- string(REGEX REPLACE "[ ]*\n" "; " LSB_RELEASE_COMMAND_RESULT "${LSB_RELEASE_COMMAND_RESULT}")
- set(OS_VERSION_STRINGS "${OS_VERSION_STRINGS}; ${LSB_RELEASE_COMMAND_RESULT}")
-endif()
-if (UNAME_COMMAND)
- execute_process(COMMAND ${UNAME_COMMAND} -a OUTPUT_VARIABLE UNAME_COMMAND_RESULT OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_QUIET)
- set(OS_VERSION_STRINGS "${OS_VERSION_STRINGS}; ${UNAME_COMMAND_RESULT}")
-endif()
-
-message(STATUS "Operating system: ${OS_VERSION_STRINGS}")
-
-# determine the compiler (for debug and support purposes)
-if (MSVC)
- execute_process(COMMAND ${CMAKE_CXX_COMPILER} OUTPUT_VARIABLE CXX_VERSION_RESULT OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_VARIABLE CXX_VERSION_RESULT ERROR_STRIP_TRAILING_WHITESPACE)
- set(CXX_VERSION_RESULT "${CXX_VERSION_RESULT}; MSVC_VERSION=${MSVC_VERSION}; MSVC_TOOLSET_VERSION=${MSVC_TOOLSET_VERSION}")
-else()
- execute_process(COMMAND ${CMAKE_CXX_COMPILER} --version OUTPUT_VARIABLE CXX_VERSION_RESULT OUTPUT_STRIP_TRAILING_WHITESPACE)
-endif()
-string(REGEX REPLACE "[ ]*\n" "; " CXX_VERSION_RESULT "${CXX_VERSION_RESULT}")
-message(STATUS "Compiler: ${CXX_VERSION_RESULT}")
diff --git a/yass/third_party/json/cmake/nlohmann_jsonConfigVersion.cmake.in b/yass/third_party/json/cmake/nlohmann_jsonConfigVersion.cmake.in
deleted file mode 100644
index 1091085973..0000000000
--- a/yass/third_party/json/cmake/nlohmann_jsonConfigVersion.cmake.in
+++ /dev/null
@@ -1,20 +0,0 @@
-# This is essentially cmake's BasicConfigVersion-SameMajorVersion.cmake.in but
-# without the 32/64-bit check. Since json is a header-only library, it doesn't
-# matter if it was built on a different platform than what it is used on (see
-# https://github.com/nlohmann/json/issues/1697).
-set(PACKAGE_VERSION "@PROJECT_VERSION@")
-
-if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
- set(PACKAGE_VERSION_COMPATIBLE FALSE)
-else()
-
- if(PACKAGE_FIND_VERSION_MAJOR STREQUAL "@PROJECT_VERSION_MAJOR@")
- set(PACKAGE_VERSION_COMPATIBLE TRUE)
- else()
- set(PACKAGE_VERSION_COMPATIBLE FALSE)
- endif()
-
- if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
- set(PACKAGE_VERSION_EXACT TRUE)
- endif()
-endif()
diff --git a/yass/third_party/json/cmake/pkg-config.pc.in b/yass/third_party/json/cmake/pkg-config.pc.in
deleted file mode 100644
index d36317f09a..0000000000
--- a/yass/third_party/json/cmake/pkg-config.pc.in
+++ /dev/null
@@ -1,4 +0,0 @@
-Name: ${PROJECT_NAME}
-Description: JSON for Modern C++
-Version: ${PROJECT_VERSION}
-Cflags: -I${CMAKE_INSTALL_FULL_INCLUDEDIR}
diff --git a/yass/third_party/json/cmake/scripts/gen_bazel_build_file.cmake b/yass/third_party/json/cmake/scripts/gen_bazel_build_file.cmake
deleted file mode 100644
index e754d387d9..0000000000
--- a/yass/third_party/json/cmake/scripts/gen_bazel_build_file.cmake
+++ /dev/null
@@ -1,24 +0,0 @@
-# generate Bazel BUILD file
-
-set(PROJECT_ROOT "${CMAKE_CURRENT_LIST_DIR}/../..")
-set(BUILD_FILE "${PROJECT_ROOT}/BUILD.bazel")
-
-file(GLOB_RECURSE HEADERS LIST_DIRECTORIES false RELATIVE "${PROJECT_ROOT}" "include/*.hpp")
-
-file(WRITE "${BUILD_FILE}" [=[
-cc_library(
- name = "json",
- hdrs = [
-]=])
-
-foreach(header ${HEADERS})
- file(APPEND "${BUILD_FILE}" " \"${header}\",\n")
-endforeach()
-
-file(APPEND "${BUILD_FILE}" [=[
- ],
- includes = ["include"],
- visibility = ["//visibility:public"],
- alwayslink = True,
-)
-]=])
diff --git a/yass/third_party/json/cmake/test.cmake b/yass/third_party/json/cmake/test.cmake
deleted file mode 100644
index 7105b97c33..0000000000
--- a/yass/third_party/json/cmake/test.cmake
+++ /dev/null
@@ -1,273 +0,0 @@
-set(_json_test_cmake_list_file ${CMAKE_CURRENT_LIST_FILE})
-
-#############################################################################
-# download test data
-#############################################################################
-
-include(download_test_data)
-
-# test fixture to download test data
-add_test(NAME "download_test_data" COMMAND ${CMAKE_COMMAND} --build ${CMAKE_BINARY_DIR}
- --target download_test_data
-)
-set_tests_properties(download_test_data PROPERTIES FIXTURES_SETUP TEST_DATA)
-
-if(JSON_Valgrind)
- find_program(CMAKE_MEMORYCHECK_COMMAND valgrind)
- message(STATUS "Executing test suite with Valgrind (${CMAKE_MEMORYCHECK_COMMAND})")
- set(memcheck_command "${CMAKE_MEMORYCHECK_COMMAND} ${CMAKE_MEMORYCHECK_COMMAND_OPTIONS} --error-exitcode=1 --leak-check=full")
- separate_arguments(memcheck_command)
-endif()
-
-#############################################################################
-# detect standard support
-#############################################################################
-
-# C++11 is the minimum required
-set(compiler_supports_cpp_11 TRUE)
-
-foreach(feature ${CMAKE_CXX_COMPILE_FEATURES})
- if (${feature} STREQUAL cxx_std_14)
- set(compiler_supports_cpp_14 TRUE)
- elseif (${feature} STREQUAL cxx_std_17)
- set(compiler_supports_cpp_17 TRUE)
- elseif (${feature} STREQUAL cxx_std_20)
- set(compiler_supports_cpp_20 TRUE)
- elseif (${feature} STREQUAL cxx_std_23)
- set(compiler_supports_cpp_23 TRUE)
- endif()
-endforeach()
-
-#############################################################################
-# test functions
-#############################################################################
-
-#############################################################################
-# json_test_set_test_options(
-# all|
-# [CXX_STANDARDS all|...]
-# [COMPILE_DEFINITIONS ...]
-# [COMPILE_FEATURES ...]
-# [COMPILE_OPTIONS ...]
-# [LINK_LIBRARIES ...]
-# [LINK_OPTIONS ...]
-# [TEST_PROPERTIES ...])
-#
-# Supply test- and standard-specific build settings and/or test properties.
-# Specify multiple tests using a list e.g., "test-foo;test-bar".
-#
-# Must be called BEFORE the test is created.
-#############################################################################
-
-function(json_test_set_test_options tests)
- cmake_parse_arguments(args "" ""
- "CXX_STANDARDS;COMPILE_DEFINITIONS;COMPILE_FEATURES;COMPILE_OPTIONS;LINK_LIBRARIES;LINK_OPTIONS;TEST_PROPERTIES"
- ${ARGN})
-
- if(NOT args_CXX_STANDARDS)
- set(args_CXX_STANDARDS "all")
- endif()
-
- foreach(test ${tests})
- if("${test}" STREQUAL "all")
- set(test "")
- endif()
-
- foreach(cxx_standard ${args_CXX_STANDARDS})
- if("${cxx_standard}" STREQUAL "all")
- if("${test}" STREQUAL "")
- message(FATAL_ERROR "Not supported. Change defaults in: ${_json_test_cmake_list_file}")
- endif()
- set(test_interface _json_test_interface_${test})
- else()
- set(test_interface _json_test_interface_${test}_cpp_${cxx_standard})
- endif()
-
- if(NOT TARGET ${test_interface})
- add_library(${test_interface} INTERFACE)
- endif()
-
- target_compile_definitions(${test_interface} INTERFACE ${args_COMPILE_DEFINITIONS})
- target_compile_features(${test_interface} INTERFACE ${args_COMPILE_FEATURES})
- target_compile_options(${test_interface} INTERFACE ${args_COMPILE_OPTIONS})
- target_link_libraries (${test_interface} INTERFACE ${args_LINK_LIBRARIES})
- target_link_options(${test_interface} INTERFACE ${args_LINK_OPTIONS})
- #set_target_properties(${test_interface} PROPERTIES JSON_TEST_PROPERTIES "${args_TEST_PROPERTIES}")
- set_property(DIRECTORY PROPERTY
- ${test_interface}_TEST_PROPERTIES "${args_TEST_PROPERTIES}"
- )
- endforeach()
- endforeach()
-endfunction()
-
-# for internal use by _json_test_add_test()
-function(_json_test_apply_test_properties test_target properties_target)
- #get_target_property(test_properties ${properties_target} JSON_TEST_PROPERTIES)
- get_property(test_properties DIRECTORY PROPERTY ${properties_target}_TEST_PROPERTIES)
- if(test_properties)
- set_tests_properties(${test_target} PROPERTIES ${test_properties})
- endif()
-endfunction()
-
-# for internal use by json_test_add_test_for()
-function(_json_test_add_test test_name file main cxx_standard)
- set(test_target ${test_name}_cpp${cxx_standard})
-
- if(TARGET ${test_target})
- message(FATAL_ERROR "Target ${test_target} has already been added.")
- endif()
-
- add_executable(${test_target} ${file})
- target_link_libraries(${test_target} PRIVATE ${main})
-
- # set and require C++ standard
- set_target_properties(${test_target} PROPERTIES
- CXX_STANDARD ${cxx_standard}
- CXX_STANDARD_REQUIRED ON
- )
-
- # apply standard-specific build settings
- if(TARGET _json_test_interface__cpp_${cxx_standard})
- target_link_libraries(${test_target} PRIVATE _json_test_interface__cpp_${cxx_standard})
- endif()
-
- # apply test-specific build settings
- if(TARGET _json_test_interface_${test_name})
- target_link_libraries(${test_target} PRIVATE _json_test_interface_${test_name})
- endif()
-
- # apply test- and standard-specific build settings
- if(TARGET _json_test_interface_${test_name}_cpp_${cxx_standard})
- target_link_libraries(${test_target} PRIVATE
- _json_test_interface_${test_name}_cpp_${cxx_standard}
- )
- endif()
-
- if (JSON_FastTests)
- add_test(NAME ${test_target}
- COMMAND ${test_target} ${DOCTEST_TEST_FILTER}
- WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
- )
- else()
- add_test(NAME ${test_target}
- COMMAND ${test_target} ${DOCTEST_TEST_FILTER} --no-skip
- WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
- )
- endif()
- set_tests_properties(${test_target} PROPERTIES LABELS "all" FIXTURES_REQUIRED TEST_DATA)
-
- # apply standard-specific test properties
- if(TARGET _json_test_interface__cpp_${cxx_standard})
- _json_test_apply_test_properties(${test_target} _json_test_interface__cpp_${cxx_standard})
- endif()
-
- # apply test-specific test properties
- if(TARGET _json_test_interface_${test_name})
- _json_test_apply_test_properties(${test_target} _json_test_interface_${test_name})
- endif()
-
- # apply test- and standard-specific test properties
- if(TARGET _json_test_interface_${test_name}_cpp_${cxx_standard})
- _json_test_apply_test_properties(${test_target}
- _json_test_interface_${test_name}_cpp_${cxx_standard}
- )
- endif()
-
- if(JSON_Valgrind)
- add_test(NAME ${test_target}_valgrind
- COMMAND ${memcheck_command} $ ${DOCTEST_TEST_FILTER}
- WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
- )
- set_tests_properties(${test_target}_valgrind PROPERTIES
- LABELS "valgrind" FIXTURES_REQUIRED TEST_DATA
- )
- endif()
-endfunction()
-
-#############################################################################
-# json_test_add_test_for(
-#
-# [NAME ]
-# MAIN
-# [CXX_STANDARDS ...] [FORCE])
-#
-# Given a unit-foo.cpp, produces
-#
-# test-foo_cpp
-#
-# if C++ standard is supported by the compiler and the
-# source file contains JSON_HAS_CPP_.
-# Use NAME to override the filename-derived test name.
-# Use FORCE to create the test regardless of the file containing
-# JSON_HAS_CPP_.
-# Test targets are linked against