Browse Source

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

Quentin Monnet 8 năm trước cách đây
mục cha
commit
c88d579d2f
1 tập tin đã thay đổi với 4 bổ sung1 xóa
  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",
 ]