diff --git a/Cargo.lock b/Cargo.lock index f8d8bef5..130907df 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1651,7 +1651,7 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" [[package]] name = "heimdall-cache" -version = "0.7.2" +version = "0.7.3" dependencies = [ "bincode", "clap", @@ -1662,7 +1662,7 @@ dependencies = [ [[package]] name = "heimdall-cli" -version = "0.7.2" +version = "0.7.3" dependencies = [ "backtrace", "clap", @@ -1681,7 +1681,7 @@ dependencies = [ [[package]] name = "heimdall-common" -version = "0.7.2" +version = "0.7.3" dependencies = [ "async-openai", "async-recursion", @@ -1708,7 +1708,7 @@ dependencies = [ [[package]] name = "heimdall-config" -version = "0.7.2" +version = "0.7.3" dependencies = [ "clap", "clap-verbosity-flag", @@ -1719,7 +1719,7 @@ dependencies = [ [[package]] name = "heimdall-core" -version = "0.7.2" +version = "0.7.3" dependencies = [ "async-convert", "async-recursion", diff --git a/Cargo.toml b/Cargo.toml index 31428caa..e81f16c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,4 +5,4 @@ members = [ "core", "cli", ] -version = "0.7.2" +version = "0.7.3" diff --git a/cache/Cargo.toml b/cache/Cargo.toml index fc528f35..6f5a1316 100644 --- a/cache/Cargo.toml +++ b/cache/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heimdall-cache" -version = "0.7.2" +version = "0.7.3" edition = "2021" license = "MIT" readme = "README.md" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index d07415b4..0cd5ab25 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heimdall-cli" -version = "0.7.2" +version = "0.7.3" edition = "2021" license = "MIT" readme = "README.md" diff --git a/common/Cargo.toml b/common/Cargo.toml index 3ef725a7..7c2ccf96 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -5,7 +5,7 @@ keywords = ["ethereum", "web3", "decompiler", "evm", "crypto"] license = "MIT" name = "heimdall-common" readme = "README.md" -version = "0.7.2" +version = "0.7.3" [dependencies] async-openai = "0.10.0" diff --git a/config/Cargo.toml b/config/Cargo.toml index ef1ff3cc..7c45b074 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heimdall-config" -version = "0.7.2" +version = "0.7.3" edition = "2021" license = "MIT" readme = "README.md" diff --git a/core/Cargo.toml b/core/Cargo.toml index ae21b5f4..0abfea1b 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -5,7 +5,7 @@ keywords = ["ethereum", "web3", "decompiler", "evm", "crypto"] license = "MIT" name = "heimdall-core" readme = "README.md" -version = "0.7.2" +version = "0.7.3" [dependencies] async-recursion = "1.0.5" diff --git a/examples/Cargo.toml b/examples/Cargo.toml index e96faad3..12cc8e52 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -8,4 +8,4 @@ members = [ "disassemble", "inspect" ] -version = "0.7.2" +version = "0.7.3" diff --git a/examples/cfg/Cargo.toml b/examples/cfg/Cargo.toml index 5c7795cf..377a5927 100644 --- a/examples/cfg/Cargo.toml +++ b/examples/cfg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heimdall-rs-cfg-example" -version = "0.7.2" +version = "0.7.3" edition = "2021" description = "Heimdall is an advanced Ethereum smart contract toolkit for forensic and heuristic analysis." keywords = ["ethereum", "web3", "decompiler", "evm", "crypto"] diff --git a/examples/decode/Cargo.toml b/examples/decode/Cargo.toml index d52c9268..928cdf31 100644 --- a/examples/decode/Cargo.toml +++ b/examples/decode/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heimdall-rs-decode-example" -version = "0.7.2" +version = "0.7.3" edition = "2021" description = "Heimdall is an advanced Ethereum smart contract toolkit for forensic and heuristic analysis." keywords = ["ethereum", "web3", "decompiler", "evm", "crypto"] diff --git a/examples/decompile/Cargo.toml b/examples/decompile/Cargo.toml index 7a21c802..385bd45f 100644 --- a/examples/decompile/Cargo.toml +++ b/examples/decompile/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heimdall-rs-decompile-example" -version = "0.7.2" +version = "0.7.3" edition = "2021" description = "Heimdall is an advanced Ethereum smart contract toolkit for forensic and heuristic analysis." keywords = ["ethereum", "web3", "decompiler", "evm", "crypto"] diff --git a/examples/disassemble/Cargo.toml b/examples/disassemble/Cargo.toml index c9082ede..412f6229 100644 --- a/examples/disassemble/Cargo.toml +++ b/examples/disassemble/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heimdall-rs-disassemble-example" -version = "0.7.2" +version = "0.7.3" edition = "2021" description = "Heimdall is an advanced Ethereum smart contract toolkit for forensic and heuristic analysis." keywords = ["ethereum", "web3", "decompiler", "evm", "crypto"] diff --git a/examples/dump/Cargo.toml b/examples/dump/Cargo.toml index f7c37d3e..6ff3cb58 100644 --- a/examples/dump/Cargo.toml +++ b/examples/dump/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heimdall-rs-dump-example" -version = "0.7.2" +version = "0.7.3" edition = "2021" description = "Heimdall is an advanced Ethereum smart contract toolkit for forensic and heuristic analysis." keywords = ["ethereum", "web3", "decompiler", "evm", "crypto"] diff --git a/examples/inspect/Cargo.toml b/examples/inspect/Cargo.toml index f536adac..0a93251a 100644 --- a/examples/inspect/Cargo.toml +++ b/examples/inspect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heimdall-rs-inspect-example" -version = "0.7.2" +version = "0.7.3" edition = "2021" description = "Heimdall is an advanced Ethereum smart contract toolkit for forensic and heuristic analysis." keywords = ["ethereum", "web3", "decompiler", "evm", "crypto"] diff --git a/examples/snapshot/Cargo.toml b/examples/snapshot/Cargo.toml index bb18573c..ef005aa3 100644 --- a/examples/snapshot/Cargo.toml +++ b/examples/snapshot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heimdall-rs-snapshot-example" -version = "0.7.2" +version = "0.7.3" edition = "2021" description = "Heimdall is an advanced Ethereum smart contract toolkit for forensic and heuristic analysis." keywords = ["ethereum", "web3", "decompiler", "evm", "crypto"]