Skip to content
This repository has been archived by the owner on Oct 28, 2021. It is now read-only.

Commit

Permalink
Upgrade EVMC
Browse files Browse the repository at this point in the history
  • Loading branch information
chfast committed Aug 6, 2019
1 parent 55e0fb0 commit 78af907
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evmc
Submodule evmc updated 68 files
+15 −5 .bumpversion.cfg
+50 −0 CHANGELOG.md
+21 −18 CMakeLists.txt
+2 −0 Cargo.toml
+1 −1 Doxyfile
+10 −9 README.md
+19 −16 appveyor.yml
+1 −1 bindings/go/evmc/evmc_test.go
+0 −7 bindings/go/evmc/host.c
+5 −12 bindings/go/evmc/host.go
+25 −2 bindings/go/evmc/host_test.go
+3 −0 bindings/rust/evmc-declare-tests/.gitignore
+18 −0 bindings/rust/evmc-declare-tests/Cargo.toml
+29 −0 bindings/rust/evmc-declare-tests/src/lib.rs
+3 −0 bindings/rust/evmc-declare/.gitignore
+27 −0 bindings/rust/evmc-declare/Cargo.toml
+385 −0 bindings/rust/evmc-declare/src/lib.rs
+2 −2 bindings/rust/evmc-sys/Cargo.toml
+2 −0 bindings/rust/evmc-sys/build.rs
+27 −0 bindings/rust/evmc-sys/src/lib.rs
+2 −2 bindings/rust/evmc-vm/Cargo.toml
+159 −0 bindings/rust/evmc-vm/src/container.rs
+659 −67 bindings/rust/evmc-vm/src/lib.rs
+37 −0 bindings/rust/evmc-vm/src/types.rs
+112 −62 circle.yml
+3 −1 cmake/Config.cmake.in
+18 −0 cmake/EVMC.cmake
+3 −3 cmake/Hunter/init.cmake
+2 −2 cmake/cable/CableBuildType.cmake
+34 −16 cmake/cable/CableCompilerSettings.cmake
+75 −90 cmake/cable/HunterGate.cmake
+11 −24 cmake/cable/bootstrap.cmake
+2 −0 docs/EVMC.md
+7 −0 docs/VM_Guide.md
+3 −18 examples/CMakeLists.txt
+4 −2 examples/example-rust-vm/Cargo.toml
+25 −51 examples/example-rust-vm/src/lib.rs
+1 −1 examples/example.c
+11 −19 examples/example_host.cpp
+16 −0 examples/example_precompiles_vm/CMakeLists.txt
+127 −0 examples/example_precompiles_vm/example_precompiles_vm.cpp
+20 −0 examples/example_vm/CMakeLists.txt
+21 −26 examples/example_vm/example_vm.c
+0 −0 examples/example_vm/example_vm.h
+7 −0 examples/use_evmc_in_cmake/CMakeLists.txt
+86 −39 include/evmc/evmc.h
+344 −8 include/evmc/evmc.hpp
+60 −2 include/evmc/helpers.h
+48 −16 include/evmc/helpers.hpp
+64 −13 include/evmc/loader.h
+3 −1 lib/instructions/CMakeLists.txt
+260 −0 lib/instructions/instruction_metrics.c
+260 −0 lib/instructions/instruction_names.c
+3 −1 lib/loader/CMakeLists.txt
+122 −16 lib/loader/loader.c
+16 −14 test/integration/cmake_package/CMakeLists.txt
+5 −0 test/integration/compilation/compilation_test.c
+10 −0 test/integration/compilation/compilation_test.cxx
+2 −1 test/unittests/CMakeLists.txt
+312 −8 test/unittests/test_cpp.cpp
+50 −0 test/unittests/test_deprecated.cpp
+17 −37 test/unittests/test_helpers.cpp
+146 −22 test/unittests/test_instructions.cpp
+407 −32 test/unittests/test_loader.cpp
+24 −17 test/vmtester/CMakeLists.txt
+66 −20 test/vmtester/tests.cpp
+16 −14 test/vmtester/vmtester.cpp
+1 −1 test/vmtester/vmtester.hpp

0 comments on commit 78af907

Please sign in to comment.