From d4b2f7fb96d00943ef22525decb23674a3ed469e Mon Sep 17 00:00:00 2001 From: Yieazy Date: Fri, 16 Dec 2022 10:27:10 +0800 Subject: [PATCH] chore: update dependence (#82) --- Cargo.toml | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5712bd9..c861b38 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cita-vm" -version = "0.3.2" +version = "0.3.3" authors = ["Cryptape Technologies "] edition = "2021" description = "CITA VM" @@ -12,7 +12,7 @@ documentation = "https://github.com/cryptape/cita-vm/blob/master/README.md" byteorder = "1.0" cita_trie = "3.0" env_logger = "0.9" -ethereum-types = "0.13" +ethereum-types = "0.14" hashbrown = { version = "0.12", features = ["rayon"] } hasher = { version="0.1" } hex = "0.4" diff --git a/README.md b/README.md index 92e8f07..4b39a9c 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Fast EVM implementation for CITA. Tuned for high performance, up to 5x faster th ``` [dependencies] -cita-vm = "0.2.2" +cita-vm = "0.3.3" ``` - [Example](#Example)