From 9de1613e0b6241c376e5e613a9d1c9d09ebf4a3f Mon Sep 17 00:00:00 2001 From: Behnam Esfahbod Date: Tue, 20 Jun 2017 03:04:26 -0600 Subject: [PATCH] Fix some Cargo.toml issues --- .gitignore | 2 +- Cargo.toml | 10 +++++----- components/bidi/Cargo.toml | 2 +- components/idna/Cargo.toml | 2 +- components/idna/punycode/Cargo.toml | 2 +- components/ucd/Cargo.toml | 14 +++++--------- components/ucd/bidi/Cargo.toml | 8 ++------ components/ucd/core/Cargo.toml | 6 +----- components/ucd/normal/Cargo.toml | 8 ++------ components/ucd/utils/Cargo.toml | 6 +----- 10 files changed, 20 insertions(+), 40 deletions(-) diff --git a/.gitignore b/.gitignore index 7014dfe3..fe697ad0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ *.pyc *.rs.bk *.rs.rustfmt -/target/ +target/ Cargo.lock diff --git a/Cargo.toml b/Cargo.toml index 04603aff..692f727b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unic" -version = "0.1.0" +version = "0.1.1" authors = ["The UNIC Project Developers"] homepage = "https://github.com/behnam/rust-unic/" repository = "https://github.com/behnam/rust-unic/" @@ -13,10 +13,10 @@ readme = "README.md" [workspace] [dependencies] -unic-ucd = { path = "components/ucd/", version = "0.1" } -unic-bidi = { path = "components/bidi/", version = "0.1" } -unic-idna = { path = "components/idna/", version = "0.1" } -unic-normal = { path = "components/normal/", version = "0.1" } +unic-ucd = { path = "components/ucd/", version = "0.1.1" } +unic-bidi = { path = "components/bidi/", version = "0.1.0" } +unic-idna = { path = "components/idna/", version = "0.1.1" } +unic-normal = { path = "components/normal/", version = "0.1.0" } [features] default = [] diff --git a/components/bidi/Cargo.toml b/components/bidi/Cargo.toml index f5b95417..71b10220 100644 --- a/components/bidi/Cargo.toml +++ b/components/bidi/Cargo.toml @@ -5,7 +5,7 @@ authors = ["The UNIC Project Developers"] homepage = "https://github.com/behnam/rust-unic/" repository = "https://github.com/behnam/rust-unic/" license = "MIT/Apache-2.0" -keywords = ["text", "unicode", "rtl", "text", "layout", "bidi"] +keywords = ["text", "unicode", "rtl", "layout", "bidi"] description = "UNIC - Unicode Bidirectional Algorithm" [features] diff --git a/components/idna/Cargo.toml b/components/idna/Cargo.toml index 53f5e2b3..e4b1003b 100644 --- a/components/idna/Cargo.toml +++ b/components/idna/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unic-idna" -version = "0.1.0" +version = "0.1.1" authors = ["The UNIC Project Developers"] homepage = "https://github.com/behnam/rust-unic/" repository = "https://github.com/behnam/rust-unic/" diff --git a/components/idna/punycode/Cargo.toml b/components/idna/punycode/Cargo.toml index 0c692d65..98306df9 100644 --- a/components/idna/punycode/Cargo.toml +++ b/components/idna/punycode/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unic-idna-punycode" -version = "0.1.0" +version = "0.1.1" authors = ["The UNIC Project Developers"] homepage = "https://github.com/behnam/rust-unic/" repository = "https://github.com/behnam/rust-unic/" diff --git a/components/ucd/Cargo.toml b/components/ucd/Cargo.toml index 0800c6cd..5eba874e 100644 --- a/components/ucd/Cargo.toml +++ b/components/ucd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unic-ucd" -version = "0.1.0" +version = "0.1.1" authors = ["The UNIC Project Developers"] homepage = "https://github.com/behnam/rust-unic/" repository = "https://github.com/behnam/rust-unic/" @@ -8,12 +8,8 @@ license = "MIT/Apache-2.0" keywords = ["text", "unicode"] description = "UNIC - Unicode Character Database" -[features] -default = [] -bench_it = [] - [dependencies] -unic-ucd-core = { path = "core/", version = "0.1" } -unic-ucd-bidi = { path = "bidi/", version = "0.1" } -unic-ucd-normal = { path = "normal/", version = "0.1" } -unic-ucd-utils = { path = "utils/", version = "0.1" } +unic-ucd-core = { path = "core/", version = "0.1.1" } +unic-ucd-bidi = { path = "bidi/", version = "0.1.1" } +unic-ucd-normal = { path = "normal/", version = "0.1.1" } +unic-ucd-utils = { path = "utils/", version = "0.1.1" } diff --git a/components/ucd/bidi/Cargo.toml b/components/ucd/bidi/Cargo.toml index 2c2cd15a..2a4dee83 100644 --- a/components/ucd/bidi/Cargo.toml +++ b/components/ucd/bidi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unic-ucd-bidi" -version = "0.1.0" +version = "0.1.1" authors = ["The UNIC Project Developers"] homepage = "https://github.com/behnam/rust-unic/" repository = "https://github.com/behnam/rust-unic/" @@ -8,9 +8,5 @@ license = "MIT/Apache-2.0" keywords = ["text", "unicode"] description = "UNIC - Unicode Character Database - Bidi Properties" -[features] -default = [] -unstable = [] # Used for benchmakrs - [dependencies] -unic-ucd-core = { path = "../core/", version = "0.1" } +unic-ucd-core = { path = "../core/", version = "0.1.1" } diff --git a/components/ucd/core/Cargo.toml b/components/ucd/core/Cargo.toml index c041907b..197901c3 100644 --- a/components/ucd/core/Cargo.toml +++ b/components/ucd/core/Cargo.toml @@ -1,13 +1,9 @@ [package] name = "unic-ucd-core" -version = "0.1.0" +version = "0.1.1" authors = ["The UNIC Project Developers"] homepage = "https://github.com/behnam/rust-unic/" repository = "https://github.com/behnam/rust-unic/" license = "MIT/Apache-2.0" keywords = ["text", "unicode"] description = "UNIC - Unicode Character Database - Version" - -[features] -default = [] -unstable = [] # Used for benchmakrs diff --git a/components/ucd/normal/Cargo.toml b/components/ucd/normal/Cargo.toml index 18c6e7f2..b42d7f1a 100644 --- a/components/ucd/normal/Cargo.toml +++ b/components/ucd/normal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unic-ucd-normal" -version = "0.1.0" +version = "0.1.1" authors = ["The UNIC Project Developers"] homepage = "https://github.com/behnam/rust-unic/" repository = "https://github.com/behnam/rust-unic/" @@ -8,9 +8,5 @@ license = "MIT/Apache-2.0" keywords = ["text", "unicode"] description = "UNIC - Unicode Character Database - Normalization Properties" -[features] -default = [] -unstable = [] # Used for benchmakrs - [dependencies] -unic-ucd-core = { path = "../core/", version = "0.1" } +unic-ucd-core = { path = "../core/", version = "0.1.1" } diff --git a/components/ucd/utils/Cargo.toml b/components/ucd/utils/Cargo.toml index 488c4326..0452f5c8 100644 --- a/components/ucd/utils/Cargo.toml +++ b/components/ucd/utils/Cargo.toml @@ -1,13 +1,9 @@ [package] name = "unic-ucd-utils" -version = "0.1.0" +version = "0.1.1" authors = ["The UNIC Project Developers"] homepage = "https://github.com/behnam/rust-unic/" repository = "https://github.com/behnam/rust-unic/" license = "MIT/Apache-2.0" keywords = ["text", "unicode"] description = "UNIC - Utilities for working with Unicode Code Points" - -[features] -default = [] -unstable = [] # Used for benchmakrs