-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump c2rust version to 0.14.0 (#222)
* Update dependency patch versions * Update crates.io README instructions for 0.14.0 release * Bump c2rust version to 0.14
- Loading branch information
Showing
9 changed files
with
74 additions
and
74 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,6 +1,6 @@ | ||
[package] | ||
name = "c2rust-ast-builder" | ||
version = "0.13.0" | ||
version = "0.14.0" | ||
authors = [ | ||
"The C2Rust Project Developers <[email protected]>", | ||
"Eric Mertens <[email protected]>", | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "c2rust-ast-exporter" | ||
version = "0.13.0" | ||
version = "0.14.0" | ||
authors = [ | ||
"The C2Rust Project Developers <[email protected]>", | ||
"Eric Mertens <[email protected]>", | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "c2rust-ast-printer" | ||
version = "0.13.0" | ||
version = "0.14.0" | ||
authors = ["The Rust Project Developers", "Stephen Crane <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "c2rust-macros" | ||
version = "0.11.0" | ||
version = "0.14.0" | ||
authors = ["Stephen Crane <[email protected]>", "The C2Rust Project Developers <[email protected]>"] | ||
edition = "2018" | ||
description = "Procedural macro support crate for C2Rust" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "c2rust-refactor" | ||
version = "0.13.0" | ||
version = "0.14.0" | ||
authors = [ | ||
"The C2Rust Project Developers <[email protected]>", | ||
"Stuart Pernsteiner <[email protected]>", | ||
|
@@ -18,8 +18,8 @@ json = "0.12" | |
libc = "0.2" | ||
regex = "1.1" | ||
ena = "0.13" | ||
c2rust-ast-builder = { version = "0.13.0", path = "../c2rust-ast-builder" } | ||
c2rust-ast-printer = { version = "0.13.0", path = "../c2rust-ast-printer" } | ||
c2rust-ast-builder = { version = "0.14.0", path = "../c2rust-ast-builder" } | ||
c2rust-ast-printer = { version = "0.14.0", path = "../c2rust-ast-printer" } | ||
indexmap = { version = "1.0.1", features = ["serde-1"] } | ||
cargo = "0.40" | ||
clap = {version = "2.33", features = ["yaml"]} | ||
|
@@ -28,7 +28,7 @@ log = "0.4" | |
rlua = "0.17" | ||
slotmap = {version = "0.4", features = ["unstable"]} | ||
derive_more = "0.99" | ||
c2rust-macros = { version = "0.11.0", path = "../c2rust-macros" } | ||
c2rust-macros = { version = "0.14.0", path = "../c2rust-macros" } | ||
flame = { version = "0.2.2", optional = true } | ||
flamer = { version = "0.4", optional = true } | ||
|
||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "c2rust-transpile" | ||
version = "0.13.0" | ||
version = "0.14.0" | ||
authors = [ | ||
"The C2Rust Project Developers <[email protected]>", | ||
"Eric Mertens <[email protected]>", | ||
|
@@ -21,10 +21,10 @@ serde_derive = "1.0.80" | |
serde_bytes = "0.11" | ||
serde_bencode = "0.2" | ||
indexmap = { version = "1.0.1", features = ["serde-1"] } | ||
c2rust-ast-builder = { version = "0.13.0", path = "../c2rust-ast-builder" } | ||
c2rust-ast-builder = { version = "0.14.0", path = "../c2rust-ast-builder" } | ||
libc = "0.2" | ||
c2rust-ast-exporter = { version = "0.13.0", path = "../c2rust-ast-exporter" } | ||
c2rust-ast-printer = { version = "0.13.0", path = "../c2rust-ast-printer" } | ||
c2rust-ast-exporter = { version = "0.14.0", path = "../c2rust-ast-exporter" } | ||
c2rust-ast-printer = { version = "0.14.0", path = "../c2rust-ast-printer" } | ||
handlebars = "2.0" | ||
itertools = "0.8" | ||
pathdiff = "0.1.0" | ||
|
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 = "c2rust" | ||
description = "C to Rust translation, refactoring, and cross-checking" | ||
version = "0.13.0" | ||
version = "0.14.0" | ||
authors = ["The C2Rust Project Developers <[email protected]>"] | ||
license = "BSD-3-Clause" | ||
homepage = "https://c2rust.com/" | ||
|
@@ -21,8 +21,8 @@ log = "0.4" | |
env_logger = "0.7" | ||
regex = "1.3" | ||
shlex = "0.1" | ||
c2rust-transpile = { version = "0.13.0", path = "../c2rust-transpile" } | ||
c2rust-refactor = { version = "0.13.0", path = "../c2rust-refactor" } | ||
c2rust-transpile = { version = "0.14.0", path = "../c2rust-transpile" } | ||
c2rust-refactor = { version = "0.14.0", path = "../c2rust-refactor" } | ||
|
||
[build-dependencies] | ||
rustc_version = "0.2" | ||
|