-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
38 lines (30 loc) · 942 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[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" }