├── .travis.yml ├── LICENSE.txt ├── README.md ├── appveyor.yml ├── makefile ├── shell.c ├── sqlite3.c ├── sqlite3.h ├── sqlite3ext.h └── test ├── benchmark.py ├── convert-to-64bit.py ├── test-64bit-commit-ids.py ├── test.py └── varint.py /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aergoio/litetree/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aergoio/litetree/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aergoio/litetree/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aergoio/litetree/HEAD/appveyor.yml -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aergoio/litetree/HEAD/makefile -------------------------------------------------------------------------------- /shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aergoio/litetree/HEAD/shell.c -------------------------------------------------------------------------------- /sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aergoio/litetree/HEAD/sqlite3.c -------------------------------------------------------------------------------- /sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aergoio/litetree/HEAD/sqlite3.h -------------------------------------------------------------------------------- /sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aergoio/litetree/HEAD/sqlite3ext.h -------------------------------------------------------------------------------- /test/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aergoio/litetree/HEAD/test/benchmark.py -------------------------------------------------------------------------------- /test/convert-to-64bit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aergoio/litetree/HEAD/test/convert-to-64bit.py -------------------------------------------------------------------------------- /test/test-64bit-commit-ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aergoio/litetree/HEAD/test/test-64bit-commit-ids.py -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aergoio/litetree/HEAD/test/test.py -------------------------------------------------------------------------------- /test/varint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aergoio/litetree/HEAD/test/varint.py --------------------------------------------------------------------------------