Skip to content

Commit 710798c

Browse files
committed
fix: add serde feature to solana-account and solana-transaction-context dependencies
1 parent 59a60a9 commit 710798c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

crates/types/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ serde = { workspace = true }
2424
serde_json = { workspace = true }
2525
serde_with = { workspace = true, features = ["alloc", "macros"] }
2626
agave-feature-set = { workspace = true }
27-
solana-account = { workspace = true }
27+
solana-account = { workspace = true, features = ["serde"] }
2828
solana-account-decoder-client-types = { workspace = true }
2929
solana-clock = { workspace = true }
3030
solana-epoch-info = { workspace = true }
3131
solana-message = { workspace = true }
3232
solana-pubkey = { workspace = true }
3333
solana-signature = { workspace = true }
3434
solana-transaction = { workspace = true }
35-
solana-transaction-context = { workspace = true }
35+
solana-transaction-context = { workspace = true, features = ["serde"] }
3636
solana-transaction-error = { workspace = true }
3737
uuid = { workspace = true }
3838

@@ -45,4 +45,4 @@ test-case = { workspace = true }
4545

4646
[features]
4747
default = []
48-
prometheus = []
48+
prometheus = []

0 commit comments

Comments
 (0)