-
Notifications
You must be signed in to change notification settings - Fork 384
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update AUTHORS and use workspace package config (#240)
- Loading branch information
Showing
6 changed files
with
41 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Wei Tang <[email protected]> | ||
Parity Technologies <[email protected]> | ||
Stewart Mackenzie <[email protected]> | ||
Mike Lubinets <[email protected]> | ||
Michael Birch <[email protected]> | ||
nanocryk | ||
Joshua J. Bouw <[email protected]> | ||
tgmichel <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
[workspace.package] | ||
license = "Apache-2.0" | ||
authors = ["rust-evm Developers <[email protected]>"] | ||
repository = "https://github.com/rust-ethereum/evm" | ||
keywords = ["no_std", "ethereum", "evm"] | ||
|
||
[package] | ||
name = "evm" | ||
version = "0.40.0" | ||
license = "Apache-2.0" | ||
authors = ["Wei Tang <[email protected]>", "Parity Technologies <[email protected]>"] | ||
description = "SputnikVM - a Portable Blockchain Virtual Machine" | ||
repository = "https://github.com/sorpaas/rust-evm" | ||
keywords = ["no_std", "ethereum"] | ||
version = "1.0.0-dev" | ||
license = { workspace = true } | ||
authors = { workspace = true } | ||
repository = { workspace = true } | ||
keywords = { workspace = true } | ||
description = "Ethereum Virtual Machine" | ||
edition = "2018" | ||
|
||
[dependencies] | ||
|
@@ -22,7 +28,7 @@ scale-codec = { package = "parity-scale-codec", version = "3.2", default-feature | |
scale-info = { version = "2.3", default-features = false, features = ["derive"], optional = true } | ||
serde = { version = "1.0", default-features = false, features = ["derive"], optional = true } | ||
|
||
evm-interpreter = { version = "0.2.0-dev", path = "interpreter", default-features = false } | ||
evm-interpreter = { version = "1.0.0-dev", path = "interpreter", default-features = false } | ||
|
||
[dev-dependencies] | ||
criterion = "0.4" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "evm-interpreter" | ||
version = "0.2.0-dev" | ||
license = "Apache-2.0" | ||
authors = ["Wei Tang <[email protected]>", "Parity Technologies <[email protected]>"] | ||
description = "Portable Ethereum Virtual Machine implementation written in pure Rust." | ||
repository = "https://github.com/sorpaas/rust-evm" | ||
keywords = ["no_std", "ethereum"] | ||
version = "1.0.0-dev" | ||
license = { workspace = true } | ||
authors = { workspace = true } | ||
repository = { workspace = true } | ||
keywords = { workspace = true } | ||
description = "The interpreter part of Ethereum Virtual Machine" | ||
edition = "2018" | ||
|
||
[dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters