-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (34 loc) · 903 Bytes
/
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
[package]
name = "nifty-cli"
version = "0.1.0"
authors = ["nifty-oss maintainers <maintainers@nifty-oss.org>"]
edition = "2021"
readme = "README.md"
license-file = "LICENSE"
description = "CLI for the Nifty Asset program."
repository = "https://github.com/nifty-oss/cli"
homepage = "https://nifty-oss.org"
documentation = "https://nifty-oss.org"
[[bin]]
name = "nifty"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.75"
bincode = "1.3.3"
borsh = { version = "0.9.3" }
clap = { version = "4.4.10", features = ["derive"] }
dirs = "5.0.1"
indexmap = { version = "2.1.0", features = ["serde"] }
indicatif = "0.17.8"
nifty-asset = { version = "0.4.0", features = ["serde"] }
podded = "0.5.1"
retry = "2.0.0"
serde = "1.0.193"
serde_json = "1.0.108"
serde_with = "3.7.0"
serde_yaml = "0.9.27"
solana-client = "~1.16"
solana-logger = "~1.16"
solana-program = "~1.16"
solana-sdk = "~1.16"
tokio = "1.35.1"