소스 검색

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

Quentin Monnet 8 년 전
부모
커밋
c88d579d2f
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  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",
 ]