evm-core: fix crate name (#911)

This commit is contained in:
Wei Tang
2021-05-12 03:59:58 +02:00
committed by GitHub
parent 26467a96c4
commit 7e4cbf6107

View File

@@ -1,7 +1,7 @@
```toml
[advisory]
id = "RUSTSEC-2021-0066"
package = "evm"
package = "evm-core"
date = "2021-05-11"
url = "https://github.com/rust-blockchain/evm"
categories = ["denial-of-service"]
@@ -13,7 +13,7 @@ patched = [">= 0.26.1", "0.25.1", "0.24.1", "0.23.1", "0.21.1"]
# Denial of service on EVM execution due to memory over-allocation
Prior to the patch, when executing specific EVM opcodes related
to memory operations that use `evm_core::Memory::copy_large`, the `evm`
to memory operations that use `evm_core::Memory::copy_large`, the
crate can over-allocate memory when it is not needed, making it
possible for an attacker to perform denial-of-service attack.