Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
haraldF committed Apr 22, 2024
1 parent 18ef86c commit 091ab3a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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()
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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" ],
Expand Down

0 comments on commit 091ab3a

Please sign in to comment.