Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix/Fixed fuzz test generation with init-if-needed Anchor feature #131

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 4 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[workspace]
members = ["crates/cli", "crates/client", "crates/explorer", "crates/test"]
exclude = ["examples/"]
resolver = "1"


[workspace.dependencies]
Expand All @@ -20,19 +21,10 @@ solana-vote-program = "<1.18"
spl-token = "4.0.0"
spl-memo = "4.0.0"
spl-associated-token-account = "2.0.0"
tokio = { version = "1",features = [
"rt-multi-thread",
"macros",
"fs",
"signal",
"sync",
"time",
"io-util",
"process",
], default-features = false}
tokio = { version = "1", default-features = false }
rand = "0.8.5"
serde_json = "1.0.72"
serde = "1.0.136"
serde = { version = "1.0.136", default-features = false }
bincode = "1.3.3"
borsh = "0.10.3"
futures = "0.3.18"
Expand All @@ -42,7 +34,7 @@ ed25519-dalek = "1.0.1"
serial_test = "2.0.0"
anyhow = { version = "1.0.45", features = ["std"], default-features = false }
cargo_metadata = "0.17.0"
syn = { version = "1.0.109", features = ["full"] }
syn = { version = "1.0.109", default-features = false }
quote = "1.0.14"
heck = { version = "0.4.0", default-features = false }
toml = { version = "0.5.8", features = ["preserve_order"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ trdelnik-test = { workspace = true }
# INFO: This is a hack! Anchor-spl is here as dependency only to activate the idl-build feature, so that
# users do not have to do it manually in their program's Cargo.toml
anchor-spl = { version = "0.29.0", features = ["idl-build"] }
anchor-lang = { version = "0.29.0", features = ["idl-build"] }
anchor-lang = { version = "0.29.0", features = ["idl-build", "init-if-needed"] }
solana-sdk = { workspace = true }
solana-cli-output = { workspace = true }
solana-transaction-status = { workspace = true }
Expand All @@ -52,7 +52,7 @@ ed25519-dalek = { workspace = true }
serial_test = { workspace = true }
anyhow = { workspace = true }
cargo_metadata = { workspace = true }
syn = { workspace = true }
syn = { workspace = true, features = ["visit"] }
quote = { workspace = true }
heck = { workspace = true }
toml = { workspace = true }
Expand Down
Loading