FeepingCreature

Results 29 issues of FeepingCreature

When a package ends with '.all', it is a "recursive package". Dependencies to a recursive package implicitly include all subpackages. Recursive packages must not contain explicit subpackages. Recursive packages should...

Version of #5 that gathers the list of non-transitive dependencies in advance, as per conversation with @linkrope. I am not very sure if this is an improvement.

Allows a declared dependency 'a -> b' to satisfy a module dependency 'a.x.y -> b.z'.

If a source hoster renders commit messages with lines as paragraphs, newlines can be visually relevant. Then to avoid pointless paragraph breaks, I have to write very long commit lines....

https://issues.dlang.org/show_bug.cgi?id=23473 Rationale: At the moment, when looking at an overload set passed via an alias parameter to a template, there is *no way* of extracting the individual functions making up...

Needs Rebase
stalled
New Language Feature
Atila Neves
Walter Bright

**Describe the bug** When subscribing to a nonexistent stream, ReadResp.caught_up is never sent. **To Reproduce** Steps to reproduce the behavior: 1. GRPC connect to a stream that does not exist....

**Describe the bug** When the `uuid_option` field is not set in a `ReadReq`, the read request will hang until it times out without a clear error two minutes later. **To...

kind/bug
grpc
linear

**Describe the bug** When linting two schemas that both reference a schema in another file, which references a recursive schema in another file, a false "ref does not exist" error...

Given two files, "a.d": ``` import std.stdio; static this() { writefln!"static this()"; } ``` And "b.d": ``` import a; void main() { } ``` When I build a binary ```...