Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
drug007 committed Jan 21, 2024
1 parent 754edbe commit d0fd64d
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 32 deletions.
14 changes: 2 additions & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,6 @@
name: Build

on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
# Use this branch name in your fork to test changes
- github-actions
on: push

jobs:
main:
Expand All @@ -20,7 +10,7 @@ jobs:
fail-fast: false
matrix:
# Latest stable version, update at will
os: [ ubuntu-18.04, windows-2019 ]
os: [ ubuntu-20.04, windows-2019 ]
dc: [ dmd-latest, ldc-latest ]

runs-on: ${{ matrix.os }}
Expand Down
6 changes: 3 additions & 3 deletions auxil/dub.sdl
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name "auxil"
description "A minimal D application."
authors "drug007"
copyright "Copyright © 2020-2022, drug007"
copyright "Copyright © 2020-2024, drug007"
license "BSL"
targetType "library"
dependency "taggedalgebraic" version="~>0.11.22"
dependency "automem" version="~>0.6.1"
dependency "automem" version="~>0.6.9"
dependency "nogc" version="~>0.5.0"

configuration "library" {
Expand All @@ -19,5 +19,5 @@ configuration "unittest" {

dflags "-dip25" "-dip1000" "-dip1008"

dependency "unit-threaded" version="~>0.10.7"
dependency "unit-threaded" version="~>2.1.8"
}
8 changes: 4 additions & 4 deletions dub.sdl
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name "nanogui"
description "Port of nanogui to dlang."
license "BSD-like"
authors "drug007"
copyright "Copyright © 2018-2022, drug007"
dependency "arsd-official:nanovega" version="~>10.9.2"
copyright "Copyright © 2018-2024, drug007"
dependency "arsd-official:nanovega" version="~>11.3.0"
dependency "gfm:math" version="~>8.0.6"
dependency "gfm7:opengl" version="~>1.1.2"
dependency "gfm7:sdl2" version="~>1.1.2"
dependency "gfm7:opengl" version="~>1.2.0"
dependency "gfm7:sdl2" version="~>1.2.0"
dependency "auxil" version="*" path="./auxil"
2 changes: 1 addition & 1 deletion examples/renderer/dub.selections.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"automem": "0.6.7",
"auxil": {"path":"../../auxil"},
"bindbc-loader": "0.3.2",
"bindbc-opengl": "0.15.0",
"bindbc-opengl": "1.1.0",
"bindbc-sdl": "0.19.2",
"binrange": "1.0.3",
"dplug": "9.3.4",
Expand Down
4 changes: 2 additions & 2 deletions examples/sdl/dub.sdl
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name "nanogui-sdl"
description "Example of nanogui using sdl backend"
authors "drug"
copyright "Copyright © 2018-2022, drug"
copyright "Copyright © 2018-2024, drug"
license "BSL"

targetType "executable"
targetName "example-sdl"

dependency "nanogui" path="../.."
dependency "resusage" version="~>0.3.2"
dependency "resusage" version="~>0.4.0"
dependency "taggedalgebraic" version="0.11.22"
20 changes: 10 additions & 10 deletions examples/sdl/dub.selections.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"fileVersion": 1,
"versions": {
"arsd-official": "10.9.2",
"automem": "0.6.7",
"arsd-official": "11.3.0",
"automem": "0.6.9",
"auxil": {"path":"../../auxil"},
"bindbc-loader": "0.3.2",
"bindbc-opengl": "0.15.0",
"bindbc-sdl": "0.19.2",
"bindbc-loader": "1.0.3",
"bindbc-opengl": "1.1.0",
"bindbc-sdl": "1.2.4",
"gfm": "8.0.6",
"gfm7": "1.1.2",
"intel-intrinsics": "1.10.2",
"gfm7": "1.2.0",
"intel-intrinsics": "1.11.18",
"localimport": "1.3.0",
"nanogui": {"path":"../.."},
"nogc": "0.5.1",
"resusage": "0.3.2",
"resusage": "0.4.0",
"taggedalgebraic": "0.11.22",
"test_allocator": "0.3.3",
"unit-threaded": "0.10.8"
"test_allocator": "0.3.4",
"unit-threaded": "2.1.8"
}
}

0 comments on commit d0fd64d

Please sign in to comment.