Skip to content

Commit 75e112e

Browse files
authored
program/cli: Port over history from SPL (#1)
1 parent c248dc5 commit 75e112e

File tree

9 files changed

+1556
-0
lines changed

9 files changed

+1556
-0
lines changed

clients/cli/Cargo.toml

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

0 commit comments

Comments
 (0)