-
Notifications
You must be signed in to change notification settings - Fork 242
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (59 loc) · 2.07 KB
/
Copy pathCargo.toml
File metadata and controls
64 lines (59 loc) · 2.07 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "solana-verify"
version = "0.5.1"
edition = "2021"
description = "A CLI tool for building verifiable Solana programs"
license = "MIT"
repository = "https://github.com/solana-foundation/solana-verifiable-build"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.binstall]
pkg-fmt = "bin"
[package.metadata.binstall.overrides.x86_64-unknown-linux-gnu]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ version }-linux"
[package.metadata.binstall.overrides.aarch64-apple-darwin]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ version }-macos"
[dependencies]
anyhow = "1.0.79"
base64 = "0.22.1"
bincode = "1.3.3"
borsh = { version = "1.2.1", features = ["derive"] }
bs58 = "0.5.1"
cargo-lock = "11.0.1" # missing in workspace
cargo_toml = "0.22" # 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.18.4"
lazy_static = "1.4.0"
pathdiff = "0.2.0" # missing in workspace
regex = "1.11.1"
reqwest = { version = "0.13.3", features = ["json"] }
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
sha256 = "1.1.1" # missing in workspace
signal-hook = "0.4.4"
solana-account-decoder-client-types = "=3.1.9"
solana-address = { version = "=2.6.1", features = ["decode"] }
solana-clap-utils = "=3.1.9"
solana-cli-config = "=3.1.9"
solana-compute-budget-interface = "=3.0.0"
solana-instruction = "=3.4.0"
solana-keypair = "=3.1.2"
solana-loader-v3-interface = "6.1"
solana-rpc-client = "=3.1.9"
solana-rpc-client-api = "=3.1.9"
solana-sdk-ids = "3.1.0"
solana-system-interface = "3.2"
solana-transaction = { version = "=3.1.0", features = ["bincode"] }
solana-transaction-status-client-types = "=3.1.9"
tokio = { version = "1.52.3", features = ["full"] }
[dependencies.uuid]
version = "1.23.1"
features = [
"v4",
# Lets you generate random UUIDs
"fast-rng",
# Use a faster (but still sufficiently random) RNG
# Enable better diagnostics for compile-time UUIDs
"macro-diagnostics",
]