2020-03-26 13:29:30 -07:00
|
|
|
[package]
|
|
|
|
name = "solana-transaction-status"
|
2022-09-13 07:06:15 -07:00
|
|
|
version = "1.15.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"
|
2021-11-30 16:47:00 -08:00
|
|
|
edition = "2021"
|
2020-03-26 13:29:30 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2022-03-11 09:05:57 -08:00
|
|
|
Inflector = "0.11.4"
|
2022-03-11 15:01:15 -08:00
|
|
|
base64 = "0.13.0"
|
2021-06-21 09:06:31 -07:00
|
|
|
bincode = "1.3.3"
|
2022-04-20 10:13:42 -07:00
|
|
|
borsh = "0.9.1"
|
2021-05-28 11:30:34 -07:00
|
|
|
bs58 = "0.4.0"
|
2020-06-19 15:15:13 -07:00
|
|
|
lazy_static = "1.4.0"
|
2022-05-04 18:49:18 -07:00
|
|
|
log = "0.4.17"
|
2022-09-07 15:54:44 -07:00
|
|
|
serde = "1.0.144"
|
2020-09-22 17:03:53 -07:00
|
|
|
serde_derive = "1.0.103"
|
2022-08-10 08:45:42 -07:00
|
|
|
serde_json = "1.0.83"
|
2022-09-13 07:06:15 -07:00
|
|
|
solana-account-decoder = { path = "../account-decoder", version = "=1.15.0" }
|
|
|
|
solana-address-lookup-table-program = { path = "../programs/address-lookup-table", version = "=1.15.0" }
|
|
|
|
solana-sdk = { path = "../sdk", version = "=1.15.0" }
|
2022-08-04 18:05:31 -07:00
|
|
|
spl-associated-token-account = { version = "=1.1.1", features = ["no-entrypoint"] }
|
2021-04-05 19:06:44 -07:00
|
|
|
spl-memo = { version = "=3.0.1", features = ["no-entrypoint"] }
|
2022-08-04 18:05:31 -07:00
|
|
|
spl-token = { version = "=3.5.0", features = ["no-entrypoint"] }
|
2022-08-16 14:47:12 -07:00
|
|
|
spl-token-2022 = { version = "=0.4.3", 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"]
|