Re: Phobos and the Tools repo are now on DUB

2018-06-25 Thread Seb via Digitalmars-d-announce
On Monday, 25 June 2018 at 21:34:43 UTC, Seb wrote: Phobos ... I forgot the links to the DUB registry: https://phobos.dub.pm https://dtools.dub.pm

Phobos and the Tools repo are now on DUB

2018-06-25 Thread Seb via Digitalmars-d-announce
Phobos -- It's now possible to access the latest version of Phobos's experimental packages through dub: ``` #!/usr/bin/env dub /++dub.sdl: dependency "phobos:checkedint" version="~master" +/ void main(string[] args) { import stdx.checkedint; // From latest Phobos import std.stdio;