17 lines
454 B
TOML
17 lines
454 B
TOML
[package]
|
|
name = "poc_solana"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
solana-program = "1.8.2"
|
|
borsh = "0.9.1"
|
|
borsh-derive = "0.9.1"
|
|
spl-token = { version = "*", features = ["no-entrypoint"] }
|
|
owo-colors = "3.1.0"
|
|
solana-logger = "1.8.2"
|
|
poc-framework = { version = "0.1.2" }
|
|
ctf-solana-farm = { path = "../ctf", features = ["no-entrypoint"] }
|