Dependencies updates, new features, code cleanup

* Removed unused local crates ironsea_store_*
 * Updated dependencies
 * Added whenever possible '#![forbid(unsafe_code)]' annotations
 * Added support for MeshViewer XYZ format
 * Improved JSON efficiency by making more succinct.
 * Code cleanup to reduce the number of clippy warnings
This commit is contained in:
2020-01-21 11:21:38 +01:00
parent 2629310330
commit e75debc2fb
14 changed files with 310 additions and 330 deletions

606
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -15,13 +15,14 @@ members = [
# Specific implementations
"ironsea_index_hashmap",
"ironsea_index_sfc_dbc",
"ironsea_store_buffered_file",
"ironsea_store_file",
"ironsea_store_mapped_file",
#"ironsea_store_buffered_file",
#"ironsea_store_file",
#"ironsea_store_mapped_file",
]
[profile.release]
lto = true
#debug = true
[patch.crates-io]
mercator_db = { path = "mercator_db" }
@@ -32,6 +33,6 @@ ironsea_store = { path = "ironsea_store" }
ironsea_index_hashmap = { path = "ironsea_index_hashmap" }
ironsea_index_sfc_dbc = { path = "ironsea_index_sfc_dbc" }
ironsea_store_buffered_file = { path = "ironsea_store_buffered_file" }
ironsea_store_file = { path = "ironsea_store_file" }
ironsea_store_mapped_file = { path = "ironsea_store_mapped_file" }
#ironsea_store_buffered_file = { path = "ironsea_store_buffered_file" }
#ironsea_store_file = { path = "ironsea_store_file" }
#ironsea_store_mapped_file = { path = "ironsea_store_mapped_file" }