Skip to content

Commit

Permalink
Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ryoqun committed Jul 13, 2023
1 parent 03e38bc commit 03f0e5f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,11 @@ matches = { workspace = true }
raptorq = { workspace = true }
serde_json = { workspace = true }
serial_test = { workspace = true }
solana-core = { workspace = true, features = ["dev-context-only-utils"] }
# Even if we want to activate features only for dev-dep., `cargo publish`
# complains about self-dep with version specified. So don't inherit with
# `workspace = true`. In this way, `cargo publish` will strip this self-dep
# according to https://github.com/rust-lang/cargo/pull/7333
solana-core = { path = ".", features = ["dev-context-only-utils"] }
solana-logger = { workspace = true }
solana-program-runtime = { workspace = true }
solana-stake-program = { workspace = true }
Expand Down

0 comments on commit 03f0e5f

Please sign in to comment.