Release 1.0.91

This commit is contained in:
David Tolnay 2023-02-15 09:29:18 -08:00
parent 580f29a57c
commit 473f24ab1a
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
7 changed files with 10 additions and 10 deletions

View File

@ -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"

View File

@ -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)"

View File

@ -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."

View File

@ -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."

View File

@ -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."

View File

@ -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."

View File

@ -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,