aboutsummaryrefslogtreecommitdiff
path: root/core/encoding
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | Add vendor-specific version 8 UUID generation (hashing)Feoramund2024-06-221-0/+116
| | | |
| * | | Add `unsafe_write` to `uuid` packageFeoramund2024-06-221-4/+45
| | | |
| * | | Address minor organizational issuesFeoramund2024-06-223-17/+21
| | | |
| * | | Add buffer-based `to_string` to `uuid` packageFeoramund2024-06-221-1/+30
| | | |
| * | | Improve time-related API in `uuid` packageFeoramund2024-06-222-25/+80
| | | | | | | | | | | | | | | | | | | | | | | | - Let timestamps be specified by the user. - Change `time_v*` to `raw_time_v*` and implement an API that returns timestamps from the `time` package.
| * | | Update `uuid` package documentationFeoramund2024-06-221-7/+38
| | | |
| * | | Require CSPRNG in UUID generation where applicableFeoramund2024-06-222-3/+12
| | | |
| * | | Move v3 and v5 UUID procs to `uuid/legacy`Feoramund2024-06-222-135/+150
| | | |
| * | | Add version 6 UUID generationFeoramund2024-06-222-1/+65
| | | |
| * | | Add version 1 UUID generationFeoramund2024-06-223-0/+102
| | | |
| * | | Add version 7 UUID generationFeoramund2024-06-223-0/+120
| | | |
| * | | Make UUID namespaces `@(rodata)`Feoramund2024-06-221-0/+4
| | | |
| * | | Make UUID `Identfier` only a distinct byte arrayFeoramund2024-06-224-48/+38
| | | |
| * | | Fix wrong commentsFeoramund2024-06-221-2/+2
| | | |
| * | | Add `core:encoding/uuid`Feoramund2024-06-226-0/+419
| | |/ | |/|
* | | Mark deuxJeroen van Rijn2024-06-241-1/+1
| | |
* | | Fix CSV comments.Jeroen van Rijn2024-06-241-2/+4
|/ /
* | Fold XML attribute whitespace.Jeroen van Rijn2024-06-121-10/+24
| |
* | Update XML reader to normalize whitespace, part 1.Jeroen van Rijn2024-06-123-111/+65
| |
* | Port `tests\core\encoding\json`Jeroen van Rijn2024-06-023-41/+42
| |
* | Port `tests\core\encoding\hxa`Jeroen van Rijn2024-06-022-37/+36
| | | | | | | | And fix a few leaks in `core:encoding/hxa` while at it.
* | Port `tests\encoding\hex`Jeroen van Rijn2024-06-021-6/+5
| |
* | Update `tests\core\encoding\cbor` to use new test runner.Jeroen van Rijn2024-06-024-113/+116
| | | | | | | | | | | | It was leaky and required a substantial number of `loc := #caller_location` additions to parts of the core library to make it easier to track down how and where it leaked. The tests now run fine multi-threaded.
* | Add `core:encoding/ansi` packageFeoramund2024-06-022-0/+157
| |
* | `core:encoding/ini`gingerBill2024-05-311-0/+189
|/
* Merge pull request #3628 from IllusionMan1212/bitset-json-marshalling-fixJeroen van Rijn2024-05-251-2/+0
|\ | | | | fix(core/encoding/json): remove Unsupported_Type return when marshalling bit_set
| * fix(core/encoding/json): remove Unsupported_Type return when marshalling bit_setIllusionMan12122024-05-251-2/+0
| |
* | Remove core:mem import in example.Jeroen van Rijn2024-05-241-1/+0
| |
* | Add iterator_next(&r) to CSV.Jeroen van Rijn2024-05-242-2/+112
|/
* encoding/json: Properly marshal `#no_nil` unionskorvahkh2024-05-111-5/+8
| | | | | Previously the first variant of a `#no_nil` would always be output as `null`, and following variants would be treated as the wrong type.
* Fix `omitempty` in `json.marshal`Feoramund2024-04-272-2/+2
|
* Return partial readsgingerBill2024-04-191-4/+15
|
* Only override the comma value on `*_init` if it is "invalid"gingerBill2024-04-192-2/+8
|
* Update numerous package declaration namesgingerBill2024-04-1825-25/+25
|
* Keep -vet happygingerBill2024-04-154-18/+17
|
* Merge pull request #3045 from laytan/cborgingerBill2024-04-157-47/+3713
|\ | | | | encoding/cbor
| * encoding/cbor: rename `diagnose` to `to_diagnostic_format` to be clearerLaytan Laats2024-03-042-14/+14
| |
| * encoding/cbor: respect default to panic allocatorLaytan2024-03-041-1/+1
| |
| * encoding/cbor: make temp allocations more explicitLaytan2024-03-044-114/+62
| |
| * encoding/cbor: core -> baseLaytan2024-03-045-8/+13
| |
| * encoding/cbor: remove usage of incl_elem and excl_elemLaytan2024-03-041-4/+4
| |
| * encoding/cbor: adhere to new quaternion rules of masterLaytan Laats2024-03-041-3/+3
| |
| * encoding/cbor: add general docs and exampleLaytan Laats2024-03-045-11/+149
| |
| * encoding/cbor: deterministically store bit sets as big endianLaytan Laats2024-03-043-26/+8
| |
| * encoding/cbor: ignore struct fields with `cbor:"-"`Laytan Laats2024-03-042-10/+31
| |
| * encoding/cbor: cleanLaytan Laats2024-03-041-3/+2
| |
| * encoding/cbor: fix wrong allocator bugLaytan Laats2024-03-041-3/+2
| |
| * encoding/cbor: clean and fixup some allocationsLaytan Laats2024-03-043-32/+25
| |
| * encoding/cbor: cleanup comments about tagsLaytan Laats2024-03-041-12/+13
| |
| * encoding/cbor: cleanup default temp allocatorLaytan Laats2024-03-044-35/+77
| |