git.delta.rocks / unique-network / refs/commits / fd1e50be61c5

difftreelog

misc: update version

Trubnikov Sergey2023-01-12parent: #664a920.patch.diff
in: master

3 files changed

modifiedCargo.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",
modifiedcrates/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
modifiedcrates/evm-coder/Cargo.tomldiffbeforeafterboth
before · crates/evm-coder/Cargo.toml
1[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 = []