Skip to content

Commit

Permalink
Update to dojo 0.4.5ish
Browse files Browse the repository at this point in the history
  • Loading branch information
broody committed Jan 9, 2024
1 parent 2f70adf commit 907b909
Show file tree
Hide file tree
Showing 6 changed files with 130 additions and 85 deletions.
Empty file modified packages/create-dojo/bin/index.d.ts
100644 → 100755
Empty file.
140 changes: 68 additions & 72 deletions packages/create-dojo/bin/index.js

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

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 @@ -7,7 +7,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 907b909

Please sign in to comment.