aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2022-12-18 09:42:05 -0800
committerDavid Tolnay <dtolnay@gmail.com>2022-12-18 09:42:05 -0800
commit09ae2ee7b527fe8befc9a144483cf411f33da4da (patch)
tree0d843bdbe0f20b72bda4690a82e7ed9cb7195b3e
parentc3e17908f69702a4207f1c970cc840e3686d596a (diff)
downloadcxx-09ae2ee7b527fe8befc9a144483cf411f33da4da.tar.gz
Release 1.0.85
-rw-r--r--Cargo.toml8
-rw-r--r--flags/Cargo.toml2
-rw-r--r--gen/build/Cargo.toml2
-rw-r--r--gen/cmd/Cargo.toml2
-rw-r--r--gen/lib/Cargo.toml2
-rw-r--r--macro/Cargo.toml2
-rw-r--r--src/lib.rs2
7 files changed, 10 insertions, 10 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 393b1abe..9e80bda6 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxx"
-version = "1.0.84" # remember to update html_root_url
+version = "1.0.85" # remember to update html_root_url
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["development-tools::ffi", "api-bindings", "no-std"]
description = "Safe interop between Rust and C++"
@@ -23,15 +23,15 @@ alloc = []
std = ["alloc"]
[dependencies]
-cxxbridge-macro = { version = "=1.0.84", path = "macro" }
+cxxbridge-macro = { version = "=1.0.85", path = "macro" }
link-cplusplus = "1.0"
[build-dependencies]
cc = "1.0.49"
-cxxbridge-flags = { version = "=1.0.84", path = "flags", default-features = false }
+cxxbridge-flags = { version = "=1.0.85", path = "flags", default-features = false }
[dev-dependencies]
-cxx-build = { version = "=1.0.84", path = "gen/build" }
+cxx-build = { version = "=1.0.85", path = "gen/build" }
cxx-gen = { version = "0.7", path = "gen/lib" }
cxx-test-suite = { version = "0", path = "tests/ffi" }
rustversion = "1.0"
diff --git a/flags/Cargo.toml b/flags/Cargo.toml
index 583ac410..8958481c 100644
--- a/flags/Cargo.toml
+++ b/flags/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-flags"
-version = "1.0.84"
+version = "1.0.85"
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["development-tools::ffi", "compilers"]
description = "Compiler configuration of the `cxx` crate (implementation detail)"
diff --git a/gen/build/Cargo.toml b/gen/build/Cargo.toml
index 9e584a81..ea19af89 100644
--- a/gen/build/Cargo.toml
+++ b/gen/build/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxx-build"
-version = "1.0.84"
+version = "1.0.85"
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["development-tools::build-utils", "development-tools::ffi"]
description = "C++ code generator for integrating `cxx` crate into a Cargo build."
diff --git a/gen/cmd/Cargo.toml b/gen/cmd/Cargo.toml
index 08b6ac50..39d9a617 100644
--- a/gen/cmd/Cargo.toml
+++ b/gen/cmd/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-cmd"
-version = "1.0.84"
+version = "1.0.85"
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["development-tools::build-utils", "development-tools::ffi"]
description = "C++ code generator for integrating `cxx` crate into a non-Cargo build."
diff --git a/gen/lib/Cargo.toml b/gen/lib/Cargo.toml
index 1cf3ab7c..df8c8558 100644
--- a/gen/lib/Cargo.toml
+++ b/gen/lib/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxx-gen"
-version = "0.7.84"
+version = "0.7.85"
authors = ["Adrian Taylor <adetaylor@chromium.org>"]
categories = ["development-tools::ffi"]
description = "C++ code generator for integrating `cxx` crate into higher level tools."
diff --git a/macro/Cargo.toml b/macro/Cargo.toml
index 6d51ca6a..ed230388 100644
--- a/macro/Cargo.toml
+++ b/macro/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-macro"
-version = "1.0.84"
+version = "1.0.85"
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["development-tools::ffi"]
description = "Implementation detail of the `cxx` crate."
diff --git a/src/lib.rs b/src/lib.rs
index 33cda5da..3ddd887d 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -364,7 +364,7 @@
//! </table>
#![no_std]
-#![doc(html_root_url = "https://docs.rs/cxx/1.0.84")]
+#![doc(html_root_url = "https://docs.rs/cxx/1.0.85")]
#![deny(improper_ctypes, improper_ctypes_definitions, missing_docs)]
#![cfg_attr(not(no_unsafe_op_in_unsafe_fn_lint), deny(unsafe_op_in_unsafe_fn))]
#![cfg_attr(no_unsafe_op_in_unsafe_fn_lint, allow(unused_unsafe))]