Explorar el Código

Cargo.toml: edit whitelist to package also non .rs files for examples

Quentin Monnet hace 8 años
padre
commit
c88d579d2f
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. 4 1
      Cargo.toml

+ 4 - 1
Cargo.toml

@@ -14,7 +14,10 @@ license = "Apache-2.0/MIT"
 
 # Packaging directives
 include = [
-    "**/*.rs",
+    "src/**",
+    "examples/**",
+    "tests/**",
+    "bench/**",
     "LICENSE*",
     "Cargo.toml",
 ]