Skip to content

Commit

Permalink
Add missing cargo metadata fields for new crates (paritytech#311)
Browse files Browse the repository at this point in the history
  • Loading branch information
ascjones authored and 0623forbidden committed Feb 15, 2022
1 parent d3641f0 commit 36213f1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
[package]
name = "subxt-cli"
version = "0.1.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

license = "GPL-3.0"
repository = "https://github.com/paritytech/subxt"
documentation = "https://docs.rs/subxt-cli"
homepage = "https://www.parity.io/"
description = "Command line utilities for working with subxt codegen"

[[bin]]
name = "subxt"
path = "src/main.rs"
Expand Down
7 changes: 7 additions & 0 deletions codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
[package]
name = "subxt-codegen"
version = "0.1.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

license = "GPL-3.0"
repository = "https://github.com/paritytech/subxt"
documentation = "https://docs.rs/subxt-codegen"
homepage = "https://www.parity.io/"
description = "Generate an API for interacting with a substrate node from FRAME metadata"

[dependencies]
async-trait = "0.1.49"
codec = { package = "parity-scale-codec", version = "2", default-features = false, features = ["derive", "full", "bit-vec"] }
Expand Down

0 comments on commit 36213f1

Please sign in to comment.