Skip to content

Tags: tidwall/tg

Tags

v0.7.5

Toggle v0.7.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #19 from Kontinuation/fix-parsing-wkb

Fix read_uint32 and read_uint64 for big-endian machines, potentially improving performance

v0.7.4

Toggle v0.7.4's commit message
Reload unaligned doubles

For non arm64/amd64 systems. Minor optimization that loads
unaligned doubles into a seperate array and use that array
directly, rather than use a branch that is intended for swapping
endianness.

v0.7.3

Toggle v0.7.3's commit message
Fix compile error on m32 arch

v0.7.2

Toggle v0.7.2's commit message
rename buf object

v0.7.1

Toggle v0.7.1's commit message
Update README.md

v0.7.0

Toggle v0.7.0's commit message
Print the smallest floating point representation.

This commmit makes a change where floating points are now
printed as their smallest textual representation. Before, all
numbers were always ddd.fffff. But now it may be printed with an
exponent, if and when that will make it smaller. This affects wkt
and geojson outputs. The reason for this change is to save space,
both network and disk, but without losing any accuracy.

For example, the number 5000000 will be now be 5e6.

To disable this feature call tg_env_set_print_fixed_floats(true);

v0.6.4

Toggle v0.6.4's commit message
Update reference counting

Use a relaxed/release/acquire pattern, and start counter at one.

v0.6.3

Toggle v0.6.3's commit message
Update API docs

v0.6.2

Toggle v0.6.2's commit message
Initialize memory to silence lto warning in gcc.

v0.6.1

Toggle v0.6.1's commit message
Fix gcc warnings