You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
remove dependency on fmt library, using std::format instead
This bumps the standard version to C++23, so that the `formattable`
concept becomes available.
This removes the color support from `diff.cpp`, since that is not
available in std::format.
You can also install `fmt` with Vcpkg in _Manifest mode_.
119
+
You can also install the dependencies with Vcpkg in _Manifest mode_.
142
120
In https://learn.microsoft.com/en-us/vcpkg/users/manifests[manifest mode,windows=blank_], you declare your project's direct dependencies in a manifest file named `vcpkg.json`.
143
121
MrDocs includes a `vcpkg.json.example` file you can duplicate or create a symlink as `vcpkg.json` to use this mode.
144
122
This file includes all the dependencies MrDocs needs, except for LLVM.
@@ -278,7 +256,7 @@ cd vcpkg
278
256
--
279
257
====
280
258
281
-
NOTE: These examples assume VcPkg is already installed in the `third-party/vcpkg` directory (see the <<install-fmt>> section).
259
+
NOTE: These examples assume VcPkg is already installed in the `third-party/vcpkg` directory (see the <<install-vcpkg>> section).
282
260
283
261
=== Libxml2
284
262
@@ -332,7 +310,7 @@ cd vcpkg
332
310
--
333
311
====
334
312
335
-
NOTE: These examples assume VcPkg is already installed in the `third-party/vcpkg` directory (see the <<install-fmt>> section).
313
+
NOTE: These examples assume VcPkg is already installed in the `third-party/vcpkg` directory (see the <<install-vcpkg>> section).
0 commit comments