Add codegen cargo metadata fields

This commit is contained in:
Andrew Jones
2021-11-08 10:19:36 +00:00
parent 440f5be8c6
commit fcd35bf10e
2 changed files with 14 additions and 0 deletions
+7
View File
@@ -1,8 +1,15 @@
[package]
name = "subxt-cli"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
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"
+7
View File
@@ -1,6 +1,13 @@
[package]
name = "subxt-codegen"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
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]