Skip to content

Commit d52a00a

Browse files
committed
update version to 0.17.0
we now version all crates in lockstep as they are developed together, they will never depend on different versions of each other
1 parent d145d7a commit d52a00a

File tree

17 files changed

+46
-46
lines changed

17 files changed

+46
-46
lines changed

Cargo.lock

+12-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

analysis/runtime/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2rust-analysis-rt"
3-
version = "0.1.0"
3+
version = "0.17.0"
44
authors = ["The C2Rust Development Team <c2rust@immunant.com>",
55
"Stephen Crane <sjc@immunant.com>"]
66
edition = "2021"

c2rust-analyze/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2rust-analyze"
3-
version = "0.1.0"
3+
version = "0.17.0"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -13,11 +13,11 @@ assert_matches = "1.5.0"
1313
indexmap = "1.9.2"
1414

1515
[build-dependencies]
16-
c2rust-build-paths = { path = "../c2rust-build-paths" }
16+
c2rust-build-paths = { path = "../c2rust-build-paths" , version = "0.17.0" }
1717
print_bytes = "1.1"
1818

1919
[dev-dependencies]
20-
c2rust-build-paths = { path = "../c2rust-build-paths" }
20+
c2rust-build-paths = { path = "../c2rust-build-paths" , version = "0.17.0" }
2121

2222
[package.metadata.rust-analyzer]
2323
rustc_private = true

c2rust-asm-casts/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2rust-asm-casts"
3-
version = "0.2.0"
3+
version = "0.17.0"
44
authors = ["The C2Rust Project Developers <c2rust@immunant.com>"]
55
edition = "2021"
66
license = "BSD-3-Clause"

