Skip to content

Commit

Permalink
🎨 Grouped poc imports within poctesting module, some deps can be opti…
Browse files Browse the repository at this point in the history
…onal now, added references within the client
  • Loading branch information
lukacan committed Dec 22, 2023
1 parent 40058ff commit a1343d6
Show file tree
Hide file tree
Showing 29 changed files with 1,303 additions and 1,140 deletions.
13 changes: 7 additions & 6 deletions crates/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ fuzzing = [
"arbitrary/derive",
"quinn-proto/arbitrary",
]
poctesting = ["dep:rstest", "dep:serial_test","dep:trdelnik-test"]

[build-dependencies]
anyhow = { version = "1.0.45", features = ["std"], default-features = false }
Expand All @@ -22,16 +23,15 @@ anyhow = { version = "1.0.45", features = ["std"], default-features = false }
pretty_assertions = "1.1.0"

[dependencies]
trdelnik-test = { workspace = true }
solana-sdk = { workspace = true }
solana-cli-output = { workspace = true }
solana-transaction-status = { workspace = true }
solana-account-decoder = { workspace = true }
anchor-client = { workspace = true }
anchor-lang = {version = "0.28.0"}
spl-token = { workspace = true }
spl-associated-token-account = { workspace = true }
tokio = { workspace = true }
rand = { workspace = true }
serde_json = { workspace = true }
serde = { workspace = true }
bincode = { workspace = true }
Expand All @@ -40,20 +40,21 @@ futures = { workspace = true }
fehler = { workspace = true }
thiserror = { workspace = true }
ed25519-dalek = { workspace = true }
serial_test = { workspace = true }
anyhow = { workspace = true }
cargo_metadata = { workspace = true }
syn = { workspace = true }
quote = { workspace = true }
heck = { workspace = true }
toml = { workspace = true }
log = { workspace = true }
rstest = { workspace = true }
lazy_static = { workspace = true }

trdelnik-test = { workspace = true,optional = true }
serial_test = { version = "2.0.0", optional = true }
rstest = { version = "0.18.2", optional = true }
honggfuzz = { version = "0.5.55", optional = true }
arbitrary = { version = "1.3.0", optional = true }
solana-program-test = { version = "1.16.9", optional = true }
quinn-proto = { version = "0.9.4", optional = true }
shellexpand = { workspace = true }
pathdiff = "0.2.1"
indicatif="0.17.7"
indicatif = "0.17.7"
Loading

0 comments on commit a1343d6

Please sign in to comment.