Ignore .txt files so that they don't get published

This commit is contained in:
Manish Goregaokar
2017-02-03 16:49:02 -08:00
parent 7625142dee
commit 0b717f8c08
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -2,3 +2,4 @@ target
Cargo.lock
scripts/tmp
*.pyc
*.txt
+2 -2
View File
@@ -1,7 +1,7 @@
[package]
name = "unicode-normalization"
version = "0.1.3"
version = "0.1.4"
authors = ["kwantam <kwantam@gmail.com>"]
homepage = "https://github.com/unicode-rs/unicode-normalization"
@@ -18,4 +18,4 @@ Decomposition and Recomposition, as described in
Unicode Standard Annex #15.
"""
exclude = [ "target/*", "Cargo.lock", "scripts/tmp" ]
exclude = [ "target/*", "Cargo.lock", "scripts/tmp", "*.txt" ]