Skip to content

Commit

Permalink
Merge pull request #98 from dojoengine/update-dojo-latest
Browse files Browse the repository at this point in the history
Update to dojo 0.4.5ish
  • Loading branch information
ponderingdemocritus authored Jan 12, 2024
2 parents 119493e + 3b3f463 commit f6d8ed4
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 12 deletions.
65 changes: 57 additions & 8 deletions packages/torii-wasm/crate/Cargo.lock

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

6 changes: 3 additions & 3 deletions packages/torii-wasm/crate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ tokio = { version = "1.32.0", default-features = false, features = ["rt"] }
url = "2.4.0"

# Dojo
dojo-types = { git = "https://github.com/dojoengine/dojo", tag = "v0.4.0" }
torii-client = { git = "https://github.com/dojoengine/dojo", tag = "v0.4.0" }
torii-grpc = { git = "https://github.com/dojoengine/dojo", tag = "v0.4.0" }
dojo-types = { git = "https://github.com/dojoengine/dojo", rev = "37f41d585f549013a73ca189034b0471f1e81731" }
torii-client = { git = "https://github.com/dojoengine/dojo", rev = "37f41d585f549013a73ca189034b0471f1e81731" }
torii-grpc = { git = "https://github.com/dojoengine/dojo", rev = "37f41d585f549013a73ca189034b0471f1e81731" }

# WASM
js-sys = "0.3.64"
Expand Down
2 changes: 1 addition & 1 deletion packages/torii-wasm/crate/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pub fn parse_entities_as_json_str(entities: Vec<Entity>) -> Value {
entities
.into_iter()
.map(|entity| {
let entity_key = format!("{:#x}", entity.key);
let entity_key = format!("{:#x}", entity.hashed_keys);
let models_map = entity
.models
.into_iter()
Expand Down

0 comments on commit f6d8ed4

Please sign in to comment.