Skip to content

Commit

Permalink
fix(irox): add a bunch of missing features to main module
Browse files Browse the repository at this point in the history
  • Loading branch information
spmadden committed Dec 31, 2024
1 parent 7957bd7 commit ddc6246
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 14 additions & 6 deletions irox/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ workspace = true

[features]
default = []
bits = ["dep:irox-bits"]
bits = ["dep:irox-bits", "irox-types?/bits"]
csv = ["dep:irox-csv"]
dot = ["dep:irox-dot"]
gpx = ["dep:irox-gpx"]
Expand All @@ -36,6 +36,7 @@ enums = ["dep:irox-enums"]
enums_derive = ["dep:irox-enums_derive"]
fixedmath = ["dep:irox-fixedmath"]
git-tools = ["dep:irox-git-tools"]
imagery = ["dep:irox-imagery"]
log = ["dep:irox-log"]
networking = ["dep:irox-networking"]
progress = ["dep:irox-progress"]
Expand All @@ -48,11 +49,17 @@ tools = ["dep:irox-tools"]
types = ["dep:irox-types"]
units = ["dep:irox-units"]

std = ["irox-bits?/std", "irox-time?/std", "irox-tools?/std", "irox-units?/std"]
alloc = ["irox-bits?/alloc", "irox-structs?/alloc", "irox-tools?/alloc"]
std = ["irox-bits?/std", "irox-carto?/std", "irox-imagery?/std", "irox-networking?/std", "irox-stats?/std", "irox-time?/std", "irox-tools?/std", "irox-units?/std"]
alloc = ["irox-bits?/alloc", "irox-structs?/alloc", "irox-tools?/alloc", "irox-units?/alloc"]
egui = ["irox-egui-extras?/plots", "irox-progress?/egui"]
emath = ["irox-stats?/emath"]
git = ["irox-build-rs?/git"]
miniz = ["irox-stats?/miniz"]
num_cpus = ["irox-threading?/num_cpus"]
plots = ["irox-egui-extras?/plots"]
profiling = ["irox-egui-extras?/profiling"]
serde = ["irox-egui-extras?/serde", "irox-networking?/serde"]
syn = ["irox-types?/syn"]


[dependencies]
Expand All @@ -66,15 +73,16 @@ irox-sirf = { version = "^0.4.0", optional = true, path = "../data-formats/sirf"
irox-influxdb_v1 = { version = "^0.6.0", optional = true, path = "../interfaces/influxdb_v1" }
irox-winlocation-api = { version = "^0.5.0", optional = true, path = "../interfaces/win-location-api" }

irox-bits = {version = "^0.3.0", optional = true, path = "../libraries/bits"}
irox-build-rs = { version = "^0.2.0", optional = true, path = "../libraries/build-rs"}
irox-bits = { version = "^0.3.0", optional = true, path = "../libraries/bits" }
irox-build-rs = { version = "^0.2.0", optional = true, path = "../libraries/build-rs" }
irox-carto = { version = "^0.6.0", optional = true, path = "../libraries/carto" }
irox-derive-helpers = { version = "^0.1.0", optional = true, path = "../libraries/derive-helpers"}
irox-derive-helpers = { version = "^0.1.0", optional = true, path = "../libraries/derive-helpers" }
irox-egui-extras = { version = "^0.5.0", optional = true, path = "../libraries/egui_extras" }
irox-enums = { version = "^0.2.1", optional = true, path = "../libraries/enums" }
irox-enums_derive = { version = "^0.2.1", optional = true, path = "../libraries/enums_derive" }
irox-fixedmath = { version = "^0.1.0", optional = true, path = "../libraries/fixedmath" }
irox-git-tools = { version = "^0.2.0", optional = true, path = "../libraries/git-tools" }
irox-imagery = { version = "0.1.1", optional = true, path = "../libraries/imagery" }
irox-log = { version = "^0.2.0", optional = true, path = "../libraries/log" }
irox-networking = { version = "^0.4.1", optional = true, path = "../libraries/network" }
irox-progress = { version = "^0.4.0", optional = true, path = "../libraries/progress" }
Expand Down

0 comments on commit ddc6246

Please sign in to comment.