Skip to content

Commit 7e4e433

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 b9a4643 commit 7e4e433

File tree

19 files changed

+42
-42
lines changed

19 files changed

+42
-42
lines changed

Cargo.lock

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

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ exclude = [
2323
]
2424

2525
[workspace.package]
26-
version = "0.16.0"
26+
version = "0.17.0"
2727
authors = ["The C2Rust Project Developers <c2rust@immunant.com>"]
2828
edition = "2021"
2929
readme = "README.md"

analysis/tests/lighttpd-minimal/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
libc = "0.2"
8-
c2rust-analysis-rt = { path = "../../runtime", optional = true, version = "0.16.0" }
8+
c2rust-analysis-rt = { path = "../../runtime", optional = true, version = "0.17.0" }
99

1010
[features]
1111
miri = []

analysis/tests/lighttpd/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
libc = "0.2"
8-
c2rust-analysis-rt = { path = "../../runtime", optional = true, version = "0.16.0" }
8+
c2rust-analysis-rt = { path = "../../runtime", optional = true, version = "0.17.0" }
99

1010
[features]
1111
miri = []

analysis/tests/misc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77

88
[dependencies]
99
libc = "0.2"
10-
c2rust-analysis-rt = { path = "../../runtime", optional = true, version = "0.16.0" }
10+
c2rust-analysis-rt = { path = "../../runtime", optional = true, version = "0.17.0" }
1111

1212
[features]
1313
miri = []

c2rust-analyze/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ assert_matches = "1.5.0"
1919
indexmap = "1.9.2"
2020

2121
[build-dependencies]
22-
c2rust-build-paths = { path = "../c2rust-build-paths" }
22+
c2rust-build-paths = { path = "../c2rust-build-paths" , version = "0.17.0" }
2323
print_bytes = "1.1"
2424

2525
[dev-dependencies]
26-
c2rust-build-paths = { path = "../c2rust-build-paths" }
26+
c2rust-build-paths = { path = "../c2rust-build-paths" , version = "0.17.0" }
2727

2828
[package.metadata.rust-analyzer]
2929
rustc_private = true

c2rust-ast-exporter/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ bindgen = { version = "0.63", features = ["logging"] }
2323
clang-sys = "1.3"
2424
cmake = "0.1.49"
2525
env_logger = "0.10"
26-
c2rust-build-paths = { path = "../c2rust-build-paths" }
26+
c2rust-build-paths = { path = "../c2rust-build-paths" , version = "0.17.0" }
2727

2828
[features]
2929
default = []

c2rust-bitfields/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ keywords.workspace = true
1212
categories.workspace = true
1313

1414
[dependencies]
15-
c2rust-bitfields-derive = { version = "0.16.0", path = "../c2rust-bitfields-derive" }
15+
c2rust-bitfields-derive = { version = "0.17.0", path = "../c2rust-bitfields-derive" }
1616

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

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>",
@@ -17,18 +17,18 @@ json = "0.12"
1717
libc = "0.2"
1818
regex = "1.1"
1919
ena = "0.13"
20-
c2rust-ast-builder = { version = "0.16.0", path = "../c2rust-ast-builder" }
21-
c2rust-ast-printer = { version = "0.16.0", path = "../c2rust-ast-printer" }
20+
c2rust-ast-builder = { version = "0.17.0", path = "../c2rust-ast-builder" }
21+
c2rust-ast-printer = { version = "0.17.0", path = "../c2rust-ast-printer" }
2222
indexmap = { version = "1.0.1", features = ["serde-1"] }
2323
cargo = "0.44"
2424
clap = {version = "2.33", features = ["yaml"]}
25-
c2rust-analysis-rt = { path = "../analysis/runtime" }
25+
c2rust-analysis-rt = { path = "../analysis/runtime" , version = "0.17.0" }
2626
env_logger = "0.10"
2727
log = "0.4"
2828
rlua = "0.17"
2929
slotmap = {version = "0.4", features = ["unstable"]}
3030
derive_more = "0.99"
31-
c2rust-macros = { version = "0.16.0", path = "../c2rust-macros" }
31+
c2rust-macros = { version = "0.17.0", path = "../c2rust-macros" }
3232
flame = { version = "0.2.2", optional = true }
3333
flamer = { version = "0.4", optional = true }
3434
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

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ keywords.workspace = true
1212
categories.workspace = true
1313

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

c2rust/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -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

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ categories.workspace = true
1414
[dependencies]
1515
anyhow = "1.0"
1616
bincode = "1.0.1"
17-
c2rust-analysis-rt = { path = "../analysis/runtime"}
17+
c2rust-analysis-rt = { path = "../analysis/runtime", version = "0.17.0" }
1818
indexmap = "1.9"
1919
itertools = "0.10"
2020
once_cell = "1.13"
@@ -29,7 +29,7 @@ env_logger = "0.10"
2929
tempfile = "3.3"
3030

3131
[build-dependencies]
32-
c2rust-build-paths = { path = "../c2rust-build-paths" }
32+
c2rust-build-paths = { path = "../c2rust-build-paths" , version = "0.17.0" }
3333

3434
[package.metadata.rust-analyzer]
3535
rustc_private = true

examples/robotfindskitten/repo/rust/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "robotfindskitten"
99
path = "src/robotfindskitten.rs"
1010

1111
[dependencies]
12-
c2rust_runtime = { path = "../../../../c2rust-refactor/runtime" }
12+
c2rust_runtime = { path = "../../../../c2rust-refactor/runtime" , version = "0.17.0" }
1313
rand = "0.5.5"
1414
pancurses = "0.16.0"
1515
libc = "0.2"

pdg/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ categories.workspace = true
1313

1414
[dependencies]
1515
bincode = "1.0"
16-
c2rust-analysis-rt = { path = "../analysis/runtime"}
16+
c2rust-analysis-rt = { path = "../analysis/runtime", version = "0.17.0" }
1717
indexed_vec = "1.2"
1818
indexmap = "1.8"
1919
serde = { version = "1.0", features = ["derive"] }
@@ -26,7 +26,7 @@ linked_hash_set = "0.1"
2626
clap = { version = "3.2", features = ["derive"] }
2727

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

3131
[dev-dependencies]
3232
insta = "1.15"

tests/asm.aarch64/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ edition = "2021"
55

66
[dependencies]
77
libc = "0.2"
8-
c2rust-asm-casts = { path = "../../c2rust-asm-casts" }
8+
c2rust-asm-casts = { path = "../../c2rust-asm-casts" , version = "0.17.0" }

tests/asm.x86_64/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ edition = "2021"
55

66
[dependencies]
77
libc = "0.2"
8-
c2rust-asm-casts = { path = "../../c2rust-asm-casts" }
8+
c2rust-asm-casts = { path = "../../c2rust-asm-casts" , version = "0.17.0" }

tests/structs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
c2rust-bitfields = { path = "../../c2rust-bitfields" }
7+
c2rust-bitfields = { path = "../../c2rust-bitfields" , version = "0.17.0" }
88
memoffset = "0.2"
99
libc = "0.2"

0 commit comments

Comments
 (0)