Release 1.0.62

This commit is contained in:
David Tolnay 2022-01-03 00:59:41 -08:00
parent 819c94ea94
commit 6d7299e7b5
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
8 changed files with 16 additions and 16 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "cxx"
version = "1.0.61" # remember to update html_root_url
version = "1.0.62" # remember to update html_root_url
authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018"
rust-version = "1.48"
@ -24,15 +24,15 @@ alloc = []
std = ["alloc"]
[dependencies]
cxxbridge-macro = { version = "=1.0.61", path = "macro" }
cxxbridge-macro = { version = "=1.0.62", path = "macro" }
link-cplusplus = "1.0"
[build-dependencies]
cc = "1.0.49"
cxxbridge-flags = { version = "=1.0.61", path = "flags", default-features = false }
cxxbridge-flags = { version = "=1.0.62", path = "flags", default-features = false }
[dev-dependencies]
cxx-build = { version = "=1.0.61", path = "gen/build" }
cxx-build = { version = "=1.0.62", 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.61"
version = "1.0.62"
authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018"
rust-version = "1.48"

View File

@ -1,6 +1,6 @@
[package]
name = "cxx-build"
version = "1.0.61"
version = "1.0.62"
authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018"
rust-version = "1.48"

View File

@ -1,6 +1,6 @@
[package]
name = "cxxbridge-cmd"
version = "1.0.61"
version = "1.0.62"
authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018"
rust-version = "1.54"

View File

@ -1,6 +1,6 @@
[package]
name = "cxx-gen"
version = "0.7.61"
version = "0.7.62"
authors = ["Adrian Taylor <adetaylor@chromium.org>"]
edition = "2018"
rust-version = "1.48"

View File

@ -1,6 +1,6 @@
[package]
name = "cxxbridge-macro"
version = "1.0.61"
version = "1.0.62"
authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018"
rust-version = "1.48"

View File

@ -364,7 +364,7 @@
//! </table>
#![no_std]
#![doc(html_root_url = "https://docs.rs/cxx/1.0.61")]
#![doc(html_root_url = "https://docs.rs/cxx/1.0.62")]
#![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))]

12
third-party/Cargo.lock generated vendored
View File

@ -78,7 +78,7 @@ dependencies = [
[[package]]
name = "cxx"
version = "1.0.61"
version = "1.0.62"
dependencies = [
"cc",
"cxx-build",
@ -93,7 +93,7 @@ dependencies = [
[[package]]
name = "cxx-build"
version = "1.0.61"
version = "1.0.62"
dependencies = [
"cc",
"codespan-reporting",
@ -108,7 +108,7 @@ dependencies = [
[[package]]
name = "cxx-gen"
version = "0.7.61"
version = "0.7.62"
dependencies = [
"codespan-reporting",
"proc-macro2",
@ -127,7 +127,7 @@ dependencies = [
[[package]]
name = "cxxbridge-cmd"
version = "1.0.61"
version = "1.0.62"
dependencies = [
"clap",
"codespan-reporting",
@ -138,11 +138,11 @@ dependencies = [
[[package]]
name = "cxxbridge-flags"
version = "1.0.61"
version = "1.0.62"
[[package]]
name = "cxxbridge-macro"
version = "1.0.61"
version = "1.0.62"
dependencies = [
"clang-ast",
"cxx",