Skip to content

Commit

Permalink
Add spl-feature-proposal-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines authored and mergify[bot] committed Nov 18, 2020
1 parent 73c3455 commit 2ce4817
Show file tree
Hide file tree
Showing 5 changed files with 502 additions and 1 deletion.
15 changes: 14 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ members = [
"examples/rust/sysvar",
"examples/rust/transfer-lamports",
"feature-proposal/program",
"feature-proposal/cli",
"memo/program",
"shared-memory/program",
"stake-pool/cli",
Expand Down
24 changes: 24 additions & 0 deletions feature-proposal/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[package]
name = "spl-feature-proposal-cli"
version = "1.0.0"
description = "SPL Feature Proposal Command-line Utility"
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
repository = "https://github.com/solana-labs/solana-program-library"
license = "Apache-2.0"
edition = "2018"

[dependencies]
clap = "2.33.3"
solana-clap-utils = "1.4.8"
solana-cli-config = "1.4.8"
solana-client = "1.4.8"
solana-logger = "1.4.8"
solana-sdk = "1.4.8"
spl-feature-proposal = { version = "1.0.0-pre3", path = "../program", features = ["no-entrypoint"] }

[[bin]]
name = "spl-feature-proposal"
path = "src/main.rs"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
Loading

0 comments on commit 2ce4817

Please sign in to comment.