-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🎨 move fuzz to separate crate and update examples
- Loading branch information
Showing
40 changed files
with
312 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
pub mod fuzzer_generator; | ||
pub mod program_client_generator; | ||
pub mod snapshot_generator; |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
[package] | ||
name = "trident-fuzz" | ||
version = "0.1.0" | ||
edition = "2021" | ||
repository = "https://github.com/Ackee-Blockchain/trident" | ||
license-file = "../../LICENSE" | ||
readme = "../../README.md" | ||
description = "The trident_fuzz crate helps you to write Rust Fuzz Tests for your programs with Trident." | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
# SOLANA | ||
solana-sdk = { workspace = true } | ||
solana-banks-client = { workspace = true } | ||
spl-token = { workspace = true } | ||
solana-program-runtime = { workspace = true } | ||
solana-program-test = { workspace = true } | ||
|
||
# ANCHOR | ||
anchor-lang = { workspace = true, features = ["idl-build", "init-if-needed"] } | ||
anchor-syn = { workspace = true } | ||
|
||
|
||
# ARBITRARY | ||
arbitrary = { version = "1.3.0", features = ["derive"] } | ||
|
||
|
||
# MISC | ||
thiserror = "1.0.30" | ||
syn = { version = "1.0.109", features = ["visit"] } | ||
proc-macro2 = { version = "1.0.66", default-features = false } | ||
quote = "1.0.14" | ||
heck = { version = "0.4.0", default-features = false } | ||
regex = "1.10.3" | ||
prettytable = "0.10.0" | ||
serde = { version = "1.0.136", default-features = false } | ||
serde_json = "1.0.72" | ||
tokio = "1" |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
Oops, something went wrong.