aboutsummaryrefslogtreecommitdiff
path: root/project.conf
diff options
context:
space:
mode:
authordec05eba <0xdec05eba@gmail.com>2018-05-14 00:20:11 +0200
committerdec05eba <0xdec05eba@gmail.com>2018-05-14 00:27:29 +0200
commit9af086151e6d9d3fe88f9e3e21797812a3e701ba (patch)
treea11889f81b8f929c11dccbd2c1c3b3cd74fbb740 /project.conf
parentebff7aeafded4dd9d245dbcfc80d9c8d83fe1242 (diff)
Replace files with sqlite
Using sqlite because sqlite has transactions, storing/loading from files automatically, unloading data that is not accessed often. Removed cosmetic data (node name, username). They can be added using addData by the application that uses odhtdb instead. Database callback functions can now be called with stored data using database.loadNode function. TODO: Add local user storage (with password) back, it has been temorary disabled
Diffstat (limited to 'project.conf')
-rw-r--r--project.conf3
1 files changed, 2 insertions, 1 deletions
diff --git a/project.conf b/project.conf
index c878112..c51f4a7 100644
--- a/project.conf
+++ b/project.conf
@@ -1,6 +1,6 @@
[package]
name = "odhtdb"
-version = "0.0.1"
+version = "0.0.2"
type = "library"
platforms = ["linux32", "linux64"]
tests = "tests"
@@ -16,3 +16,4 @@ sibs-serializer = "0.2.1"
boost-filesystem = "1.66.0"
boost-uuid = "1.66.0"
argon2 = "2017.12.27"
+sqlite3 = "3.0.0"