From 091ab3aaba182dbee425802d356e27ad8924c2b1 Mon Sep 17 00:00:00 2001 From: Harald Fernengel <547273+haraldF@users.noreply.github.com> Date: Mon, 22 Apr 2024 19:36:53 +0200 Subject: [PATCH] Bump version --- CMakeLists.txt | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 863cafb..3476cc5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ add_subdirectory(external) set(EXTRA_LIBRARIES) if (EMSCRIPTEN) - set(EXTRA_LIBRARIES "-lnodefs.js") + set(EXTRA_LIBRARIES "-lnodefs.js -lnoderawfs.js") endif() add_executable(ldbdump main.cpp) @@ -17,6 +17,6 @@ if (EMSCRIPTEN) # ALLOW_MEMORY_GROWTH is required to have dynamic memory growth # EXIT_RUNTIME is required to flush stdout/stderr at exit set_target_properties(ldbdump PROPERTIES - LINK_FLAGS "-s ALLOW_MEMORY_GROWTH=1 -s EXIT_RUNTIME=1" + LINK_FLAGS "-s ALLOW_MEMORY_GROWTH=1 -s EXIT_RUNTIME=1 -s WASM_MEM_MAX=2GB" ) endif() diff --git a/package.json b/package.json index 0625322..01d926f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ldbdump", - "version": "1.0.2", + "version": "1.0.3", "description": "Utility to dump keys/values from LevelDB databases", "bin": "./ldbdump", "keywords": [ "leveldb", "database", "dumper", "introspect" ],