Skip to content

Commit

Permalink
feat(engine): update dependencies to version 0.7.5 and add calamine s…
Browse files Browse the repository at this point in the history
…upport (#798)

* feat(engine): update dependencies to version 0.7.5 and add calamine support

* feat(engine): refactor attribute handling and add state management for records
  • Loading branch information
miseyu authored Jan 24, 2025
1 parent 16a6ebf commit 6475a0e
Show file tree
Hide file tree
Showing 5 changed files with 315 additions and 10 deletions.
47 changes: 41 additions & 6 deletions engine/Cargo.lock

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

9 changes: 5 additions & 4 deletions engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ reearth-flow-storage = { path = "runtime/storage" }
reearth-flow-telemetry = { path = "runtime/telemetry" }
reearth-flow-types = { path = "runtime/types" }

nusamai-citygml = { git = "https://github.com/reearth/plateau-gis-converter", tag = "v0.7.4", features = ["serde", "serde_json"] }
nusamai-gltf = { git = "https://github.com/reearth/plateau-gis-converter", tag = "v0.7.4" }
nusamai-plateau = { git = "https://github.com/reearth/plateau-gis-converter", tag = "v0.7.4", features = ["serde"] }
nusamai-projection = { git = "https://github.com/reearth/plateau-gis-converter", tag = "v0.7.4" }
nusamai-citygml = { git = "https://github.com/reearth/plateau-gis-converter", tag = "v0.7.5", features = ["serde", "serde_json"] }
nusamai-gltf = { git = "https://github.com/reearth/plateau-gis-converter", tag = "v0.7.5" }
nusamai-plateau = { git = "https://github.com/reearth/plateau-gis-converter", tag = "v0.7.5", features = ["serde"] }
nusamai-projection = { git = "https://github.com/reearth/plateau-gis-converter", tag = "v0.7.5" }

Inflector = "0.11.4"
ahash = "0.8.11"
Expand All @@ -82,6 +82,7 @@ bincode = { version = "2.0.0-rc.3", default-features = false, features = ["serde
bytemuck = { version = "1.21.0", features = ["derive"] }
byteorder = "1.5.0"
bytes = { version = "1.9.0", features = ["serde"] }
calamine = "0.26.1"
cesiumtiles = { git = "https://github.com/MIERUNE/cesiumtiles-rs.git" }
chrono = { version = "0.4.39", features = ["serde"] }
clap = { version = "4.5.27", features = ["env", "string"] }
Expand Down
2 changes: 2 additions & 0 deletions engine/runtime/action-plateau-processor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ nusamai-projection.workspace = true

approx.workspace = true
async-trait.workspace = true
bytes.workspace = true
calamine.workspace = true
chrono.workspace = true
itertools.workspace = true
num-traits.workspace = true
Expand Down
1 change: 1 addition & 0 deletions engine/runtime/action-plateau-processor/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
pub mod mapping;
pub(crate) mod object_list;
pub mod plateau3;
pub mod plateau4;
pub(crate) mod types;
Loading

0 comments on commit 6475a0e

Please sign in to comment.