Skip to content

Commit

Permalink
Update to v0.3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
tarrencev committed Nov 27, 2023
1 parent c9b36e0 commit 52920f5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Origami CI
on: [push, pull_request]

env:
DOJO_VERSION: v0.3.12
DOJO_VERSION: v0.3.13
SCARB_VERSION: v2.3.1

jobs:
Expand Down
4 changes: 2 additions & 2 deletions Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ source = "git+https://github.com/influenceth/cubit?rev=b459053#b4590530d5aeae9aa

[[package]]
name = "dojo"
version = "0.3.12"
source = "git+https://github.com/dojoengine/dojo?tag=v0.3.12#12d58f29ec53454317f1f6d265007a053d279288"
version = "0.3.13"
source = "git+https://github.com/dojoengine/dojo?tag=v0.3.13#a253b0c8119f5cc8b20f2f2893a20ae3ef79951a"
dependencies = [
"dojo_plugin",
]
Expand Down
2 changes: 1 addition & 1 deletion Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ authors = ["[email protected]"]

[workspace.dependencies]
cubit = { git = "https://github.com/influenceth/cubit", rev = "b459053" }
dojo = { git = "https://github.com/dojoengine/dojo", tag = "v0.3.12" }
dojo = { git = "https://github.com/dojoengine/dojo", tag = "v0.3.13" }
origami = { path = "crates" }
4 changes: 2 additions & 2 deletions examples/market/src/models/liquidity.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use starknet::ContractAddress;

// Dojo imports

use dojo::database::schema::{Struct, Ty, SchemaIntrospection, Member, serialize_member};
use dojo::database::introspect::{Struct, Ty, Introspect, Member, serialize_member};

// External imports

Expand All @@ -14,7 +14,7 @@ use cubit::f128::types::fixed::Fixed;

const SCALING_FACTOR: u128 = 10000;

impl SchemaIntrospectionFixed of SchemaIntrospection<Fixed> {
impl IntrospectFixed of Introspect<Fixed> {
#[inline(always)]
fn size() -> usize {
2
Expand Down

0 comments on commit 52920f5

Please sign in to comment.