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_.
90
+
You can also install the dependencies with Vcpkg in _Manifest mode_.
113
91
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`.
114
92
MrDocs includes a `vcpkg.json.example` file you can duplicate or create a symlink as `vcpkg.json` to use this mode.
115
93
This file includes all the dependencies MrDocs needs, except for LLVM.
@@ -238,7 +216,7 @@ cd vcpkg
238
216
--
239
217
====
240
218
241
-
NOTE: These examples assume VcPkg is already installed in the `third-party/vcpkg` directory (see the <<install-fmt>> section).
219
+
NOTE: These examples assume VcPkg is already installed in the `third-party/vcpkg` directory (see the <<install-vcpkg>> section).
242
220
243
221
=== Libxml2
244
222
@@ -292,7 +270,7 @@ cd vcpkg
292
270
--
293
271
====
294
272
295
-
NOTE: These examples assume VcPkg is already installed in the `third-party/vcpkg` directory (see the <<install-fmt>> section).
273
+
NOTE: These examples assume VcPkg is already installed in the `third-party/vcpkg` directory (see the <<install-vcpkg>> section).
0 commit comments