Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit d624117

Browse files
committed
Limit docs.rs builds
1 parent 645a987 commit d624117

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

associated-token-account/program/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "spl-associated-token-account"
33
version = "1.0.0"
4-
description = "SPL Associated Token Account"
4+
description = "Solana Program Library Associated Token Account"
55
authors = ["Solana Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"
77
license = "Apache-2.0"
@@ -21,3 +21,6 @@ tokio = { version = "0.3", features = ["macros"]}
2121

2222
[lib]
2323
crate-type = ["cdylib", "lib"]
24+
25+
[package.metadata.docs.rs]
26+
targets = ["x86_64-unknown-linux-gnu"]

memo/program/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,6 @@ solana-program = "1.4.4"
1515

1616
[lib]
1717
crate-type = ["cdylib", "lib"]
18+
19+
[package.metadata.docs.rs]
20+
targets = ["x86_64-unknown-linux-gnu"]

token/program/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,6 @@ solana-sdk = "1.4.4"
2424

2525
[lib]
2626
crate-type = ["cdylib", "lib"]
27+
28+
[package.metadata.docs.rs]
29+
targets = ["x86_64-unknown-linux-gnu"]

0 commit comments

Comments
 (0)