We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df52b45 commit 99d5b29Copy full SHA for 99d5b29
program/src/Cargo.toml
@@ -8,7 +8,7 @@ license = "Apache-2.0"
8
edition = "2018"
9
10
[features]
11
-exclude_entrypoint = []
+no-entrypoint = []
12
13
[dependencies]
14
solana-program = "1.4.4"
program/src/lib.rs
@@ -2,7 +2,7 @@
2
3
//! A simple program that accepts a string of encoded characters and verifies that it parses. Currently handles UTF-8.
4
5
-#[cfg(not(feature = "exclude_entrypoint"))]
+#[cfg(not(feature = "no-entrypoint"))]
6
mod entrypoint;
7
// Export current sdk types for downstream users building with a different sdk version
0 commit comments