Skip to content

Commit 99ceedb

Browse files
committed
update version to 0.18.0
1 parent eda4f4b commit 99ceedb

File tree

19 files changed

+42
-42
lines changed

19 files changed

+42
-42
lines changed

Cargo.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ exclude = [
2323
]
2424

2525
[workspace.package]
26-
version = "0.17.0"
26+
version = "0.18.0"
2727
authors = ["The C2Rust Project Developers <[email protected]>"]
2828
edition = "2021"
2929
readme = "README.md"

analysis/tests/lighttpd-minimal/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.17.0" }
8+
c2rust-analysis-rt = { path = "../../runtime", optional = true, version = "0.18.0" }
99

1010
[features]
1111
miri = []

analysis/tests/lighttpd/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.17.0" }
8+
c2rust-analysis-rt = { path = "../../runtime", optional = true, version = "0.18.0" }
99

1010
[features]
1111
miri = []

analysis/tests/misc/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.17.0" }
10+
c2rust-analysis-rt = { path = "../../runtime", optional = true, version = "0.18.0" }
1111

1212
[features]
1313
miri = []

c2rust-analyze/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ env_logger = "0.10.0"
2121
log = "0.4.17"
2222

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

2727
[dev-dependencies]
28-
c2rust-build-paths = { path = "../c2rust-build-paths" , version = "0.17.0" }
28+
c2rust-build-paths = { path = "../c2rust-build-paths", version = "0.18.0" }
2929
clap = { version = "4.1.9", features = ["derive"] }
3030
shlex = "1.1.0"
3131

c2rust-ast-exporter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ bindgen = { version = "0.65", 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" , version = "0.17.0" }
26+
c2rust-build-paths = { path = "../c2rust-build-paths", version = "0.18.0" }
2727

2828
[features]
2929
default = []

c2rust-bitfields/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.17.0", path = "../c2rust-bitfields-derive" }
15+
c2rust-bitfields-derive = { version = "0.18.0", path = "../c2rust-bitfields-derive" }
1616

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

c2rust-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2rust-macros"
3-
version = "0.17.0"
3+
version = "0.18.0"
44
authors = ["Stephen Crane <[email protected]>", "The C2Rust Project Developers <[email protected]>"]
55
edition = "2021"
66
description = "Procedural macro support crate for C2Rust"

c2rust-refactor/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2rust-refactor"
3-
version = "0.17.0"
3+
version = "0.18.0"
44
authors = [
55
"The C2Rust Project Developers <[email protected]>",
66
"Stuart Pernsteiner <[email protected]>",
@@ -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.17.0", path = "../c2rust-ast-builder" }
21-
c2rust-ast-printer = { version = "0.17.0", path = "../c2rust-ast-printer" }
20+
c2rust-ast-builder = { version = "0.18.0", path = "../c2rust-ast-builder" }
21+
c2rust-ast-printer = { version = "0.18.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" , version = "0.17.0" }
25+
c2rust-analysis-rt = { path = "../analysis/runtime", version = "0.18.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.17.0", path = "../c2rust-macros" }
31+
c2rust-macros = { version = "0.18.0", path = "../c2rust-macros" }
3232
flame = { version = "0.2.2", optional = true }
3333
flamer = { version = "0.4", optional = true }
3434
failure = "0.1"

0 commit comments

Comments
 (0)