Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 2ce4817

Browse files
mvinesmergify[bot]
authored andcommitted
Add spl-feature-proposal-cli
1 parent 73c3455 commit 2ce4817

File tree

5 files changed

+502
-1
lines changed

5 files changed

+502
-1
lines changed

Cargo.lock

Lines changed: 14 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ members = [
77
"examples/rust/sysvar",
88
"examples/rust/transfer-lamports",
99
"feature-proposal/program",
10+
"feature-proposal/cli",
1011
"memo/program",
1112
"shared-memory/program",
1213
"stake-pool/cli",

feature-proposal/cli/Cargo.toml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[package]
2+
name = "spl-feature-proposal-cli"
3+
version = "1.0.0"
4+
description = "SPL Feature Proposal Command-line Utility"
5+
authors = ["Solana Maintainers <[email protected]>"]
6+
repository = "https://github.com/solana-labs/solana-program-library"
7+
license = "Apache-2.0"
8+
edition = "2018"
9+
10+
[dependencies]
11+
clap = "2.33.3"
12+
solana-clap-utils = "1.4.8"
13+
solana-cli-config = "1.4.8"
14+
solana-client = "1.4.8"
15+
solana-logger = "1.4.8"
16+
solana-sdk = "1.4.8"
17+
spl-feature-proposal = { version = "1.0.0-pre3", path = "../program", features = ["no-entrypoint"] }
18+
19+
[[bin]]
20+
name = "spl-feature-proposal"
21+
path = "src/main.rs"
22+
23+
[package.metadata.docs.rs]
24+
targets = ["x86_64-unknown-linux-gnu"]

0 commit comments

Comments
 (0)