cat vcpkg.json | jq -S
results in a different order, seems more lexicographical to me?
0{
1 "$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
2 "builtin-baseline": "9edb1b8e590cc086563301d735cae4b6e732d2d2",
3 "default-features": [
4 "wallet",
5 "zeromq",
6 "tests",
7 "qt5"
8 ],
9 "dependencies": [
10 "boost-date-time",
11 "boost-multi-index",
12 "boost-signals2",
13 "libevent"
14 ],
15 "features": {
16 "berkeleydb": {
17 "dependencies": [
18 "berkeleydb"
19 ],
20 "description": "Enable Berkeley DB wallet support"
21 },
22 "qt5": {
23 "dependencies": [
24 "qt5-base",
25 "qt5-tools"
26 ],
27 "description": "Build GUI, Qt 5"
28 },
29 "sqlite": {
30 "dependencies": [
31 "sqlite3"
32 ],
33 "description": "Enable SQLite wallet support"
34 },
35 "tests": {
36 "dependencies": [
37 "boost-test"
38 ],
39 "description": "Build test_bitcoin.exe executable"
40 },
41 "wallet": {
42 "dependencies": [
43 "berkeleydb",
44 "sqlite3"
45 ],
46 "description": "Enable wallet"
47 },
48 "zeromq": {
49 "dependencies": [
50 "zeromq"
51 ],
52 "description": "Enable ZMQ notifications"
53 }
54 },
55 "overrides": [
56 {
57 "name": "libevent",
58 "version": "2.1.12#7"
59 },
60 {
61 "name": "liblzma",
62 "version": "5.4.1#1"
63 }
64 ]
65}