Files
mercator/Cargo.toml
Lionel Sambuc e75debc2fb 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
2020-01-21 11:21:38 +01:00

39 lines
940 B
TOML

[workspace]
members = [
# Binaries
"mercator_service",
# Specific to mercator
"mercator_parser",
"mercator_db",
# Generic Interfaces
"ironsea_index",
"ironsea_store",
# Specific implementations
"ironsea_index_hashmap",
"ironsea_index_sfc_dbc",
#"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" }
mercator_parser = { path = "mercator_parser" }
ironsea_index = { path = "ironsea_index" }
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" }