forked from paritytech/subxt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing cargo metadata fields for new crates (paritytech#311)
- Loading branch information
1 parent
d3641f0
commit 36213f1
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] } | ||
|