aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2023-02-15 09:29:18 -0800
committerDavid Tolnay <dtolnay@gmail.com>2023-02-15 09:29:18 -0800
commit473f24ab1abcca79fe81ed3cbb2ea3a1e0546498 (patch)
tree4e2b511d5deb75e7e10f22deb60d2684dd230dde
parent580f29a57c722e7332e3c62181832b79b730caff (diff)
downloadcxx-473f24ab1abcca79fe81ed3cbb2ea3a1e0546498.tar.gz
Release 1.0.91
-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 8b3204ef..5ed5809c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxx"
-version = "1.0.90" # remember to update html_root_url
+version = "1.0.91" # 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.90", path = "macro" }
+cxxbridge-macro = { version = "=1.0.91", path = "macro" }
link-cplusplus = "1.0"
[build-dependencies]
cc = "1.0.49"
-cxxbridge-flags = { version = "=1.0.90", path = "flags", default-features = false }
+cxxbridge-flags = { version = "=1.0.91", path = "flags", default-features = false }
[dev-dependencies]
-cxx-build = { version = "=1.0.90", path = "gen/build" }
+cxx-build = { version = "=1.0.91", 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 0973d5f3..1f382294 100644
--- a/flags/Cargo.toml
+++ b/flags/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-flags"
-version = "1.0.90"
+version = "1.0.91"
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 c932afc4..08c4a4d5 100644
--- a/gen/build/Cargo.toml
+++ b/gen/build/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxx-build"
-version = "1.0.90"
+version = "1.0.91"
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 8deb2bb8..677aa326 100644
--- a/gen/cmd/Cargo.toml
+++ b/gen/cmd/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-cmd"
-version = "1.0.90"
+version = "1.0.91"
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 4b44b97e..01b5876f 100644
--- a/gen/lib/Cargo.toml
+++ b/gen/lib/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxx-gen"
-version = "0.7.90"
+version = "0.7.91"
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 f63fa1d3..988c848b 100644
--- a/macro/Cargo.toml
+++ b/macro/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-macro"
-version = "1.0.90"
+version = "1.0.91"
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 ee92e6d8..77ec7cff 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.90")]
+#![doc(html_root_url = "https://docs.rs/cxx/1.0.91")]
#![deny(
improper_ctypes,
improper_ctypes_definitions,