Skip to content

Commit 6525e17

Browse files
committed
Release 1.0.179
1 parent 87761ce commit 6525e17

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxx"
3-
version = "1.0.178"
3+
version = "1.0.179"
44
authors = ["David Tolnay <[email protected]>"]
55
categories = ["development-tools::ffi", "api-bindings", "no-std"]
66
description = "Safe interop between Rust and C++"
@@ -23,17 +23,17 @@ alloc = []
2323
std = ["alloc", "foldhash/std"]
2424

2525
[dependencies]
26-
cxxbridge-macro = { version = "=1.0.178", path = "macro" }
26+
cxxbridge-macro = { version = "=1.0.179", path = "macro" }
2727
foldhash = { version = "0.2", default-features = false }
2828
link-cplusplus = "1.0.11"
2929

3030
[build-dependencies]
3131
cc = "1.0.101"
32-
cxxbridge-flags = { version = "=1.0.178", path = "flags", default-features = false }
32+
cxxbridge-flags = { version = "=1.0.179", path = "flags", default-features = false }
3333

3434
[dev-dependencies]
3535
cc = "1.0.101"
36-
cxx-build = { version = "=1.0.178", path = "gen/build" }
36+
cxx-build = { version = "=1.0.179", path = "gen/build" }
3737
cxx-gen = { version = "0.7", path = "gen/lib" }
3838
cxx-test-suite = { version = "0", path = "tests/ffi" }
3939
indoc = "2"
@@ -47,7 +47,7 @@ trybuild = { version = "1.0.81", features = ["diff"] }
4747

4848
# Disallow incompatible cxxbridge-cmd version appearing in the same lockfile.
4949
[target.'cfg(any())'.build-dependencies]
50-
cxxbridge-cmd = { version = "=1.0.178", path = "gen/cmd" }
50+
cxxbridge-cmd = { version = "=1.0.179", path = "gen/cmd" }
5151

5252
[workspace]
5353
members = ["demo", "flags", "gen/build", "gen/cmd", "gen/lib", "macro", "tests/ffi"]

flags/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxxbridge-flags"
3-
version = "1.0.178"
3+
version = "1.0.179"
44
authors = ["David Tolnay <[email protected]>"]
55
categories = ["development-tools::ffi", "compilers"]
66
description = "Compiler configuration of the `cxx` crate (implementation detail)"

gen/build/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxx-build"
3-
version = "1.0.178"
3+
version = "1.0.179"
44
authors = ["David Tolnay <[email protected]>"]
55
categories = ["development-tools::build-utils", "development-tools::ffi"]
66
description = "C++ code generator for integrating `cxx` crate into a Cargo build."

gen/build/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
//! $ cxxbridge src/main.rs > path/to/mybridge.cc
4545
//! ```
4646
47-
#![doc(html_root_url = "https://docs.rs/cxx-build/1.0.178")]
47+
#![doc(html_root_url = "https://docs.rs/cxx-build/1.0.179")]
4848
#![cfg_attr(not(check_cfg), expect(unexpected_cfgs))]
4949
#![allow(
5050
clippy::cast_sign_loss,

gen/cmd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxxbridge-cmd"
3-
version = "1.0.178"
3+
version = "1.0.179"
44
authors = ["David Tolnay <[email protected]>"]
55
categories = ["development-tools::build-utils", "development-tools::ffi"]
66
description = "C++ code generator for integrating `cxx` crate into a non-Cargo build."

gen/lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxx-gen"
3-
version = "0.7.178"
3+
version = "0.7.179"
44
authors = ["Adrian Taylor <[email protected]>"]
55
categories = ["development-tools::ffi"]
66
description = "C++ code generator for integrating `cxx` crate into higher level tools."

gen/lib/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! [dtolnay/cxx#235]: https://github.com/dtolnay/cxx/issues/235
88
//! [https://github.com/google/autocxx]: https://github.com/google/autocxx
99
10-
#![doc(html_root_url = "https://docs.rs/cxx-gen/0.7.178")]
10+
#![doc(html_root_url = "https://docs.rs/cxx-gen/0.7.179")]
1111
#![deny(missing_docs)]
1212
#![expect(dead_code)]
1313
#![cfg_attr(not(check_cfg), expect(unexpected_cfgs))]

macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxxbridge-macro"
3-
version = "1.0.178"
3+
version = "1.0.179"
44
authors = ["David Tolnay <[email protected]>"]
55
categories = ["development-tools::ffi"]
66
description = "Implementation detail of the `cxx` crate."

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@
363363
//! </table>
364364
365365
#![no_std]
366-
#![doc(html_root_url = "https://docs.rs/cxx/1.0.178")]
366+
#![doc(html_root_url = "https://docs.rs/cxx/1.0.179")]
367367
#![cfg_attr(docsrs, feature(doc_cfg))]
368368
#![deny(
369369
improper_ctypes,

0 commit comments

Comments
 (0)