aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2023-02-10 19:36:09 -0800
committerDavid Tolnay <dtolnay@gmail.com>2023-02-10 19:36:09 -0800
commit33b5c9eec50b5a68d52445dcd6952a947af842bd (patch)
treeafbb2e08c2bbe267d879f5caa9779308394470db
parent11c74724ef2c9a15775318e46abb3a8471314b4f (diff)
downloadcxx-33b5c9eec50b5a68d52445dcd6952a947af842bd.tar.gz
Release 1.0.90
-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 723f84a7..dc39c44a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxx"
-version = "1.0.89" # remember to update html_root_url
+version = "1.0.90" # 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.89", path = "macro" }
+cxxbridge-macro = { version = "=1.0.90", path = "macro" }
link-cplusplus = "1.0"
[build-dependencies]
cc = "1.0.49"
-cxxbridge-flags = { version = "=1.0.89", path = "flags", default-features = false }
+cxxbridge-flags = { version = "=1.0.90", path = "flags", default-features = false }
[dev-dependencies]
-cxx-build = { version = "=1.0.89", path = "gen/build" }
+cxx-build = { version = "=1.0.90", 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 1f3e966d..0973d5f3 100644
--- a/flags/Cargo.toml
+++ b/flags/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-flags"
-version = "1.0.89"
+version = "1.0.90"
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 d0630637..c932afc4 100644
--- a/gen/build/Cargo.toml
+++ b/gen/build/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxx-build"
-version = "1.0.89"
+version = "1.0.90"
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 336ccd6f..8deb2bb8 100644
--- a/gen/cmd/Cargo.toml
+++ b/gen/cmd/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-cmd"
-version = "1.0.89"
+version = "1.0.90"
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 2c0deb37..4b44b97e 100644
--- a/gen/lib/Cargo.toml
+++ b/gen/lib/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxx-gen"
-version = "0.7.89"
+version = "0.7.90"
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 06e64738..f63fa1d3 100644
--- a/macro/Cargo.toml
+++ b/macro/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-macro"
-version = "1.0.89"
+version = "1.0.90"
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 2b20333b..ee92e6d8 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.89")]
+#![doc(html_root_url = "https://docs.rs/cxx/1.0.90")]
#![deny(
improper_ctypes,
improper_ctypes_definitions,