Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge develop #23

Merged
merged 2 commits into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.24)
project(dice-sparse-map
VERSION 0.2.8
VERSION 0.2.9
DESCRIPTION "C++ implementation of a memory efficient hash map and hash set based on [tsl::sparse_map](https://github.com/Tessil/sparse-map). We added support for fancy pointers.")
set(POBR_VERSION 1) # Persisted Object Binary Representation Version

Expand Down
2 changes: 0 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ class Recipe(ConanFile):
topics = "c++20", "hash-map", "data-structures", "header-only", "hash-table"
settings = "os", "compiler", "build_type", "arch"
exports_sources = "include/*", "CMakeLists.txt", "cmake/*", "LICENSE*"
package_type = "header-library"
generators = "CMakeDeps", "CMakeToolchain"
no_copy_source = True
options = {
"with_test_deps": [True, False],
}
Expand Down
Loading