Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion crates/broker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ bincode = { workspace = true }
blake3_groth16 = { workspace = true }
bonsai-sdk = { workspace = true }
boundless-assessor = { workspace = true }
boundless-market = { workspace = true, features = ["prover_utils"] }
boundless-market = { workspace = true, features = ["prover_utils", "gcs"] }

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was thinking we'd model at broker level:

[features]
default = ["gcs"]
gcs = ["boundless-market/gcs"]

[dependencies]
boundless-market = { workspace = true, features = ["prover_utils"] }

so that you can still build broker without GCS if you like via cargo build -p broker --no-default-features

boundless-test-utils = { workspace = true, optional = true }
bytemuck = { workspace = true }
chrono = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/indexer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async-trait = { workspace = true }
aws-config = { workspace = true }
aws-sdk-s3 = { workspace = true }
bonsai-sdk = { version = "1.4.1", features = ["non_blocking"] }
boundless-market = { workspace = true }
boundless-market = { workspace = true, features = ["gcs"] }
boundless-povw = { workspace = true }
boundless-rewards = { workspace = true }
boundless-zkc = { workspace = true }
Expand Down
Loading
Loading