Skip to content

Commit 573161f

Browse files
committedAug 4, 2015
Bump phf requirement and version numbers.
1 parent 4c81279 commit 573161f

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed
 

‎Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "string_cache"
4-
version = "0.1.10"
4+
version = "0.1.11"
55
authors = [ "The Servo Project Developers" ]
66
description = "A string interning library for Rust, developed as part of the Servo project."
77
license = "MIT / Apache-2.0"
@@ -37,13 +37,13 @@ optional = true
3737

3838
[dependencies.string_cache_plugin]
3939
path = "plugin"
40-
version = "0.1.5"
40+
version = "0.1.7"
4141
optional = true
4242

4343
[dependencies.string_cache_shared]
4444
path = "shared"
45-
version = "0.1.4"
45+
version = "0.1.6"
4646

4747
[build-dependencies.string_cache_shared]
4848
path = "shared"
49-
version = "0.1.4"
49+
version = "0.1.6"

‎plugin/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "string_cache_plugin"
4-
version = "0.1.6"
4+
version = "0.1.7"
55
authors = [ "The Servo Project Developers" ]
66
description = "A string interning library for Rust, developed as part of the Servo project − compiler plugin."
77
license = "MIT / Apache-2.0"
@@ -14,7 +14,7 @@ plugin = true
1414

1515
[dependencies.string_cache_shared]
1616
path = "../shared"
17-
version = "0.1.0"
17+
version = "0.1.6"
1818

1919
[dependencies]
2020
lazy_static = "0.1.10"

‎shared/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "string_cache_shared"
4-
version = "0.1.5"
4+
version = "0.1.6"
55
authors = [ "The Servo Project Developers" ]
66
description = "A string interning library for Rust, developed as part of the Servo project − shared code between the compiler plugin and main crate."
77
license = "MIT / Apache-2.0"
@@ -15,7 +15,7 @@ path = "lib.rs"
1515

1616
[dependencies]
1717
debug_unreachable = "0.0.6"
18-
phf_shared = "0.7.3"
18+
phf_shared = "0.7.4"
1919

2020
[build-dependencies]
21-
phf_generator = "0.7.3"
21+
phf_generator = "0.7.4"

0 commit comments

Comments
 (0)
Please sign in to comment.