anchor/client/Cargo.toml

23 lines
771 B
TOML
Raw Normal View History

2021-01-29 08:02:34 -08:00
[package]
name = "anchor-client"
2023-03-08 05:28:23 -08:00
version = "0.27.0"
2021-01-31 06:32:30 -08:00
authors = ["Serum Foundation <foundation@projectserum.com>"]
rust-version = "1.60"
2022-03-12 14:39:21 -08:00
edition = "2021"
2021-01-31 06:32:30 -08:00
license = "Apache-2.0"
description = "Rust client for Anchor programs"
2021-01-29 08:02:34 -08:00
[features]
debug = []
2021-01-29 08:02:34 -08:00
[dependencies]
2023-03-08 05:28:23 -08:00
anchor-lang = { path = "../lang", version = "0.27.0" }
2021-03-24 20:19:29 -07:00
anyhow = "1.0.32"
regex = "1.4.5"
2021-05-22 16:06:08 -07:00
serde = { version = "1.0.122", features = ["derive"] }
solana-client = { git = "https://github.com/solana-labs/solana.git", branch = "mergify/bp/v1.14/pr-31637" }
solana-sdk = { git = "https://github.com/solana-labs/solana.git", branch = "mergify/bp/v1.14/pr-31637" }
solana-account-decoder = { git = "https://github.com/solana-labs/solana.git", branch = "mergify/bp/v1.14/pr-31637" }
2021-02-26 01:31:48 -08:00
thiserror = "1.0.20"
url = "2.2.2"