difftreelog
misc: update version
in: master
3 files changed
Cargo.lockdiffbeforeafterboth--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2321,7 +2321,7 @@
[[package]]
name = "evm-coder"
-version = "0.1.5"
+version = "0.1.6"
dependencies = [
"ethereum 0.14.0",
"evm-coder-procedural",
crates/evm-coder/CHANGELOG.mddiffbeforeafterboth--- a/crates/evm-coder/CHANGELOG.md
+++ b/crates/evm-coder/CHANGELOG.md
@@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
<!-- bureaucrate goes here -->
+## [v0.1.6] - 2023-01-12
+
+### Added
+- Support Option<T> type.
+### Removed
+- Frontier dependency.
+
## [v0.1.5] - 2022-11-30
### Added
crates/evm-coder/Cargo.tomldiffbeforeafterboth1[package]2name = "evm-coder"3version = "0.1.5"4license = "GPLv3"5edition = "2021"67[dependencies]8sha3-const = { version = "0.1.1", default-features = false }9# evm-coder reexports those proc-macro10evm-coder-procedural = { path = "./procedural" }11# Evm uses primitive-types for H160, H256 and others12primitive-types = { version = "0.12.1", default-features = false }13# Evm doesn't have reexports for log and others14ethereum = { version = "0.14.0", default-features = false }15sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }16frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }17# Error types for execution18evm-core = { default-features = false, git = "https://github.com/uniquenetwork/evm", branch = "unique-polkadot-v0.9.36" }19# We have tuple-heavy code in solidity.rs20impl-trait-for-tuples = "0.2.2"2122pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }2324[dev-dependencies]25# We want to assert some large binary blobs equality in tests26hex = "0.4.3"27hex-literal = "0.3.4"28similar-asserts = "1.4.2"29trybuild = "1.0"3031[features]32default = ["std"]33std = [34 "ethereum/std",35 "primitive-types/std",36 "evm-core/std",37 "frame-support/std",38]39# Stub/interface generation40stubgen = []1[package]2name = "evm-coder"3version = "0.1.6"4license = "GPLv3"5edition = "2021"67[dependencies]8sha3-const = { version = "0.1.1", default-features = false }9# evm-coder reexports those proc-macro10evm-coder-procedural = { path = "./procedural" }11# Evm uses primitive-types for H160, H256 and others12primitive-types = { version = "0.12.1", default-features = false }13# Evm doesn't have reexports for log and others14ethereum = { version = "0.14.0", default-features = false }15sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }16frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }17# Error types for execution18evm-core = { default-features = false, git = "https://github.com/uniquenetwork/evm", branch = "unique-polkadot-v0.9.36" }19# We have tuple-heavy code in solidity.rs20impl-trait-for-tuples = "0.2.2"2122pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }2324[dev-dependencies]25# We want to assert some large binary blobs equality in tests26hex = "0.4.3"27hex-literal = "0.3.4"28similar-asserts = "1.4.2"29trybuild = "1.0"3031[features]32default = ["std"]33std = [34 "ethereum/std",35 "primitive-types/std",36 "evm-core/std",37 "frame-support/std",38]39# Stub/interface generation40stubgen = []