Skip to content

Commit

Permalink
update version to 0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fw-immunant committed May 22, 2023
1 parent eda4f4b commit 99ceedb
Show file tree
Hide file tree
Showing 19 changed files with 42 additions and 42 deletions.
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ exclude = [
]

[workspace.package]
version = "0.17.0"
version = "0.18.0"
authors = ["The C2Rust Project Developers <[email protected]>"]
edition = "2021"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion analysis/tests/lighttpd-minimal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
libc = "0.2"
c2rust-analysis-rt = { path = "../../runtime", optional = true, version = "0.17.0" }
c2rust-analysis-rt = { path = "../../runtime", optional = true, version = "0.18.0" }

[features]
miri = []
2 changes: 1 addition & 1 deletion analysis/tests/lighttpd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
libc = "0.2"
c2rust-analysis-rt = { path = "../../runtime", optional = true, version = "0.17.0" }
c2rust-analysis-rt = { path = "../../runtime", optional = true, version = "0.18.0" }

[features]
miri = []
2 changes: 1 addition & 1 deletion analysis/tests/misc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
libc = "0.2"
c2rust-analysis-rt = { path = "../../runtime", optional = true, version = "0.17.0" }
c2rust-analysis-rt = { path = "../../runtime", optional = true, version = "0.18.0" }

[features]
miri = []
4 changes: 2 additions & 2 deletions c2rust-analyze/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ env_logger = "0.10.0"
log = "0.4.17"

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

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

Expand Down
2 changes: 1 addition & 1 deletion c2rust-ast-exporter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ bindgen = { version = "0.65", features = ["logging"] }
clang-sys = "1.3"
cmake = "0.1.49"
env_logger = "0.10"
c2rust-build-paths = { path = "../c2rust-build-paths" , version = "0.17.0" }
c2rust-build-paths = { path = "../c2rust-build-paths", version = "0.18.0" }

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion c2rust-bitfields/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ keywords.workspace = true
categories.workspace = true

[dependencies]
c2rust-bitfields-derive = { version = "0.17.0", path = "../c2rust-bitfields-derive" }
c2rust-bitfields-derive = { version = "0.18.0", path = "../c2rust-bitfields-derive" }

