anchor/cli/Cargo.toml

47 lines
1.6 KiB
TOML
Raw Normal View History

2020-12-31 15:48:06 -08:00
[package]
name = "anchor-cli"
2023-03-08 05:28:23 -08:00
version = "0.27.0"
2020-12-31 15:48:06 -08:00
authors = ["armaniferrante <armaniferrante@gmail.com>"]
rust-version = "1.60"
2022-03-12 14:39:21 -08:00
edition = "2021"
repository = "https://github.com/coral-xyz/anchor"
2022-04-20 08:56:34 -07:00
description = "Anchor CLI"
license = "Apache-2.0"
2020-12-31 15:48:06 -08:00
[[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 = { version = "4.0.26", features = ["derive"] }
2020-12-31 15:48:06 -08:00
anyhow = "1.0.32"
2021-04-04 00:55:56 -07:00
syn = { version = "1.0.60", features = ["full", "extra-traits"] }
2023-03-08 05:28:23 -08:00
anchor-lang = { path = "../lang", version = "0.27.0" }
anchor-client = { path = "../client", version = "0.27.0" }
anchor-syn = { path = "../lang/syn", features = ["idl", "init-if-needed"], version = "0.27.0" }
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"] }
solana-sdk = { git = "https://github.com/solana-labs/solana.git", branch = "mergify/bp/v1.14/pr-31637" }
solana-program = { git = "https://github.com/solana-labs/solana.git", branch = "mergify/bp/v1.14/pr-31637" }
solana-client = { git = "https://github.com/solana-labs/solana.git", branch = "mergify/bp/v1.14/pr-31637" }
solana-cli-config = { git = "https://github.com/solana-labs/solana.git", branch = "mergify/bp/v1.14/pr-31637" }
solana-faucet = { git = "https://github.com/solana-labs/solana.git", branch = "mergify/bp/v1.14/pr-31637" }
dirs = "4.0"
heck = "0.4.0"
flate2 = "1.0.19"
2021-08-08 02:11:48 -07:00
tar = "0.4.35"
reqwest = { version = "0.11.4", default-features = false, features = ["multipart", "blocking", "rustls-tls"] }
tokio = "1.24"
2021-08-08 02:11:48 -07:00
pathdiff = "0.2.0"
cargo_toml = "0.13.0"
walkdir = "2.3.2"
chrono = "0.4.19"
portpicker = "0.1.1"