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

Commit 341149d

Browse files
committed
Back to no-entrypoint feature name
1 parent 0296ed7 commit 341149d

File tree

21 files changed

+28
-28
lines changed

21 files changed

+28
-28
lines changed

associated-token-account/program/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ license = "Apache-2.0"
88
edition = "2018"
99

1010
[features]
11-
exclude_entrypoint = []
11+
no-entrypoint = []
1212

1313
[dependencies]
1414
solana-program = "1.4.4"
15-
spl-token = { path = "../../token/program", features = ["exclude_entrypoint"] }
15+
spl-token = { path = "../../token/program", features = ["no-entrypoint"] }
1616

1717
[dev-dependencies]
1818
solana-program-test = "1.4.4"

associated-token-account/program/src/entrypoint.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Program entrypoint
22
3-
#![cfg(all(target_arch = "bpf", not(feature = "exclude_entrypoint")))]
3+
#![cfg(all(target_arch = "bpf", not(feature = "no-entrypoint")))]
44

55
use solana_program::{
66
account_info::AccountInfo, entrypoint, entrypoint::ProgramResult, pubkey::Pubkey,

memo/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "Apache-2.0"
88
edition = "2018"
99

1010
[features]
11-
exclude_entrypoint = []
11+
no-entrypoint = []
1212

1313
[dependencies]
1414
solana-program = "1.4.4"

memo/program/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
//! A simple program that accepts a string of encoded characters and verifies that it parses. Currently handles UTF-8.
44
5-
#[cfg(not(feature = "exclude_entrypoint"))]
5+
#[cfg(not(feature = "no-entrypoint"))]
66
mod entrypoint;
77

88
// Export current sdk types for downstream users building with a different sdk version

stake-pool/cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ solana-cli-config = "1.4.4"
1717
solana-client = "1.4.4"
1818
solana-logger = "1.4.4"
1919
solana-sdk = "1.4.4"
20-
spl-stake-pool = { version = "0.1.0", path="../program", features = [ "exclude_entrypoint" ] }
21-
spl-token = { path="../../token/program" }
20+
spl-stake-pool = { path="../program", features = [ "no-entrypoint" ] }
21+
spl-token = { path="../../token/program", features = [ "no-entrypoint" ] }
2222

2323
[[bin]]
2424
name = "spl-stake-pool"

stake-pool/program/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "Apache-2.0"
88
edition = "2018"
99

1010
[features]
11-
exclude_entrypoint = []
11+
no-entrypoint = []
1212

1313
[dependencies]
1414
arrayref = "0.3.6"
@@ -18,7 +18,7 @@ num_enum = "0.5.1"
1818
serde = "1.0.117"
1919
serde_derive = "1.0.103"
2020
solana-program = "1.4.4"
21-
spl-token = { path = "../../token/program", features = [ "exclude_entrypoint" ] }
21+
spl-token = { path = "../../token/program", features = [ "no-entrypoint" ] }
2222
thiserror = "1.0"
2323

2424
[dev-dependencies]

stake-pool/program/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pub mod processor;
88
pub mod stake;
99
pub mod state;
1010

11-
#[cfg(not(feature = "exclude_entrypoint"))]
11+
#[cfg(not(feature = "no-entrypoint"))]
1212
pub mod entrypoint;
1313

1414
// Export current sdk types for downstream users building with a different sdk version

themis/client_ristretto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ futures = "0.3"
1818
solana-banks-client = "1.4.4"
1919
solana-cli-config = "1.4.4"
2020
solana-sdk = "1.4.4"
21-
spl-themis-ristretto = { version = "0.1.0", path = "../program_ristretto", features = ["exclude_entrypoint"] }
21+
spl-themis-ristretto = { version = "0.1.0", path = "../program_ristretto", features = ["no-entrypoint"] }
2222
tarpc = { version = "0.22.0", features = ["full"] }
2323
tokio = "0.3"
2424
url = "2.1"

themis/program_ristretto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "Apache-2.0"
88
edition = "2018"
99

1010
[features]
11-
exclude_entrypoint = []
11+
no-entrypoint = []
1212
default = ["elgamal_ristretto/program"]
1313

1414
[dependencies]

themis/program_ristretto/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pub mod instruction;
66
pub mod processor;
77
pub mod state;
88

9-
#[cfg(not(feature = "exclude_entrypoint"))]
9+
#[cfg(not(feature = "no-entrypoint"))]
1010
pub mod entrypoint;
1111

1212
// Export current sdk types for downstream users building with a different sdk version

0 commit comments

Comments
 (0)