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
// SPDX-License-Identifier: MIT
// Copyright 2023 IROX Contributors

#![forbid(unsafe_code)]

#[cfg(feature = "bits")]
pub extern crate irox_bits;
#[cfg(feature = "bits")]
pub use irox_bits as bits;

#[cfg(feature = "build")]
pub extern crate irox_build_rs;
#[cfg(feature = "build")]
pub use irox_build_rs as build;

#[cfg(feature = "carto")]
pub extern crate irox_carto;
#[cfg(feature = "carto")]
pub use irox_carto as carto;

#[cfg(feature = "csv")]
pub extern crate irox_csv;
#[cfg(feature = "csv")]
pub use irox_csv as csv;

#[cfg(feature = "egui-extras")]
pub extern crate irox_egui_extras;
#[cfg(feature = "egui-extras")]
pub use irox_egui_extras as egui_extras;

#[cfg(feature = "enums")]
pub extern crate irox_enums;
#[cfg(feature = "enums")]
pub use irox_enums as enums;

#[cfg(feature = "enums_derive")]
pub use irox_enums_derive;

#[cfg(feature = "git-tools")]
pub extern crate irox_git_tools;
#[cfg(feature = "git-tools")]
pub use irox_git_tools as git_tools;

#[cfg(feature = "gpx")]
pub extern crate irox_gpx;
#[cfg(feature = "gpx")]
pub use irox_gpx as gpx;

#[cfg(feature = "influxdb_v1")]
pub extern crate irox_influxdb_v1;
#[cfg(feature = "influxdb_v1")]
pub use irox_influxdb_v1 as influxdb_v1;

#[cfg(feature = "log")]
pub extern crate irox_log;
#[cfg(feature = "log")]
pub use irox_log as log;

#[cfg(feature = "networking")]
pub extern crate irox_networking;
#[cfg(feature = "networking")]
pub use irox_networking as networking;

#[cfg(feature = "nmea0183")]
pub extern crate irox_nmea0183;
#[cfg(feature = "nmea0183")]
pub use irox_nmea0183 as nmea0183;

#[cfg(feature = "progress")]
pub extern crate irox_progress;
#[cfg(feature = "progress")]
pub use irox_progress as progress;

#[cfg(feature = "raymarine-sonar")]
pub extern crate irox_raymarine_sonar;
#[cfg(feature = "raymarine-sonar")]
pub use irox_raymarine_sonar as raymarine_sonar;

#[cfg(feature = "sirf")]
pub extern crate irox_sirf;
#[cfg(feature = "sirf")]
pub use irox_sirf as sirf;

#[cfg(feature = "stats")]
pub extern crate irox_stats;
#[cfg(feature = "stats")]
pub use irox_stats as stats;

#[cfg(feature = "structs")]
pub extern crate irox_structs;
#[cfg(feature = "structs")]
pub use irox_structs as structs;

#[cfg(feature = "structs_derive")]
pub use irox_structs_derive;

#[cfg(feature = "threading")]
pub extern crate irox_threading;
#[cfg(feature = "threading")]
pub use irox_threading as threading;

#[cfg(feature = "time")]
pub extern crate irox_time;
#[cfg(feature = "time")]
pub use irox_time as time;

#[cfg(feature = "tools")]
pub extern crate irox_tools;
#[cfg(feature = "tools")]
pub use irox_tools as tools;

#[cfg(feature = "types")]
pub extern crate irox_types;
#[cfg(feature = "types")]
pub use irox_types as types;

#[cfg(feature = "units")]
pub extern crate irox_units;
#[cfg(feature = "units")]
pub use irox_units as units;

#[cfg(feature = "win-loc-api")]
pub extern crate irox_winlocation_api;
#[cfg(feature = "win-loc-api")]
pub use irox_winlocation_api as winlocation_api;