Skip to content
This repository was archived by the owner on Nov 6, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,5 @@ members = [
"chainspec",
"ethcore/wasm/run",
"evmbin",
"util/EIP-2124"
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The only reason crates get listed here is if they provide binaries that need to be built as part of the whole, like evmbin, chainspec etc.

Other crates in the repo are dependencies of one or more of the above so they don't need to appear here.

(It's a perfectly fine thing to do while working on it ofc)

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree and it is only listed here to make Cargo work before it is included in parity dependency tree.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this can be removed when it's used in the main binary

]
21 changes: 21 additions & 0 deletions util/EIP-2124/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[package]
name = "eip-2124"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
repository = "https://github.com/paritytech/parity-ethereum"
documentation = "https://docs.rs/eip-2124"
readme = "README.md"
description = "EIP-2124 Fork ID implementation"
keywords = ["eip-2124", "eip"]
license = "GPL-3.0"
edition = "2018"

[dependencies]
crc = "1"
ethereum-types = "0.8.0"
maplit = "1"
rlp = "0.4"
rlp_derive = { path = "../rlp-derive" }

[dev-dependencies]
hex-literal = "0.2"
Loading