-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
we now version all crates in lockstep as they are developed together, they will never depend on different versions of each other
- Loading branch information
1 parent
cbdf652
commit 1c6a51a
Showing
19 changed files
with
42 additions
and
42 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ exclude = [ | |
] | ||
|
||
[workspace.package] | ||
version = "0.16.0" | ||
version = "0.17.0" | ||
authors = ["The C2Rust Project Developers <[email protected]>"] | ||
edition = "2021" | ||
readme = "README.md" | ||
|
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
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
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
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.16.0" | ||
version = "0.17.0" | ||
authors = ["Stephen Crane <[email protected]>", "The C2Rust Project Developers <[email protected]>"] | ||
edition = "2021" | ||
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.16.0" | ||
version = "0.17.0" | ||
authors = [ | ||
"The C2Rust Project Developers <[email protected]>", | ||
"Stuart Pernsteiner <[email protected]>", | ||
|
@@ -17,18 +17,18 @@ json = "0.12" | |
libc = "0.2" | ||
regex = "1.1" | ||
ena = "0.13" | ||
c2rust-ast-builder = { version = "0.16.0", path = "../c2rust-ast-builder" } | ||
c2rust-ast-printer = { version = "0.16.0", path = "../c2rust-ast-printer" } | ||
c2rust-ast-builder = { version = "0.17.0", path = "../c2rust-ast-builder" } | ||
c2rust-ast-printer = { version = "0.17.0", path = "../c2rust-ast-printer" } | ||
indexmap = { version = "1.0.1", features = ["serde-1"] } | ||
cargo = "0.44" | ||
clap = {version = "2.33", features = ["yaml"]} | ||
c2rust-analysis-rt = { path = "../analysis/runtime" } | ||
c2rust-analysis-rt = { path = "../analysis/runtime" , version = "0.17.0" } | ||
env_logger = "0.10" | ||
log = "0.4" | ||
rlua = "0.17" | ||
slotmap = {version = "0.4", features = ["unstable"]} | ||
derive_more = "0.99" | ||
c2rust-macros = { version = "0.16.0", path = "../c2rust-macros" } | ||
c2rust-macros = { version = "0.17.0", path = "../c2rust-macros" } | ||
flame = { version = "0.2.2", optional = true } | ||
flamer = { version = "0.4", optional = true } | ||
failure = "0.1" | ||
|
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_runtime" | ||
version = "0.1.0" | ||
version = "0.17.0" | ||
authors = ["Stuart Pernsteiner <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
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
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
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
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