Skip to content

Commit

Permalink
Update AUTHORS and use workspace package config (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
sorpaas committed Nov 25, 2023
1 parent 23fbe73 commit edbf2f8
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 18 deletions.
8 changes: 8 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Wei Tang <wei@pacna.org>
Parity Technologies <admin@parity.io>
Stewart Mackenzie <setori88@gmail.com>
Mike Lubinets <lubinetsm@yandex.ru>
Michael Birch <michael.birch@aurora.dev>
nanocryk
Joshua J. Bouw <joshua@aurora.dev>
tgmichel <telmo@purestake.com>
20 changes: 13 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
[workspace.package]
license = "Apache-2.0"
authors = ["rust-evm Developers <contact-rust-evm@pacna.org>"]
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 <hi@that.world>", "Parity Technologies <admin@parity.io>"]
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]
Expand All @@ -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"
Expand Down
12 changes: 6 additions & 6 deletions interpreter/Cargo.toml
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 <hi@that.world>", "Parity Technologies <admin@parity.io>"]
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]
Expand Down
6 changes: 4 additions & 2 deletions jsontests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
name = "jsontests"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
license = { workspace = true }
authors = { workspace = true }
repository = { workspace = true }
keywords = { workspace = true }

[dependencies]
evm = { path = ".." }
Expand Down
7 changes: 5 additions & 2 deletions precompile/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
[package]
name = "evm-precompile"
version = "0.1.0"
version = "0.0.0-dev"
edition = "2021"
license = "Apache-2.0"
license = { workspace = true }
authors = { workspace = true }
repository = { workspace = true }
keywords = { workspace = true }
description = "Standard EVM precompiles."

[dependencies]
Expand Down
6 changes: 5 additions & 1 deletion tracer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
[package]
name = "evm-tracer"
version = "0.1.0"
version = "0.0.0-dev"
license = { workspace = true }
authors = { workspace = true }
repository = { workspace = true }
keywords = { workspace = true }
edition = "2021"

[dependencies]
Expand Down

0 comments on commit edbf2f8

Please sign in to comment.