-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
251 lines (239 loc) · 8.43 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Sean P. Madden <[email protected]>"]
homepage = "https://github.com/spmadden/irox"
license = "MIT OR Apache-2.0"
exclude = ["doc"]
readme = "README.md"
repository = "https://github.com/spmadden/irox"
[workspace]
resolver = "2"
members = [
"irox",
"data-formats/cargo-metadata",
"data-formats/csv",
"data-formats/dot",
"data-formats/gpx",
"data-formats/nmea0183",
"data-formats/raymarine-sonar",
"data-formats/sirf",
"eieio/api",
"eieio/nmea0183",
"interfaces/influxdb_v1",
"interfaces/win-location-api",
"libraries/app-helpers",
"libraries/bits",
"libraries/build-rs",
"libraries/carto",
"libraries/compression",
"libraries/cryptids",
"libraries/derive-helpers",
"libraries/egui_extras",
"libraries/enums",
"libraries/enums_derive",
"libraries/fixedmath",
"libraries/git-tools",
"libraries/imagery",
"libraries/log",
"libraries/metrics",
"libraries/mbtiles",
"libraries/network",
"libraries/progress",
"libraries/stats",
"libraries/units",
"libraries/structs",
"libraries/structs_derive",
"libraries/time",
"libraries/threading",
"libraries/tools",
"libraries/types",
"tools/gpsd",
"tools/halflifes",
"tools/influx-cli",
"tools/sonar-sdf-convert",
"tools/tiledownloader",
]
[workspace.dependencies]
egui = { version = "^0.30", default-features = false }
eframe = { version = "^0.30", default-features = false }
emath = { version = "^0.30", default-features = false }
profiling = {version = "^1.0", features = ["profile-with-puffin"]}
puffin = { version = "^0.19", features = [] }
puffin_http = { version = "^0.16", features = [] }
ron = { version = "^0.8", features = ["integer128"] }
serde = { version = "^1.0.217", features = ["derive"] }
serde_json = { version = "^1.0", features = [] }
ureq = { version = "^2.12", features = ["brotli", "native-certs", "socks-proxy", "cookies"] }
url = { version = "^2.5", features = [] }
clap = { version = "^4.5", features = ["derive", "wrap_help", "string", "cargo", "env"] }
clap-verbosity-flag = { version = "^3.0" }
log = { version = "^0.4", features = [] }
env_logger = { version = "^0.11", features = [] }
syn = { version = "^2.0", features = ["extra-traits"] }
quote = { version = "^1.0", features = [] }
signal-hook = { version = "^0.3", features = [] }
windows = { version = "^0.58", features = ["Devices_Geolocation", "Foundation"] }
rusqlite = { version = "^0.32", features = ["bundled", "bundled-windows"] }
miniz_oxide = { version = "^0.8", features = [] }
xml = { version = "^0.8", features = [] }
human-panic = { version = "^2.0", features = [] }
num_cpus = { version = "1.16.0", features = [] }
git2 = { version = "0.19.0", features = ["vendored-openssl", "vendored-libgit2"] }
wasm-bindgen-futures = "0.4"
criterion = "0.5"
core_affinity = "0.8.1"
toml = "0.8.19"
irox-cargo-metadata = {version = "^0", path = "data-formats/cargo-metadata"}
irox-csv = { version = "^0", path = "data-formats/csv" }
irox-dot = {version = "^0", path = "data-formats/dot"}
irox-gpx = { version = "^0", path = "data-formats/gpx" }
irox-nmea0183 = { version = "^0", path = "data-formats/nmea0183" }
irox-raymarine-sonar = { version = "^0", path = "data-formats/raymarine-sonar" }
irox-sirf = { version = "^0", path = "data-formats/sirf" }
irox-eieio-api = { version = "^0", path = "eieio/api" }
irox-eieio-nmea0183 = { version = "^0", path = "eieio/nmea0183" }
irox-influxdb_v1 = { version = "^0", path = "interfaces/influxdb_v1" }
irox-winlocation-api = { version = "^0", path = "interfaces/win-location-api" }
irox-app-helpers = { version = "^0", path = "libraries/app-helpers" }
irox-bits = { version = "^0", path = "libraries/bits" }
irox-build-rs = { version = "^0", path = "libraries/build-rs", features = ["git"] }
irox-carto = { version = "^0", path = "libraries/carto" }
irox-compression = { version = "^0", path = "libraries/compression" }
irox-cryptids = { version = "^0", path = "libraries/cryptids" }
irox-derive-helpers = { version = "^0", path = "libraries/derive-helpers" }
irox-egui-extras = { version = "^0", path = "libraries/egui_extras" }
irox-enums = { version = "^0", path = "libraries/enums" }
irox-enums_derive = { version = "^0", path = "libraries/enums_derive" }
irox-fixedmath = {version = "^0", path = "libraries/fixedmath"}
irox-git-tools = { version = "^0", path = "libraries/git-tools" }
irox-imagery = {version = "^0", path = "libraries/imagery"}
irox-log = { version = "^0", path = "libraries/log" }
irox-metrics = {version = "^0", path = "libraries/metrics"}
irox-mbtiles = { version = "^0", path = "libraries/mbtiles" }
irox-networking = { version = "^0", path = "libraries/network" }
irox-progress = { version = "^0", path = "libraries/progress" }
irox-stats = { version = "^0", path = "libraries/stats" }
irox-structs = { version = "^0", path = "libraries/structs" }
irox-structs_derive = { version = "^0", path = "libraries/structs_derive" }
irox-threading = { version = "^0", path = "libraries/threading" }
irox-time = { version = "^0", path = "libraries/time" }
irox-tools = { version = "^0", path = "libraries/tools" }
irox-types = { version = "^0", path = "libraries/types" }
irox-units = { version = "^0", path = "libraries/units" }
[profile.test]
# opt-level = 1
# Lints last updated for Rust 1.82.0
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.rustdoc]
broken_intra_doc_links = "warn"
private_intra_doc_links = "warn"
missing_crate_level_docs = "allow"
invalid_codeblock_attributes = "warn"
invalid_html_tags = "warn"
invalid_rust_codeblocks = "warn"
bare_urls = "warn"
unescaped_backticks = "warn"
redundant_explicit_links = "warn"
[workspace.lints.clippy]
cargo_common_metadata = "warn"
case_sensitive_file_extension_comparisons = "warn"
create_dir = "warn"
dbg_macro = "warn"
doc_link_with_quotes = "warn"
empty_enum = "warn"
empty_structs_with_brackets = "warn"
enum_glob_use = "warn"
exit = "warn"
expect_used = "warn"
expl_impl_clone_on_copy = "warn"
explicit_into_iter_loop = "warn"
explicit_iter_loop = "warn"
filter_map_next = "warn"
flat_map_option = "warn"
float_cmp = "warn"
fn_params_excessive_bools = "warn"
format_push_string = "warn"
from_iter_instead_of_collect = "warn"
get_unwrap = "warn"
if_then_some_else_none = "warn"
ignored_unit_patterns = "warn"
impl_trait_in_params = "warn"
implicit_clone = "warn"
implicit_hasher = "warn"
index_refutable_slice = "warn"
indexing_slicing = "warn"
inefficient_to_string = "warn"
infinite_loop = "warn"
iter_filter_is_ok = "warn"
iter_filter_is_some = "warn"
iter_not_returning_iterator = "warn"
large_futures = "warn"
large_stack_arrays = "warn"
large_types_passed_by_value = "warn"
linkedlist = "warn"
lossy_float_literal = "warn"
manual_assert = "warn"
manual_instant_elapsed = "warn"
manual_is_variant_and = "warn"
manual_let_else = "warn"
manual_ok_or = "warn"
manual_string_new = "warn"
match_on_vec_items = "warn"
match_same_arms = "warn"
match_wild_err_arm = "warn"
mem_forget = "warn"
mismatching_type_param_order = "warn"
missing_assert_message = "warn"
missing_enforced_import_renames = "warn"
missing_panics_doc = "warn"
mixed_read_write_in_expression = "warn"
mut_mut = "warn"
mutex_atomic = "warn"
needless_for_each = "warn"
needless_pass_by_value = "warn"
no_mangle_with_rust_abi = "warn"
non_ascii_literal = "warn"
option_as_ref_cloned = "warn"
option_option = "warn"
panic = "warn"
panic_in_result_fn = "warn"
pathbuf_init_then_push = "warn"
print_stderr = "warn"
print_stdout = "warn"
pub_underscore_fields = "warn"
range_minus_one = "warn"
range_plus_one = "warn"
rc_buffer = "warn"
rc_mutex = "warn"
redundant_closure_for_method_calls = "warn"
redundant_else = "warn"
redundant_feature_names = "warn"
ref_as_ptr = "warn"
ref_option_ref = "warn"
return_self_not_must_use = "warn"
same_functions_in_if_condition = "warn"
semicolon_if_nothing_returned = "warn"
str_split_at_newline = "warn"
tests_outside_test_module = "warn"
trivially_copy_pass_by_ref = "warn"
unchecked_duration_subtraction = "warn"
undocumented_unsafe_blocks = "warn"
unimplemented = "warn"
uninlined_format_args = "warn"
unnecessary_box_returns = "warn"
unnecessary_join = "warn"
unnecessary_wraps = "warn"
unreachable = "warn"
unused_async = "warn"
unused_result_ok = "warn"
unused_self = "warn"
unwrap_in_result = "warn"
unwrap_used = "warn"
verbose_file_reads = "warn"
wildcard_dependencies = "warn"
zero_sized_map_values = "warn"
missing_errors_doc = "allow"
module-name-repetitions = "allow"
semicolon-if-nothing-returned = "allow"