Skip to content

Commit

Permalink
Fix some Cargo.toml issues
Browse files Browse the repository at this point in the history
  • Loading branch information
behnam committed Jun 20, 2017
1 parent 7a1ce40 commit 9de1613
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 40 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
*.pyc
*.rs.bk
*.rs.rustfmt
/target/
target/
Cargo.lock
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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/"
Expand All @@ -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 = []
Expand Down
2 changes: 1 addition & 1 deletion components/bidi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion components/idna/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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/"
Expand Down
2 changes: 1 addition & 1 deletion components/idna/punycode/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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/"
Expand Down
14 changes: 5 additions & 9 deletions components/ucd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,15 @@
[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/"
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" }
8 changes: 2 additions & 6 deletions components/ucd/bidi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
[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/"
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" }
6 changes: 1 addition & 5 deletions components/ucd/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
8 changes: 2 additions & 6 deletions components/ucd/normal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
[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/"
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" }
6 changes: 1 addition & 5 deletions components/ucd/utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 9de1613

Please sign in to comment.