forked from solana-foundation/anchor
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 721 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "anchor-client"
version = "0.32.1"
authors = ["Anchor Maintainers <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
description = "An RPC client to interact with Anchor programs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[features]
async = []
debug = []
mock = []
[dependencies]
anchor-lang = { path = "../lang", version = "0.32.1" }
anyhow = "1"
futures = "0.3"
regex = "1"
serde = { version = "1", features = ["derive"] }
solana-account = "2"
solana-account-decoder = "2"
solana-pubsub-client = "2"
solana-rpc-client = "2"
solana-rpc-client-api = "2"
solana-sdk = "2"
thiserror = "1"
tokio = { version = "1", features = ["rt", "sync"] }
url = "2"