Skip to content

Commit 0cebe38

Browse files
set missing metadata fields, prepping alpha.2 (#5067)
* setting first batch of descriptions * fix what I just broke * next batch * and pallets, too * last batch * set cargo.lock * keep'em dev-deps * bump version to alpha.2
1 parent 6e54e70 commit 0cebe38

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

Cargo.toml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
11
[package]
22
name = "pallet-evm"
3-
version = "2.0.0-alpha.1"
3+
version = "2.0.0-alpha.2"
44
authors = ["Parity Technologies <[email protected]>"]
55
edition = "2018"
66
license = "GPL-3.0"
77
homepage = "https://substrate.dev"
88
repository = "https://github.com/paritytech/substrate/"
9+
description = "FRAME EVM contracts pallet"
910

1011
[dependencies]
1112
serde = { version = "1.0.101", optional = true, features = ["derive"] }
1213
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false }
13-
frame-support = { version = "2.0.0-alpha.1", default-features = false, path = "../support" }
14-
frame-system = { version = "2.0.0-alpha.1", default-features = false, path = "../system" }
15-
pallet-timestamp = { version = "2.0.0-alpha.1", default-features = false, path = "../timestamp" }
16-
pallet-balances = { version = "2.0.0-alpha.1", default-features = false, path = "../balances" }
17-
sp-core = { version = "2.0.0-alpha.1", default-features = false, path = "../../primitives/core" }
18-
sp-runtime = { version = "2.0.0-alpha.1", default-features = false, path = "../../primitives/runtime" }
19-
sp-std = { version = "2.0.0-alpha.1", default-features = false, path = "../../primitives/std" }
20-
sp-io = { version = "2.0.0-alpha.1", default-features = false, path = "../../primitives/io" }
14+
frame-support = { version = "2.0.0-alpha.2", default-features = false, path = "../support" }
15+
frame-system = { version = "2.0.0-alpha.2", default-features = false, path = "../system" }
16+
pallet-timestamp = { version = "2.0.0-alpha.2", default-features = false, path = "../timestamp" }
17+
pallet-balances = { version = "2.0.0-alpha.2", default-features = false, path = "../balances" }
18+
sp-core = { version = "2.0.0-alpha.2", default-features = false, path = "../../primitives/core" }
19+
sp-runtime = { version = "2.0.0-alpha.2", default-features = false, path = "../../primitives/runtime" }
20+
sp-std = { version = "2.0.0-alpha.2", default-features = false, path = "../../primitives/std" }
21+
sp-io = { version = "2.0.0-alpha.2", default-features = false, path = "../../primitives/io" }
2122
primitive-types = { version = "0.6.2", default-features = false, features = ["rlp"] }
2223
rlp = { version = "0.4", default-features = false }
2324
evm = { version = "0.15", default-features = false }

0 commit comments

Comments
 (0)