[dev-dependencies]
libc = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion c2rust-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "c2rust-macros"
version = "0.17.0"
version = "0.18.0"
authors = ["Stephen Crane <[email protected]>", "The C2Rust Project Developers <[email protected]>"]
edition = "2021"
description = "Procedural macro support crate for C2Rust"
Expand Down
10 changes: 5 additions & 5 deletions c2rust-refactor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "c2rust-refactor"
version = "0.17.0"
version = "0.18.0"
authors = [
"The C2Rust Project Developers <[email protected]>",
"Stuart Pernsteiner <[email protected]>",
Expand All @@ -17,18 +17,18 @@ json = "0.12"
libc = "0.2"
regex = "1.1"
ena = "0.13"
c2rust-ast-builder = { version = "0.17.0", path = "../c2rust-ast-builder" }
c2rust-ast-printer = { version = "0.17.0", path = "../c2rust-ast-printer" }
c2rust-ast-builder = { version = "0.18.0", path = "../c2rust-ast-builder" }
c2rust-ast-printer = { version = "0.18.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" , version = "0.17.0" }
c2rust-analysis-rt = { path = "../analysis/runtime", version = "0.18.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.17.0", path = "../c2rust-macros" }
c2rust-macros = { version = "0.18.0", path = "../c2rust-macros" }
flame = { version = "0.2.2", optional = true }
flamer = { version = "0.4", optional = true }
failure = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion c2rust-refactor/runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "c2rust_runtime"
version = "0.17.0"
version = "0.18.0"
authors = ["Stuart Pernsteiner <[email protected]>"]
edition = "2021"

Expand Down
8 changes: 4 additions & 4 deletions c2rust-transpile/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ keywords.workspace = true
categories.workspace = true

[dependencies]
c2rust-ast-builder = { version = "0.17.0", path = "../c2rust-ast-builder" }
c2rust-ast-exporter = { version = "0.17.0", path = "../c2rust-ast-exporter" }
c2rust-ast-printer = { version = "0.17.0", path = "../c2rust-ast-printer" }
c2rust-bitfields = { version = "0.17.0", path = "../c2rust-bitfields" }
c2rust-ast-builder = { version = "0.18.0", path = "../c2rust-ast-builder" }
c2rust-ast-exporter = { version = "0.18.0", path = "../c2rust-ast-exporter" }
c2rust-ast-printer = { version = "0.18.0", path = "../c2rust-ast-printer" }
c2rust-bitfields = { version = "0.18.0", path = "../c2rust-bitfields" }
colored = "2.0"
dtoa = "1.0"
failure = "0.1.5"
Expand Down
4 changes: 2 additions & 2 deletions c2rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ is_executable = "1.0"
log = "0.4"
regex = "1.3"
shlex = "1.1"
c2rust-transpile = { version = "0.17.0", path = "../c2rust-transpile" }
c2rust-transpile = { version = "0.18.0", path = "../c2rust-transpile" }
# Required to avoid too-new version (dep of git-testament) which our rustc cannot compile
time-macros = "=0.2.6"

[build-dependencies]
c2rust-build-paths = { path = "../c2rust-build-paths" , version = "0.17.0" }
c2rust-build-paths = { path = "../c2rust-build-paths", version = "0.18.0" }

[features]
# Force static linking of LLVM
Expand Down
4 changes: 2 additions & 2 deletions dynamic_instrumentation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ categories.workspace = true
[dependencies]
anyhow = "1.0"
bincode = "1.0.1"
c2rust-analysis-rt = { path = "../analysis/runtime", version = "0.17.0" }
c2rust-analysis-rt = { path = "../analysis/runtime", version = "0.18.0" }
indexmap = "1.9"
itertools = "0.10"
once_cell = "1.13"
Expand All @@ -29,7 +29,7 @@ env_logger = "0.10"
tempfile = "3.3"

[build-dependencies]
c2rust-build-paths = { path = "../c2rust-build-paths" , version = "0.17.0" }
c2rust-build-paths = { path = "../c2rust-build-paths", version = "0.18.0" }

[package.metadata.rust-analyzer]
rustc_private = true
2 changes: 1 addition & 1 deletion examples/robotfindskitten/repo/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name = "robotfindskitten"
path = "src/robotfindskitten.rs"

[dependencies]
c2rust_runtime = { path = "../../../../c2rust-refactor/runtime" , version = "0.17.0" }
c2rust_runtime = { path = "../../../../c2rust-refactor/runtime", version = "0.18.0" }
rand = "0.5.5"
pancurses = "0.16.0"
libc = "0.2"
4 changes: 2 additions & 2 deletions pdg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ categories.workspace = true

[dependencies]
bincode = "1.0"
c2rust-analysis-rt = { path = "../analysis/runtime", version = "0.17.0" }
c2rust-analysis-rt = { path = "../analysis/runtime", version = "0.18.0" }
indexed_vec = "1.2"
indexmap = "1.8"
serde = { version = "1.0", features = ["derive"] }
Expand All @@ -26,7 +26,7 @@ linked_hash_set = "0.1"
clap = { version = "3.2", features = ["derive"] }

[build-dependencies]
c2rust-build-paths = { path = "../c2rust-build-paths" , version = "0.17.0" }
c2rust-build-paths = { path = "../c2rust-build-paths", version = "0.18.0" }

[dev-dependencies]
insta = "1.15"
Expand Down
2 changes: 1 addition & 1 deletion tests/asm.aarch64/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ edition = "2021"

[dependencies]
libc = "0.2"
c2rust-asm-casts = { path = "../../c2rust-asm-casts" , version = "0.17.0" }
c2rust-asm-casts = { path = "../../c2rust-asm-casts", version = "0.18.0" }
2 changes: 1 addition & 1 deletion tests/asm.x86_64/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ edition = "2021"

[dependencies]
libc = "0.2"
c2rust-asm-casts = { path = "../../c2rust-asm-casts" , version = "0.17.0" }
c2rust-asm-casts = { path = "../../c2rust-asm-casts", version = "0.18.0" }
2 changes: 1 addition & 1 deletion tests/structs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ version = "0.1.0"
edition = "2021"

[dependencies]
c2rust-bitfields = { path = "../../c2rust-bitfields" , version = "0.17.0" }
c2rust-bitfields = { path = "../../c2rust-bitfields", version = "0.18.0" }
memoffset = "0.2"
libc = "0.2"

0 comments on commit 99ceedb

Please sign in to comment.