-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 1.36 KB
/
Cargo.toml
File metadata and controls
41 lines (36 loc) · 1.36 KB
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
[workspace]
members = [
"crates/cli",
"crates/client",
"crates/config",
"crates/fuzz",
"crates/syn",
"crates/template",
"crates/metrics",
]
exclude = ["examples/"]
resolver = "1"
[workspace.package]
version = "0.12.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]
# Internal Trident crates
trident-cli = { path = "crates/cli", version = "0.12.0" }
trident-client = { path = "crates/client", version = "0.12.0" }
trident-config = { path = "crates/config", version = "0.12.0" }
trident-fuzz = { path = "crates/fuzz", version = "0.12.0" }
trident-syn = { path = "crates/syn", version = "0.12.0" }
trident-template = { path = "crates/template", version = "0.12.0" }
trident-fuzz-metrics = { path = "crates/metrics", version = "0.12.0" }
# Derive macros
trident-derive-flow-executor = { path = "crates/fuzz/derive/flow_executor", version = "0.12.0" }
trident-derive-fuzz-test-methods = { path = "crates/fuzz/derive/fuzz_test_methods", version = "0.12.0" }
# External dependencies
solana-sdk = "2.3"
syn = { version = "2.0", features = ["full", "parsing", "visit"] }