-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
48 lines (39 loc) · 1.13 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
41
42
43
44
45
46
47
48
[package]
name = "pool-fuzz"
version = "0.1.0"
description = "Pool Protocol Fuzzer"
authors = ["rowdyear <[email protected]>"]
edition = "2018"
publish = false
[dependencies]
honggfuzz = { version = "0.5.54" }
arbitrary = { version = "1.1.0", features = ["derive"] }
#pool related dependencies
pool = {path = "..", features = ["fuzz", "no-entrypoint"]}
#solana related dependencies
solana-program = "1.8.14"
spl-token = { version = "3.1.1", features = ["no-entrypoint"] }
solana-program-test = "1.8.14"
solana-sdk = "1.8.14"
spl-associated-token-account = { version = "1.0.2", features = ["no-entrypoint"] }
#serializiation/deserialzation
borsh = { version = "0.9.1", features = ["const-generics"] }
borsh-derive = "0.9.1"
#numerics
uint = { version = "=0.9.1", default-features = false }
rust_decimal = {version = "1.22", features = [ "maths" ] }
rust_decimal_macros = "1.22"
#error handling
thiserror = "1.0"
num-traits = "0.2"
num-derive = "0.3"
#misc
arrayvec = "0.7.2"
tokio = { version = "1.16", features = ["macros"]}
rand = "0.8.5"
rand_chacha = "0.3.1"
[[bin]]
name = "pool_fuzz"
path = "src/instructions.rs"
test = false
doc = false