<feed xmlns='http://www.w3.org/2005/Atom'>
<title>tanya, branch v0.19.0</title>
<subtitle>GC-free, high-performance D library: Containers, networking, metaprogramming, memory management, utilities.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.caraus.tech/tanya/'/>
<entry>
<title>Combine dependencies and dependencies-linux</title>
<updated>2023-09-25T16:35:33+00:00</updated>
<author>
<name>Eugen Wissner</name>
<email>belka@caraus.de</email>
</author>
<published>2023-09-25T16:32:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.caraus.tech/tanya/commit/?id=4acf163b428c9d61054ebe917c4b4c89324a20d4'/>
<id>4acf163b428c9d61054ebe917c4b4c89324a20d4</id>
<content type='text'>
Platform dependencies aren't supported according to the dub
documentation, that states: "this setting does not support platform
suffixes".

dub test with dub 1.34.0 produces a warning:

"dependencies-linux: Key is not a valid member of this section.
Did you mean: dependencies"

Then the build fails because it cannot find modules defined in the
dependency.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Platform dependencies aren't supported according to the dub
documentation, that states: "this setting does not support platform
suffixes".

dub test with dub 1.34.0 produces a warning:

"dependencies-linux: Key is not a valid member of this section.
Did you mean: dependencies"

Then the build fails because it cannot find modules defined in the
dependency.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'n8sh/DMD_2.105'</title>
<updated>2023-09-23T15:22:27+00:00</updated>
<author>
<name>Eugen Wissner</name>
<email>belka@caraus.de</email>
</author>
<published>2023-09-23T15:22:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.caraus.tech/tanya/commit/?id=e1fd5286073164f0f2cf63e5225e1b80a245ba07'/>
<id>e1fd5286073164f0f2cf63e5225e1b80a245ba07</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'n8sh/windows-iface-mmappool'</title>
<updated>2023-09-23T14:16:33+00:00</updated>
<author>
<name>Eugen Wissner</name>
<email>belka@caraus.de</email>
</author>
<published>2023-09-23T14:16:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.caraus.tech/tanya/commit/?id=1c57368f43ea2cc093138887daadde2e51533223'/>
<id>1c57368f43ea2cc093138887daadde2e51533223</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add Windows support to tanya.memory.mmappool</title>
<updated>2023-09-22T20:08:24+00:00</updated>
<author>
<name>Nathan Sashihara</name>
<email>21227491+n8sh@users.noreply.github.com</email>
</author>
<published>2023-09-22T20:04:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.caraus.tech/tanya/commit/?id=1c5e18b92e71b17067415d7ef23e427300b8efd6'/>
<id>1c5e18b92e71b17067415d7ef23e427300b8efd6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update tanya.net.iface to work on Windows</title>
<updated>2023-09-22T20:07:59+00:00</updated>
<author>
<name>Nathan Sashihara</name>
<email>21227491+n8sh@users.noreply.github.com</email>
</author>
<published>2023-09-22T19:58:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.caraus.tech/tanya/commit/?id=07b388eecb0861e04dd8280681033d961b5d7fc0'/>
<id>07b388eecb0861e04dd8280681033d961b5d7fc0</id>
<content type='text'>
Needed because 0fcc83d00eb9d0699167bf105d522e7d23a44d32 removed
tanya.sys.windows.ifdef and tanya.sys.windows.iphlpapi.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Needed because 0fcc83d00eb9d0699167bf105d522e7d23a44d32 removed
tanya.sys.windows.ifdef and tanya.sys.windows.iphlpapi.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update to compile with DMD 2.105</title>
<updated>2023-09-22T19:43:36+00:00</updated>
<author>
<name>Nathan Sashihara</name>
<email>21227491+n8sh@users.noreply.github.com</email>
</author>
<published>2023-09-22T19:42:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.caraus.tech/tanya/commit/?id=20ae6465d69ba1c35cb3bb35e98cb10072e2a563'/>
<id>20ae6465d69ba1c35cb3bb35e98cb10072e2a563</id>
<content type='text'>
https://dlang.org/changelog/2.105.0.html#dmd.enum-function

&gt; enum on a function declaration had no effect other than being
&gt; equivalent to the auto storage class when no return type was present.
&gt; That syntax could be confused with enum manifest constants and is now
&gt; an error... Instead, remove enum and use auto where necessary
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://dlang.org/changelog/2.105.0.html#dmd.enum-function

&gt; enum on a function declaration had no effect other than being
&gt; equivalent to the auto storage class when no return type was present.
&gt; That syntax could be confused with enum manifest constants and is now
&gt; an error... Instead, remove enum and use auto where necessary
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove traits depending on deprecated complex</title>
<updated>2023-03-25T14:55:57+00:00</updated>
<author>
<name>Eugen Wissner</name>
<email>belka@caraus.de</email>
</author>
<published>2023-03-25T14:55:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.caraus.tech/tanya/commit/?id=728eaf88fb376025bd729b7047a7a73553005dd9'/>
<id>728eaf88fb376025bd729b7047a7a73553005dd9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace tuples with custom types</title>
<updated>2022-06-07T06:40:18+00:00</updated>
<author>
<name>Eugen Wissner</name>
<email>belka@caraus.de</email>
</author>
<published>2022-06-07T06:40:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.caraus.tech/tanya/commit/?id=90797a48be55b98d86e4e9ceffeecddd4ab90ac7'/>
<id>90797a48be55b98d86e4e9ceffeecddd4ab90ac7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace Variant with SumType</title>
<updated>2022-06-06T07:46:45+00:00</updated>
<author>
<name>Eugen Wissner</name>
<email>belka@caraus.de</email>
</author>
<published>2022-06-06T07:46:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.caraus.tech/tanya/commit/?id=5453c646f622b0cdf694d0e64813a39c26a70e0d'/>
<id>5453c646f622b0cdf694d0e64813a39c26a70e0d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove math function wrappers</title>
<updated>2022-06-01T10:55:03+00:00</updated>
<author>
<name>Eugen Wissner</name>
<email>belka@caraus.de</email>
</author>
<published>2022-06-01T10:55:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.caraus.tech/tanya/commit/?id=7dd4c4414001729129745f087ff9c80a6c1d81ac'/>
<id>7dd4c4414001729129745f087ff9c80a6c1d81ac</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
