Skip to content
This repository has been archived by the owner on Jan 8, 2025. It is now read-only.

Commit

Permalink
basically bump everything
Browse files Browse the repository at this point in the history
  • Loading branch information
feltroidprime committed Nov 7, 2024
1 parent 6988561 commit 437a5b2
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
scarb 2.8.3
starknet-foundry 0.31.0
scarb 2.8.4
starknet-foundry 0.33.0
8 changes: 4 additions & 4 deletions Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ dependencies = [

[[package]]
name = "snforge_scarb_plugin"
version = "0.31.0"
source = "git+https://github.com/foundry-rs/starknet-foundry.git?tag=v0.31.0#249f1e9960b7ee07d80e12b585ac57b644f9e4c0"
version = "0.33.0"
source = "git+https://github.com/foundry-rs/starknet-foundry.git?tag=v0.33.0#221b1dbff42d650e9855afd4283508da8f8cacba"

[[package]]
name = "snforge_std"
version = "0.31.0"
source = "git+https://github.com/foundry-rs/starknet-foundry.git?tag=v0.31.0#249f1e9960b7ee07d80e12b585ac57b644f9e4c0"
version = "0.33.0"
source = "git+https://github.com/foundry-rs/starknet-foundry.git?tag=v0.33.0#221b1dbff42d650e9855afd4283508da8f8cacba"
dependencies = [
"snforge_scarb_plugin",
]
Expand Down
4 changes: 2 additions & 2 deletions Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ members = ["crates/*"]
[workspace.package]
description = "Kakarot is an (zk)-Ethereum Virtual Machine implementation written in Cairo."
documentation = "https://www.kakarot.org/"
cairo-version = "2.8.2"
cairo-version = "2.8.4"
version = "0.1.0"
readme = "README.md"
repository = "https://github.com/kkrt-labs/kakarot-ssj/"
license-file = "LICENSE"

[workspace.dependencies]
starknet = "2.8.2"
starknet = "2.8.4"

[workspace.tool.fmt]
sort-module-level-items = true
4 changes: 2 additions & 2 deletions crates/alexandria_data_structures/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ version = "0.1.0"
[dependencies]

[dev-dependencies]
snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry.git", tag = "v0.31.0" }
assert_macros = "2.8.2"
snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry.git", tag = "v0.33.0" }
assert_macros = "2.8.4"

[scripts]
test = "snforge test --max-n-steps 4294967295"
Expand Down
4 changes: 2 additions & 2 deletions crates/contracts/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ build-external-contracts = ["openzeppelin::token::erc20::erc20::ERC20"]
name = "contracts"

[dev-dependencies]
snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry.git", tag = "v0.31.0" }
assert_macros = "2.8.2"
snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry.git", tag = "v0.33.0" }
assert_macros = "2.8.4"
snforge_utils = { path = "../snforge_utils" }

[scripts]
Expand Down
4 changes: 2 additions & 2 deletions crates/evm/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ openzeppelin = { path = "../openzeppelin" }
garaga = { git = "https://github.com/keep-starknet-strange/garaga.git", tag = "v0.14.0" }

[dev-dependencies]
snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry.git", tag = "v0.31.0" }
snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry.git", tag = "v0.33.0" }
snforge_utils = { path = "../snforge_utils" }
assert_macros = "2.8.2"
assert_macros = "2.8.4"

[tool]
fmt.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/openzeppelin/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ starknet.workspace = true
fmt.workspace = true

[dev-dependencies]
snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry.git", tag = "v0.31.0" }
assert_macros = "2.8.2"
snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry.git", tag = "v0.33.0" }
assert_macros = "2.8.4"

[scripts]
test = "snforge test --max-n-steps 4294967295"
Expand Down
6 changes: 3 additions & 3 deletions crates/snforge_utils/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ edition = "2024_07"
# See more keys and their definitions at https://docs.swmansion.com/scarb/docs/reference/manifest.html

[dependencies]
starknet = "2.8.2"
starknet = "2.8.4"
evm = { path = "../evm" }

[dev-dependencies]
snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry.git", tag = "v0.31.0" }
assert_macros = "2.8.2"
snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry.git", tag = "v0.33.0" }
assert_macros = "2.8.4"

[[target.starknet-contract]]
sierra = true
Expand Down
4 changes: 2 additions & 2 deletions crates/utils/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ unstable-add-statements-functions-debug-info = true
fmt.workspace = true

[dev-dependencies]
snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry.git", tag = "v0.31.0" }
assert_macros = "2.8.2"
snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry.git", tag = "v0.33.0" }
assert_macros = "2.8.4"

[scripts]
test = "snforge test --max-n-steps 4294967295"
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.81.0
1.82.0

0 comments on commit 437a5b2

Please sign in to comment.