anchor/client/Cargo.toml

17 lines
425 B
TOML
Raw Normal View History

2021-01-29 08:02:34 -08:00
[package]
name = "anchor-client"
2021-05-23 14:45:34 -07:00
version = "0.6.0"
2021-01-31 06:32:30 -08:00
authors = ["Serum Foundation <foundation@projectserum.com>"]
2021-01-29 08:02:34 -08:00
edition = "2018"
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
[dependencies]
2021-05-23 14:45:34 -07:00
anchor-lang = { path = "../lang", version = "0.6.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"] }
2021-04-18 12:13:07 -07:00
solana-client = "1.6.6"
solana-sdk = "1.6.6"
2021-02-26 01:31:48 -08:00
thiserror = "1.0.20"