-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
41 lines (37 loc) · 1.15 KB
/
Cargo.toml
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
33
34
35
36
37
38
39
40
41
[package]
name = "phoenix-cli"
version = "0.3.10"
description = "CLI and associated library for interacting with the Phoenix program from the command line"
edition = "2021"
license = "MIT"
[[bin]]
name = "phoenix-cli"
path = "src/main.rs"
[lib]
name = "phoenix_cli_processor"
path = "src/lib/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.66"
clap = { version = "4.0.26", features = ["derive"] }
shellexpand = "2.1.2"
solana-sdk = "1.10.32"
ellipsis-client = "1.0.1"
solana-client = "1.10.32"
solana-account-decoder = "1.14.7"
solana-cli-config = "1.14.7"
borsh = "0.9.3"
tokio = { version = "1.8.4", features = ["full"] }
rand = "0.7.3"
itertools = "0.10.5"
colored = "2.0.0"
spl-token = { version = "3.2.0", features = ["no-entrypoint"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
spl-associated-token-account = { version = "2.2.0", features = [ "no-entrypoint" ] }
phoenix-common = { version = "0.2.1", features = ["no-entrypoint"] }
phoenix-sdk = "0.8.0"
bytemuck = "1.13.0"
reqwest = "0.11.14"
bincode = "1.3.3"
phoenix-seat-manager-common = "0.1.1"