2020-03-26 13:29:30 -07:00
|
|
|
[package]
|
|
|
|
name = "solana-transaction-status"
|
2021-03-12 23:31:17 -08:00
|
|
|
version = "1.7.0"
|
2020-03-26 13:29:30 -07:00
|
|
|
description = "Solana transaction status types"
|
2020-06-13 14:41:05 -07:00
|
|
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
2020-03-26 13:29:30 -07:00
|
|
|
repository = "https://github.com/solana-labs/solana"
|
|
|
|
homepage = "https://solana.com/"
|
2021-03-10 12:46:17 -08:00
|
|
|
documentation = "https://docs.rs/solana-transaction-status"
|
2020-03-26 13:29:30 -07:00
|
|
|
license = "Apache-2.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-08-14 23:53:58 -07:00
|
|
|
base64 = "0.12.3"
|
2020-07-08 17:08:05 -07:00
|
|
|
bincode = "1.3.1"
|
2020-04-20 20:46:55 -07:00
|
|
|
bs58 = "0.3.1"
|
2020-06-19 15:15:13 -07:00
|
|
|
Inflector = "0.11.4"
|
|
|
|
lazy_static = "1.4.0"
|
2021-02-05 02:23:24 -08:00
|
|
|
serde = "1.0.122"
|
2020-09-22 17:03:53 -07:00
|
|
|
serde_derive = "1.0.103"
|
|
|
|
serde_json = "1.0.56"
|
2021-03-15 22:16:08 -07:00
|
|
|
solana-account-decoder = { path = "../account-decoder", version = "=1.7.0" }
|
|
|
|
solana-sdk = { path = "../sdk", version = "=1.7.0" }
|
|
|
|
solana-runtime = { path = "../runtime", version = "=1.7.0" }
|
|
|
|
solana-stake-program = { path = "../programs/stake", version = "=1.7.0" }
|
|
|
|
solana-vote-program = { path = "../programs/vote", version = "=1.7.0" }
|
2021-04-01 15:48:05 -07:00
|
|
|
spl-associated-token-account-v1-0 = { package = "spl-associated-token-account", version = "=1.0.2", features = ["no-entrypoint"] }
|
2021-04-05 19:06:44 -07:00
|
|
|
spl-memo = { version = "=3.0.1", features = ["no-entrypoint"] }
|
2021-02-19 01:15:41 -08:00
|
|
|
spl-token-v2-0 = { package = "spl-token", version = "=3.1.0", features = ["no-entrypoint"] }
|
2020-07-31 12:26:09 -07:00
|
|
|
thiserror = "1.0"
|
2020-04-16 18:18:28 -07:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|