forked from neodyme-labs/solana-poc-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (39 loc) · 1.03 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
[package]
name = "poc-framework"
version = "0.3.0"
authors = []
edition = "2018"
repository = "https://github.com/neodyme-labs/solana-poc-framework"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = [ "solana", "smart", "contracts",]
description = "A framework for creating PoC's for Solana Smart Contracts in a painless and intuitive way"
[dependencies]
itertools = "0.10.1"
bincode = "1.3.3"
rand = "0.7.3"
borsh = "0.9.1"
solana-sdk = "~1.16"
solana-program = "~1.16"
solana-logger = "~1.16"
solana-runtime = "~1.16"
solana-transaction-status = "~1.16"
solana-cli-output = "~1.16"
solana-bpf-loader-program = "~1.16"
solana-compute-budget-program = "~1.16"
solana-vote-program = "~1.16"
solana-stake-program = "~1.16"
solana-config-program = "~1.16"
solana-client = "~1.16"
solana-faucet = "~1.16"
solana-program-runtime = "~1.16"
solana-ledger = "~1.16"
spl-token = "3.3.0"
spl-memo = "3.0.1"
spl-associated-token-account = "1.0.5"
serde = "1.0.125"
sha2 = "0.10.2"
libsecp256k1 = "0.7.1"
sha3 = "0.10.0"
hex = "0.4.3"
once_cell = "1.9.0"