upgrade msgpack to ~>1.0, add dub.selections.json

Fixes msgpack-d deprecations, allows minor bumps upstream

The dub.selections.json allows
This commit is contained in:
WebFreak001 2023-01-04 17:39:05 +01:00 committed by Petar Kirov
parent 4c426d73d1
commit 4946d49abd
4 changed files with 20 additions and 3 deletions

View File

@ -44,8 +44,8 @@ jobs:
- name: Build
run: |
rdmd ./d-test-utils/test_with_package.d $LIBDPARSE_VERSION libdparse -- dub build --build=${{ matrix.build }} --config=client --arch=${{ matrix.arch }}
rdmd ./d-test-utils/test_with_package.d $LIBDPARSE_VERSION libdparse -- dub build --build=${{ matrix.build }} --config=server --arch=${{ matrix.arch }}
dub build --build=${{ matrix.build }} --config=client --arch=${{ matrix.arch }}
dub build --build=${{ matrix.build }} --config=server --arch=${{ matrix.arch }}
# Tests
@ -65,6 +65,12 @@ jobs:
cd dsymbol
rdmd ../d-test-utils/test_with_package.d $LIBDPARSE_VERSION libdparse -- dub test
# test that both lowest supplied and highest available libdparse versions are compatible (for DUB users depending on DCD)
- name: Test dependency versions
run: |
rdmd ./d-test-utils/test_with_package.d $LIBDPARSE_VERSION libdparse -- dub build --build=${{ matrix.build }} --config=client --arch=${{ matrix.arch }}
rdmd ./d-test-utils/test_with_package.d $LIBDPARSE_VERSION libdparse -- dub build --build=${{ matrix.build }} --config=server --arch=${{ matrix.arch }}
- name: Linux Tests
if: contains(matrix.os, 'ubuntu')
run: |

1
.gitignore vendored
View File

@ -28,3 +28,4 @@ stdout.txt
# Dub files
.dub
dub.selections.json
!/dub.selections.json

View File

@ -5,5 +5,5 @@ preBuildCommands "\"$DC\" -run \"$PACKAGE_DIR/dubhash.d\""
sourcePaths "src"
importPaths "src"
dependency "msgpack-d" version="1.0.1"
dependency "msgpack-d" version="~>1.0"
versions "built_with_dub"

10
dub.selections.json Normal file
View File

@ -0,0 +1,10 @@
{
"fileVersion": 1,
"versions": {
"dsymbol": "0.14.1",
"emsi_containers": "0.9.0",
"libdparse": "0.21.1",
"msgpack-d": "1.0.4",
"stdx-allocator": "2.77.5"
}
}