c2rust-ast-builder/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2rust-ast-builder"
3-
version = "0.16.0"
3+
version = "0.17.0"
44
authors = [
55
"The C2Rust Project Developers <c2rust@immunant.com>",
66
"Eric Mertens <emertens@galois.com>",

c2rust-ast-exporter/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2rust-ast-exporter"
3-
version = "0.16.0"
3+
version = "0.17.0"
44
authors = [
55
"The C2Rust Project Developers <c2rust@immunant.com>",
66
"Eric Mertens <emertens@galois.com>",
@@ -24,7 +24,7 @@ bindgen = { version = "0.63", features = ["logging"] }
2424
clang-sys = "1.3"
2525
cmake = "0.1.49"
2626
env_logger = "0.10"
27-
c2rust-build-paths = { path = "../c2rust-build-paths" }
27+
c2rust-build-paths = { path = "../c2rust-build-paths" , version = "0.17.0" }
2828

2929
[features]
3030
default = []

c2rust-ast-printer/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2rust-ast-printer"
3-
version = "0.16.0"
3+
version = "0.17.0"
44
authors = ["The Rust Project Developers", "Stephen Crane <sjc@immunant.com>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

c2rust-bitfields-derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2rust-bitfields-derive"
3-
version = "0.2.1"
3+
version = "0.17.0"
44
authors = [
55
"The C2Rust Project Developers <c2rust@immunant.com>",
66
"Daniel Kolsoi <djk@immunant.com>",

c2rust-bitfields/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2rust-bitfields"
3-
version = "0.3.0"
3+
version = "0.17.0"
44
authors = [
55
"The C2Rust Project Developers <c2rust@immunant.com>",
66
"Daniel Kolsoi <djk@immunant.com>",
@@ -13,7 +13,7 @@ description = "C-compatible struct bitfield implementation used in the C2Rust pr
1313
readme = "README.md"
1414

1515
[dependencies]
16-
c2rust-bitfields-derive = { version = "0.2", path = "../c2rust-bitfields-derive" }
16+
c2rust-bitfields-derive = { version = "0.17.0", path = "../c2rust-bitfields-derive" }
1717

1818
[dev-dependencies]
1919
libc = "0.2"

c2rust-build-paths/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2rust-build-paths"
3-
version = "0.1.0"
3+
version = "0.17.0"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

c2rust-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2rust-macros"
3-
version = "0.16.0"
3+
version = "0.17.0"
44
authors = ["Stephen Crane <sjc@immunant.com>", "The C2Rust Project Developers <c2rust@immunant.com>"]
55
edition = "2021"
66
description = "Procedural macro support crate for C2Rust"

c2rust-refactor/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2rust-refactor"
3-
version = "0.16.0"
3+
version = "0.17.0"
44
authors = [
55
"The C2Rust Project Developers <c2rust@immunant.com>",
66
"Stuart Pernsteiner <spernsteiner@galois.com>",
@@ -18,18 +18,18 @@ json = "0.12"
1818
libc = "0.2"
1919
regex = "1.1"
2020
ena = "0.13"
21-
c2rust-ast-builder = { version = "0.16.0", path = "../c2rust-ast-builder" }
22-
c2rust-ast-printer = { version = "0.16.0", path = "../c2rust-ast-printer" }
21+
c2rust-ast-builder = { version = "0.17.0", path = "../c2rust-ast-builder" }
22+
c2rust-ast-printer = { version = "0.17.0", path = "../c2rust-ast-printer" }
2323
indexmap = { version = "1.0.1", features = ["serde-1"] }
2424
cargo = "0.44"
2525
clap = {version = "2.33", features = ["yaml"]}
26-
c2rust-analysis-rt = { path = "../analysis/runtime" }
26+
c2rust-analysis-rt = { path = "../analysis/runtime" , version = "0.17.0" }
2727
env_logger = "0.10"
2828
log = "0.4"
2929
rlua = "0.17"
3030
slotmap = {version = "0.4", features = ["unstable"]}
3131
derive_more = "0.99"
32-
c2rust-macros = { version = "0.16.0", path = "../c2rust-macros" }
32+
c2rust-macros = { version = "0.17.0", path = "../c2rust-macros" }
3333
flame = { version = "0.2.2", optional = true }
3434
flamer = { version = "0.4", optional = true }
3535
failure = "0.1"

c2rust-refactor/runtime/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2rust_runtime"
3-
version = "0.1.0"
3+
version = "0.17.0"
44
authors = ["Stuart Pernsteiner <spernsteiner@galois.com>"]
55
edition = "2021"
66

c2rust-transpile/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2rust-transpile"
3-
version = "0.16.0"
3+
version = "0.17.0"
44
authors = [
55
"The C2Rust Project Developers <c2rust@immunant.com>",
66
"Eric Mertens <emertens@galois.com>",
@@ -13,10 +13,10 @@ description = "C2Rust transpiler implementation"
1313
edition = "2021"
1414

1515
[dependencies]
16-
c2rust-ast-builder = { version = "0.16.0", path = "../c2rust-ast-builder" }
17-
c2rust-ast-exporter = { version = "0.16.0", path = "../c2rust-ast-exporter" }
18-
c2rust-ast-printer = { version = "0.16.0", path = "../c2rust-ast-printer" }
19-
c2rust-bitfields = { version = "0.3.0", path = "../c2rust-bitfields" }
16+
c2rust-ast-builder = { version = "0.17.0", path = "../c2rust-ast-builder" }
17+
c2rust-ast-exporter = { version = "0.17.0", path = "../c2rust-ast-exporter" }
18+
c2rust-ast-printer = { version = "0.17.0", path = "../c2rust-ast-printer" }
19+
c2rust-bitfields = { version = "0.17.0", path = "../c2rust-bitfields" }
2020
colored = "2.0"
2121
dtoa = "1.0"
2222
failure = "0.1.5"

c2rust/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "c2rust"
33
description = "C to Rust translation, refactoring, and cross-checking"
4-
version = "0.16.0"
4+
version = "0.17.0"
55
authors = ["The C2Rust Project Developers <c2rust@immunant.com>"]
66
license = "BSD-3-Clause"
77
homepage = "https://c2rust.com/"
@@ -25,10 +25,10 @@ is_executable = "1.0"
2525
log = "0.4"
2626
regex = "1.3"
2727
shlex = "1.1"
28-
c2rust-transpile = { version = "0.16.0", path = "../c2rust-transpile" }
28+
c2rust-transpile = { version = "0.17.0", path = "../c2rust-transpile" }
2929

3030
[build-dependencies]
31-
c2rust-build-paths = { path = "../c2rust-build-paths" }
31+
c2rust-build-paths = { path = "../c2rust-build-paths" , version = "0.17.0" }
3232

3333
[features]
3434
# Force static linking of LLVM

dynamic_instrumentation/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "c2rust-instrument"
3-
version = "0.1.0"
3+
version = "0.17.0"
44
edition = "2021"
55

66
[dependencies]
77
anyhow = "1.0"
88
bincode = "1.0.1"
9-
c2rust-analysis-rt = { path = "../analysis/runtime"}
9+
c2rust-analysis-rt = { path = "../analysis/runtime", version = "0.17.0" }
1010
indexmap = "1.9"
1111
itertools = "0.10"
1212
once_cell = "1.13"
@@ -21,7 +21,7 @@ env_logger = "0.10"
2121
tempfile = "3.3"
2222

2323
[build-dependencies]
24-
c2rust-build-paths = { path = "../c2rust-build-paths" }
24+
c2rust-build-paths = { path = "../c2rust-build-paths" , version = "0.17.0" }
2525

2626
[package.metadata.rust-analyzer]
2727
rustc_private = true

pdg/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "c2rust-pdg"
3-
version = "0.1.0"
3+
version = "0.17.0"
44
edition = "2021"
55

66
[dependencies]
77
bincode = "1.0"
8-
c2rust-analysis-rt = { path = "../analysis/runtime"}
8+
c2rust-analysis-rt = { path = "../analysis/runtime", version = "0.17.0" }
99
indexed_vec = "1.2"
1010
indexmap = "1.8"
1111
serde = { version = "1.0", features = ["derive"] }
@@ -18,7 +18,7 @@ linked_hash_set = "0.1"
1818
clap = { version = "3.2", features = ["derive"] }
1919

2020
[build-dependencies]
21-
c2rust-build-paths = { path = "../c2rust-build-paths" }
21+
c2rust-build-paths = { path = "../c2rust-build-paths" , version = "0.17.0" }
2222

2323
[dev-dependencies]
2424
insta = "1.15"

0 commit comments

Comments
 (0)