Re: DUB Error with packcage dformlib

2021-04-17 Thread Alain De Vos via Digitalmars-d-learn
It might be a dead monkey. You could try: https://github.com/o3o/dguihub

DUB Error with packcage dformlib

2021-04-17 Thread Marcone via Digitalmars-d-learn
I have this message when try build dub. How solve it? Unresolvable dependencies to package dformlib app ~master depends on dformlib ~0.2.2>

Re: AliasSeq different from just using the symbol name(s)?

2021-04-17 Thread z via Digitalmars-d-learn
On Thursday, 15 April 2021 at 19:53:57 UTC, Paul Backus wrote: They're not *exactly* the same. When you write auto seq = AliasSeq!(a, b, c); ...you are declaring a sequence of three *new* array variables [1] and initializing them with copies of the original arrays. It's as though you'd wr

dub tip for building tkd application

2021-04-17 Thread Alain De Vos via Digitalmars-d-learn
On unix systems the tcltk library files can have different namings and versions and dub build might not be able to link correctly. After a failing build dependencies are found in ~/.dub/packages In the file ~/.dub/packages/tcltk-8.6.5/tcltk/dub.json you can edit for the specific libraries as i

Re: GC memory fragmentation

2021-04-17 Thread kdevel via Digitalmars-d-learn
On Sunday, 11 April 2021 at 09:10:22 UTC, tchaloupka wrote: we're using vibe-d (on Linux) for a long running REST API server [...] [...] lot of small allocations (postgresql query, result processing and REST API json serialization). I am wondering about your overall system design. Are there