-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (22 loc) · 763 Bytes
/
Cargo.toml
File metadata and controls
26 lines (22 loc) · 763 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
26
[package]
name = "sol-ctf-framework"
version = "0.1.0"
edition = "2021"
license = "BSD-3-Clause"
homepage = "https://github.com/otter-sec/sol-ctf-framework"
description = "A framework for building solana based capture the flag challenges"
repository = "https://github.com/otter-sec/sol-ctf-framework"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
solana-sdk = "3.0"
solana-program = "3.0"
solana-program-test = { version = "3.0", features = ["agave-unstable-api"] }
solana-system-interface = { version = "3.0", features = ["bincode"] }
spl-token = "9.0"
tempfile = "3.2.0"
sha2 = "0.10.2"
rand = "0.7.3"
[dev-dependencies]
threadpool = "1.8.1"
anchor-client = "=0.32.1"
solana-program = "3.0"