Skip to content

Commit

Permalink
v0.7.0 release extras (paritytech#110)
Browse files Browse the repository at this point in the history
* Explicit proc-macro version for crates.io release

* Upgrade partity-scale-codec

* Add proc-macro crate metadata
  • Loading branch information
ascjones authored May 13, 2020
1 parent e8b4eb3 commit bec7e47
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ num-traits = { version = "0.2", default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
url = "2.1"
codec = { package = "parity-scale-codec", version = "1.2", default-features = false, features = ["derive", "full"] }
codec = { package = "parity-scale-codec", version = "1.3", default-features = false, features = ["derive", "full"] }

frame-metadata = { version = "11.0.0-alpha.7", package = "frame-metadata" }
frame-support = { version = "2.0.0-alpha.7", package = "frame-support" }
Expand All @@ -37,7 +37,7 @@ sp-rpc = { version = "2.0.0-alpha.7", package = "sp-rpc" }
sp-core = { version = "2.0.0-alpha.7", package = "sp-core" }
sc-rpc-api = { version = "0.8.0-alpha.7", package = "sc-rpc-api" }
sp-transaction-pool = { version = "2.0.0-alpha.7", package = "sp-transaction-pool" }
substrate-subxt-proc-macro = { path = "proc-macro" }
substrate-subxt-proc-macro = { version = "0.7.0", path = "proc-macro" }

[dev-dependencies]
async-std = { version = "1.5.0", features = ["attributes"] }
Expand Down
12 changes: 9 additions & 3 deletions proc-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
[package]
name = "substrate-subxt-proc-macro"
version = "0.1.0"
authors = ["David Craven <[email protected]>"]
version = "0.7.0"
authors = ["David Craven <[email protected]>", "Parity Technologies <[email protected]>"]
edition = "2018"
autotests = false

license = "GPL-3.0"
repository = "https://github.com/paritytech/substrate-subxt"
documentation = "https://docs.rs/substrate-subxt"
homepage = "https://www.parity.io/"
description = "Derive calls, events, storage and tests for interacting Substrate modules with substrate-subxt"

[lib]
proc-macro = true

Expand All @@ -18,7 +24,7 @@ synstructure = "0.12.3"

[dev-dependencies]
async-std = { version = "1.5.0", features = ["attributes"] }
codec = { package = "parity-scale-codec", version = "1.2.0", features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.3.0", features = ["derive"] }
env_logger = "0.7.1"
pretty_assertions = "0.6.1"
sp-keyring = "2.0.0-alpha.7"
Expand Down

0 comments on commit bec7e47

Please sign in to comment.