Browse Source

cargo: autodiscover should be off for examples

Ensure that cargo does not attempt to autodiscover examples. This causes
problems with utils.rs and ensures that an example section exists in the
Cargo.toml.
Dan Robertson 7 years ago
parent
commit
4397004267
1 changed files with 3 additions and 0 deletions
  1. 3 0
      Cargo.toml

+ 3 - 0
Cargo.toml

@@ -10,6 +10,9 @@ readme = "README.md"
 keywords = ["ip", "tcp", "udp", "ethernet", "network"]
 keywords = ["ip", "tcp", "udp", "ethernet", "network"]
 categories = ["embedded"]
 categories = ["embedded"]
 license = "0BSD"
 license = "0BSD"
+# Each example should have an explicit `[[example]]` section here to
+# ensure that the correct features are enabled.
+autoexamples = false
 
 
 [dependencies]
 [dependencies]
 managed = { version = "0.5", default-features = false, features = ["map"] }
 managed = { version = "0.5", default-features = false, features = ["map"] }