Compare commits

..

3 Commits

Author SHA1 Message Date
xermicus 471e4b7263 bump PVM
Signed-off-by: xermicus <cyrill@parity.io>
2025-02-13 09:19:58 +01:00
xermicus 079e5c1cc4 switch polkadot-sdk branch to disable validation in the runner
Signed-off-by: xermicus <cyrill@parity.io>
2025-02-13 08:35:46 +01:00
xermicus f3a86588f3 update dependencies (#210)
Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
2025-02-12 13:12:09 +01:00
2 changed files with 755 additions and 627 deletions
Generated
+741 -613
View File
File diff suppressed because it is too large Load Diff
+14 -14
View File
@@ -29,16 +29,16 @@ revive-stdlib = { version = "0.1.0-dev.10", path = "crates/stdlib" }
revive-build-utils = { version = "0.1.0-dev.10", path = "crates/build-utils" } revive-build-utils = { version = "0.1.0-dev.10", path = "crates/build-utils" }
hex = "0.4.3" hex = "0.4.3"
cc = "1.0" cc = "1.2"
libc = "0.2.169" libc = "0.2.169"
tempfile = "3.8" tempfile = "3.16"
anyhow = "1.0" anyhow = "1.0"
semver = { version = "1.0", features = ["serde"] } semver = { version = "1.0", features = ["serde"] }
itertools = "0.14" itertools = "0.14"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["arbitrary_precision"] } serde_json = { version = "1.0", features = ["arbitrary_precision"] }
regex = "1.10" regex = "1.10"
once_cell = "1.19" once_cell = "1.20"
num = "0.4.3" num = "0.4.3"
sha1 = "0.10" sha1 = "0.10"
sha3 = "0.10" sha3 = "0.10"
@@ -47,12 +47,12 @@ which = "7.0"
path-slash = "0.2" path-slash = "0.2"
rayon = "1.8" rayon = "1.8"
clap = { version = "4", default-features = false, features = ["derive"] } clap = { version = "4", default-features = false, features = ["derive"] }
polkavm-common = "0.19.0" polkavm-common = "0.21.0"
polkavm-linker = "0.19.0" polkavm-linker = "0.21.0"
polkavm-disassembler = "0.19.0" polkavm-disassembler = "0.21.0"
polkavm = "0.19.0" polkavm = "0.21.0"
alloy-primitives = { version = "0.8.19", features = ["serde"] } alloy-primitives = { version = "0.8.21", features = ["serde"] }
alloy-sol-types = "0.8.19" alloy-sol-types = "0.8.21"
alloy-genesis = "0.11.0" alloy-genesis = "0.11.0"
alloy-serde = "0.11.0" alloy-serde = "0.11.0"
env_logger = { version = "0.11.6", default-features = false } env_logger = { version = "0.11.6", default-features = false }
@@ -64,15 +64,15 @@ downloader = "0.2.8"
flate2 = "1.0.35" flate2 = "1.0.35"
fs_extra = "1.3.0" fs_extra = "1.3.0"
num_cpus = "1" num_cpus = "1"
tar = "0.4.43" tar = "0.4"
toml = "0.8.19" toml = "0.8"
assert_cmd = "2.0.16" assert_cmd = "2.0"
assert_fs = "1.1.2" assert_fs = "1.1"
# polkadot-sdk and friends # polkadot-sdk and friends
codec = { version = "3.6.12", default-features = false, package = "parity-scale-codec" } codec = { version = "3.6.12", default-features = false, package = "parity-scale-codec" }
scale-info = { version = "2.11.6", default-features = false } scale-info = { version = "2.11.6", default-features = false }
polkadot-sdk = { git = "https://github.com/paritytech/polkadot-sdk", rev = "274a781e8ca1a9432c7ec87593bd93214abbff50" } polkadot-sdk = { git = "https://github.com/paritytech/polkadot-sdk", branch = "at/disable-validation" }
# llvm # llvm
[workspace.dependencies.inkwell] [workspace.dependencies.inkwell]