GC-free, high-performance D library: Containers, networking, metaprogramming, memory management, utilities.
Go to file
Eugen Wissner 8c42cbfd63 Rename Vector to Array
For consistency with Phobos.
2017-05-16 12:12:57 +02:00
source/tanya Rename Vector to Array 2017-05-16 12:12:57 +02:00
.editorconfig Add editorconfig 2017-05-11 13:57:24 +02:00
.gitignore SList: Add length and opEquals 2017-01-25 19:41:05 +01:00
.travis.yml Generate unittest coverage information 2017-05-11 13:11:12 +02:00
LICENSE Initial commit 2016-08-24 18:07:18 +02:00
README.md Add new branch, add DList to package description 2017-05-15 20:09:32 +02:00
appveyor.yml Appveyor (#10) 2017-05-11 06:26:59 +02:00
dub.json SList: Add length and opEquals 2017-01-25 19:41:05 +01:00

README.md

Tanya

Build status Build status codecov Dub version Dub downloads License

Tanya is a general purpose library for D programming language.

Its aim is to simplify the manual memory management in D and to provide a guarantee with @nogc attribute that there are no hidden allocations on the Garbage Collector heap. Everything in the library is usable in @nogc code. Tanya extends Phobos functionality and provides alternative implementations for data structures and utilities that depend on the Garbage Collector in Phobos.

Overview

Tanya consists of the following packages:

  • async: Event loop (epoll, kqueue and IOCP).
  • container: Queue, Array, Singly and doubly linked lists, Buffers, UTF-8 string.
  • math: Arbitrary precision integer and a set of functions.
  • memory: Tools for manual memory management (allocator, reference counting, helper functions).
  • network: URL-Parsing, sockets, utilities.

Supported compilers

dmd
2.074.0
2.073.2
2.072.2
2.071.2

Current status

The library is currently under development, but the API is becoming gradually stable.

Following modules are coming soon:

Feature Branch Build status
BitVector bitvector bitvector bitvector
TLS crypto crypto crypto
File IO io io io
Hash table horton-table horton-table horton-table

Further characteristics

  • Tanya is a native D library.

  • Tanya is cross-platform. The development happens on a 64-bit Linux, but it is being tested on Windows and FreeBSD as well.

  • The library isn't thread-safe. Thread-safity should be added later.

Release management

3-week release cycle.

Contributing

Since I'm mostly busy writing new code and implementing new features I would appreciate, if anyone uses the library. It would help me to improve the codebase and fix issues.

Feel free to contact me if you have any questions.