-
Notifications
You must be signed in to change notification settings - Fork 47
/
Cargo.toml
39 lines (37 loc) · 1.22 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
[package]
name = "solana-verify"
version = "0.3.1"
edition = "2021"
description = "A CLI tool for building verifiable Solana programs"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.79"
borsh = { version = "1.2.1", features = ["derive"] }
cargo-lock = "9.0.0" # missing in workspace
cargo_toml = "0.15.3" # missing in workspace
clap = "2.33.1" # version of v1.18 does not support derive
crossbeam-channel = "0.5.11"
hex = "0.4.3"
indicatif = "0.17.7"
lazy_static = "1.4.0"
pathdiff = "0.2.0" # missing in workspace
reqwest = "0.11.23"
regex = "1.11.1"
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
sha256 = "1.1.1" # missing in workspace
signal-hook = "0.3.17"
solana-clap-utils = "=1.18.23"
solana-cli-config = "=1.18.23"
solana-client = "=1.18.23"
solana-sdk = "=1.18.23"
tokio = { version = "1.29.1", features = ["full"] }
solana-account-decoder = "1.18.23"
[dependencies.uuid]
version = "1.2.2"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]