-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Exclude uchardet-sys from uchardet package
See rust-lang/cargo#937 for discussion.
- Loading branch information
Showing
1 changed file
with
6 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
|
||
name = "uchardet" | ||
version = "0.0.3" | ||
version = "0.0.4" | ||
authors = ["Eric Kidd <[email protected]>"] | ||
|
||
description = "Detect character encodings using uchardet library" | ||
|
@@ -12,5 +12,10 @@ repository = "https://github.com/emk/rust-uchardet" | |
readme = "README.md" | ||
keywords = ["encoding", "text", "i18n"] | ||
|
||
# Make sure we don't package this in our build, which will badly confuse | ||
# crates.io and Cargo. See https://github.com/rust-lang/cargo/issues/937 | ||
# for discussion. | ||
exclude = ["uchardet-sys"] | ||
|
||
[dependencies] | ||
uchardet-sys = "~0.0.2" |