anchor/cli/Cargo.toml

39 lines
951 B
TOML
Raw Normal View History

2020-12-31 15:48:06 -08:00
[package]
name = "anchor-cli"
2021-08-08 19:38:50 -07:00
version = "0.13.0"
2020-12-31 15:48:06 -08:00
authors = ["armaniferrante <armaniferrante@gmail.com>"]
edition = "2018"
[[bin]]
name = "anchor"
2021-08-08 02:11:48 -07:00
path = "src/bin/main.rs"
2020-12-31 15:48:06 -08:00
2021-03-12 12:43:26 -08:00
[features]
dev = []
default = []
2020-12-31 15:48:06 -08:00
[dependencies]
clap = "3.0.0-beta.1"
anyhow = "1.0.32"
2021-04-04 00:55:56 -07:00
syn = { version = "1.0.60", features = ["full", "extra-traits"] }
2021-01-30 05:14:45 -08:00
anchor-lang = { path = "../lang" }
2021-05-22 16:06:08 -07:00
anchor-client = { path = "../client" }
2021-01-30 05:14:45 -08:00
anchor-syn = { path = "../lang/syn", features = ["idl"] }
2020-12-31 15:48:06 -08:00
serde_json = "1.0"
shellexpand = "2.1.0"
2021-01-02 22:40:17 -08:00
toml = "0.5.8"
2021-04-04 00:55:56 -07:00
serde = { version = "1.0.122", features = ["derive"] }
solana-sdk = "=1.7.8"
solana-program = "=1.7.8"
solana-client = "=1.7.8"
2021-01-02 22:40:17 -08:00
serum-common = { git = "https://github.com/project-serum/serum-dex", features = ["client"] }
dirs = "3.0"
heck = "0.3.1"
flate2 = "1.0.19"
2021-02-26 01:31:48 -08:00
rand = "0.7.3"
2021-08-08 02:11:48 -07:00
tar = "0.4.35"
reqwest = { version = "0.11.4", features = ["multipart", "blocking"] }
tokio = "1.0"
pathdiff = "0.2.0"
2021-08-08 19:38:50 -07:00
cargo_toml = "0.9.2"
walkdir = "2"