forked from Ackee-Blockchain/trident
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (30 loc) · 821 Bytes
/
Copy pathCargo.toml
File metadata and controls
37 lines (30 loc) · 821 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
27
28
29
30
31
32
33
34
35
36
37
[workspace]
members = [
"crates/cli",
"crates/client",
"crates/config",
"crates/fuzz",
"crates/syn",
"crates/template",
]
exclude = ["examples/"]
resolver = "1"
[workspace.package]
version = "0.10.0"
edition = "2021"
authors = ["Ackee Blockchain Security"]
repository = "https://github.com/Ackee-Blockchain/trident"
documentation = "https://ackee.xyz/trident/docs/latest/"
description = "Trident is Rust based fuzzing framework for Solana programs written in Anchor."
license-file = "./LICENSE"
readme = "./README.md"
[workspace.dependencies]
# Solana
solana-sdk = "~2.0"
# ARBITRARY
arbitrary = { version = "1.3.0", features = ["derive"] }
# Honggfuzz
honggfuzz = { version = "0.5.55" }
#AFL
afl = { version = "0.15.10" }
syn = { version = "2.0", features = ["full", "parsing", "visit"] }