dub icon indicating copy to clipboard operation
dub copied to clipboard

Package and build management system for D

Results 262 dub issues
Sort by recently updated
recently updated
newest added

Details of the issue report were commented on below: https://github.com/dlang/dub/issues/2443#issuecomment-1236344159

### System information - **dub version**: dub (master branch / commit: a8aa2341be8434b16630aba03958f70565ff3ad6) - **OS Platform and distribution**: Windows 11 - **compiler version** dmd-2.100.0 / ldc-1.30.0 ### Bug Description `test/git-dependency` is...

On Windows with dub v1.29.0: ``` $ dub init ``` Then rename `app.d` to `Main.d` (and add a `module Main` declaration to it if you wish). ``` $ dub build...

### System information - **dub version**: 1.29.1 - **OS Platform and distribution**: Windows 10 - **compiler version** v2.100.1 ### Bug Description Compilation doesn't work, dmd will not report problems ###...

Add support for storing cached build artefacts in a central directory instead of in each package's ".dub" directory.

Currently, we store information about non-version dependencies in `dub.selections.json`. I think we should not, unless it's to mention the dependency is selected (although I'm a bit fuzzy on the usefulness...

enhancement

Currently dub.internal.vibecompat.inet.path contains ```d deprecated("Use NativePath instead.") alias Path = NativePath; ``` . Why is that? `NativePath` wastes more than twice twice the number of characters. I strongly prefer using...

Rust's default build tool, `cargo` allows the following values passed to `--color` ``` --color Coloring: auto, always, never ``` . I find those namings a bit more natural. Shall we...