anchor/cli/Cargo.toml

42 lines
984 B
TOML
Raw Normal View History

2020-12-31 15:48:06 -08:00
[package]
name = "anchor-cli"
2022-01-06 15:09:43 -08:00
version = "0.20.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-10-25 09:47:59 -07:00
semver = "1.0.4"
2021-04-04 00:55:56 -07:00
serde = { version = "1.0.122", features = ["derive"] }
2021-12-13 08:23:36 -08:00
solana-sdk = "1.8.5"
solana-program = "1.8.5"
solana-client = "1.8.5"
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"
2021-08-31 14:52:41 -07:00
walkdir = "2"
chrono = "0.4.19"