Skip to content
This repository has been archived by the owner on May 6, 2020. It is now read-only.

Commit

Permalink
Release 0.58.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jan 27, 2017
1 parent 0c084b9 commit 624722c
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 19 deletions.
6 changes: 3 additions & 3 deletions syntex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
[package]
name = "syntex"
version = "0.57.0"
version = "0.58.0"
authors = [ "[email protected]" ]
license = "MIT/Apache-2.0"
description = "A library that enables compile time syntax extension expansion"
Expand All @@ -9,5 9,5 @@ readme = "../README.md"
include = ["Cargo.toml", "src/**/*.rs"]

[dependencies]
syntex_errors = { version = "^0.57.0", path = "../syntex_errors" }
syntex_syntax = { version = "^0.57.0", path = "../syntex_syntax" }
syntex_errors = { version = "0.58", path = "../syntex_errors" }
syntex_syntax = { version = "0.58", path = "../syntex_syntax" }
13 changes: 6 additions & 7 deletions syntex_errors/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 1,15 @@
[package]
name = "syntex_errors"
version = "0.57.0"
version = "0.58.0"
authors = [ "[email protected]" ]
license = "MIT/Apache-2.0"
description = "Export of librustc_errors for code generation"
repository = "https://github.com/serde-rs/syntex"
include = ["Cargo.toml", "src/**/*.rs"]

[dependencies]
libc = "^0.2.13"
log = "^0.3.3"
rustc-serialize = "^0.3.16"
syntex_pos = { version = "^0.57.0", path = "../syntex_pos" }
term = "^0.4.4"
unicode-xid = "^0.0.4"
libc = "0.2.13"
rustc-serialize = "0.3.16"
syntex_pos = { version = "0.58", path = "../syntex_pos" }
term = "0.4.4"
unicode-xid = "0.0.4"
4 changes: 2 additions & 2 deletions syntex_pos/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 1,11 @@
[package]
name = "syntex_pos"
version = "0.57.0"
version = "0.58.0"
authors = [ "[email protected]" ]
license = "MIT/Apache-2.0"
description = "Export of libsyntax_pos for code generation"
repository = "https://github.com/serde-rs/syntex"
include = ["Cargo.toml", "src/**/*.rs"]

[dependencies]
rustc-serialize = "^0.3.16"
rustc-serialize = "0.3.16"
14 changes: 7 additions & 7 deletions syntex_syntax/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 1,16 @@
[package]
name = "syntex_syntax"
version = "0.57.0"
version = "0.58.0"
authors = [ "[email protected]" ]
license = "MIT/Apache-2.0"
description = "Export of libsyntax for code generation"
repository = "https://github.com/serde-rs/syntex"
include = ["Cargo.toml", "src/**/*.rs"]

[dependencies]
bitflags = "^0.7.0"
log = "^0.3.6"
rustc-serialize = "^0.3.16"
syntex_errors = { version = "^0.57.0", path = "../syntex_errors" }
syntex_pos = { version = "^0.57.0", path = "../syntex_pos" }
unicode-xid = "^0.0.4"
bitflags = "0.7.0"
log = "0.3.6"
rustc-serialize = "0.3.16"
syntex_errors = { version = "0.58", path = "../syntex_errors" }
syntex_pos = { version = "0.58", path = "../syntex_pos" }
unicode-xid = "0.0.4"

0 comments on commit 624722c

Please sign in to comment.