Skip to content
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
1 change: 1 addition & 0 deletions account/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,4 @@ solana-sysvar = { workspace = true, features = ["bincode"], optional = true }

[dev-dependencies]
solana-account = { path = ".", features = ["dev-context-only-utils"] }
solana-pubkey = { workspace = true, features = ["std"] }
1 change: 1 addition & 0 deletions feature-gate-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ solana-system-interface = { workspace = true, optional = true, features = [

[dev-dependencies]
solana-feature-gate-interface = { path = ".", features = ["dev-context-only-utils"] }
solana-pubkey = { workspace = true, features = ["std"] }
strum = { workspace = true }
strum_macros = { workspace = true }

Expand Down
1 change: 1 addition & 0 deletions instruction/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ solana-define-syscall = { workspace = true }

[dev-dependencies]
solana-instruction = { path = ".", features = ["borsh"] }
solana-pubkey = { workspace = true, features = ["std"] }

[lints]
workspace = true
1 change: 1 addition & 0 deletions loader-v4-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ solana-system-interface = { workspace = true, features = ["bincode"], optional =
[dev-dependencies]
memoffset = { workspace = true }
solana-loader-v4-interface = { path = ".", features = ["dev-context-only-utils"] }
solana-pubkey = { workspace = true, features = ["std"] }

[lints]
workspace = true
3 changes: 1 addition & 2 deletions pubkey/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,12 @@ frozen-abi = ["solana-address/frozen-abi"]
rand = ["dep:rand", "solana-address/rand"]
serde = ["solana-address/serde"]
sha2 = ["solana-address/sha2"]
std = ["solana-address/std"]
std = ["solana-address/atomic", "solana-address/std"]
alloc = ["solana-address/alloc"]

[dependencies]
rand = { workspace = true, optional = true }
solana-address = { workspace = true, features = [
"atomic",
"copy",
"decode",
"error",
Expand Down
1 change: 1 addition & 0 deletions scripts/check-no-std.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ no_std_crates=(
-p solana-program-log
-p solana-program-log-macro
-p solana-program-memory
-p solana-pubkey
-p solana-rent
-p solana-sanitize
-p solana-sdk-ids
Expand Down