forked from otter-sec/sol-ctf-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 714 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 714 Bytes
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
[package]
description = "A framework for building solana based capture the flag challenges"
edition = "2021"
homepage = "https://github.com/otter-sec/sol-ctf-framework"
license = "BSD-3-Clause"
name = "sol-ctf-framework"
repository = "https://github.com/otter-sec/sol-ctf-framework"
version = "0.1.2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = "0.7.3"
sha2 = "0.10.2"
solana-program = "^1.18.26"
solana-program-test = "^1.18.26"
solana-sdk = "^1.18.26"
spl-token = "^4.0.0"
tempfile = "3.2.0"
tokio = {version = "^1.43.0", features = ["io-util", "net"]}
[dev-dependencies]
anchor-client = "*"
solana-program = "*"
threadpool = "1.8.1"