* issue #10831: added --with-memo option to all cli commands that submit (#16291)
* issue #10831: added --with-memo option to all cli commands that submit
transactions. Also, improve the block command to show UTF-8 string instead
of integer values for memo program data.
* Fixed tests and changed some syntax according to feedback.
* Use spl_memo id (all versions where applicable) instead of hardcoding id.
* Update Cargo.toml in programs/bpf.
* Update formatting via cargo fmt.
* Update to use spl_memo version 3.0.1, which simplifies package imports
(cherry picked from commit 364af3a3e0
)
# Conflicts:
# cli-output/Cargo.toml
# cli/Cargo.toml
* Fix conflicts
Co-authored-by: bji <bryan@ischo.com>
Co-authored-by: Tyera Eulberg <tyera@solana.com>
33 lines
1.2 KiB
TOML
33 lines
1.2 KiB
TOML
[package]
|
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
|
edition = "2018"
|
|
name = "solana-cli-output"
|
|
description = "Blockchain, Rebuilt for Scale"
|
|
version = "1.6.5"
|
|
repository = "https://github.com/solana-labs/solana"
|
|
license = "Apache-2.0"
|
|
homepage = "https://solana.com/"
|
|
documentation = "https://docs.rs/solana-cli-output"
|
|
|
|
[dependencies]
|
|
base64 = "0.13.0"
|
|
chrono = { version = "0.4.11", features = ["serde"] }
|
|
console = "0.11.3"
|
|
humantime = "2.0.1"
|
|
Inflector = "0.11.4"
|
|
indicatif = "0.15.0"
|
|
serde = "1.0.122"
|
|
serde_derive = "1.0.103"
|
|
serde_json = "1.0.56"
|
|
solana-account-decoder = { path = "../account-decoder", version = "=1.6.5" }
|
|
solana-clap-utils = { path = "../clap-utils", version = "=1.6.5" }
|
|
solana-client = { path = "../client", version = "=1.6.5" }
|
|
solana-sdk = { path = "../sdk", version = "=1.6.5" }
|
|
solana-stake-program = { path = "../programs/stake", version = "=1.6.5" }
|
|
solana-transaction-status = { path = "../transaction-status", version = "=1.6.5" }
|
|
solana-vote-program = { path = "../programs/vote", version = "=1.6.5" }
|
|
spl-memo = { version = "=3.0.1", features = ["no-entrypoint"] }
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|