mirror of
https://github.com/topjohnwu/cxx.git
synced 2024-11-23 11:59:46 +00:00
Release 1.0.106
This commit is contained in:
parent
ec7c118d3a
commit
eb06f521de
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "cxx"
|
||||
version = "1.0.105" # remember to update html_root_url
|
||||
version = "1.0.106" # 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.105", path = "macro" }
|
||||
cxxbridge-macro = { version = "=1.0.106", path = "macro" }
|
||||
link-cplusplus = "1.0.9"
|
||||
|
||||
[build-dependencies]
|
||||
cc = "1.0.79"
|
||||
cxxbridge-flags = { version = "=1.0.105", path = "flags", default-features = false }
|
||||
cxxbridge-flags = { version = "=1.0.106", path = "flags", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
cxx-build = { version = "=1.0.105", path = "gen/build" }
|
||||
cxx-build = { version = "=1.0.106", path = "gen/build" }
|
||||
cxx-gen = { version = "0.7", path = "gen/lib" }
|
||||
cxx-test-suite = { version = "0", path = "tests/ffi" }
|
||||
rustversion = "1.0.13"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "cxxbridge-flags"
|
||||
version = "1.0.105"
|
||||
version = "1.0.106"
|
||||
authors = ["David Tolnay <dtolnay@gmail.com>"]
|
||||
categories = ["development-tools::ffi", "compilers"]
|
||||
description = "Compiler configuration of the `cxx` crate (implementation detail)"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "cxx-build"
|
||||
version = "1.0.105"
|
||||
version = "1.0.106"
|
||||
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."
|
||||
|
@ -45,7 +45,7 @@
|
||||
//! $ cxxbridge src/main.rs > path/to/mybridge.cc
|
||||
//! ```
|
||||
|
||||
#![doc(html_root_url = "https://docs.rs/cxx-build/1.0.105")]
|
||||
#![doc(html_root_url = "https://docs.rs/cxx-build/1.0.106")]
|
||||
#![allow(
|
||||
clippy::cast_sign_loss,
|
||||
clippy::default_trait_access,
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "cxxbridge-cmd"
|
||||
version = "1.0.105"
|
||||
version = "1.0.106"
|
||||
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."
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "cxx-gen"
|
||||
version = "0.7.105"
|
||||
version = "0.7.106"
|
||||
authors = ["Adrian Taylor <adetaylor@chromium.org>"]
|
||||
categories = ["development-tools::ffi"]
|
||||
description = "C++ code generator for integrating `cxx` crate into higher level tools."
|
||||
|
@ -7,7 +7,7 @@
|
||||
//! [dtolnay/cxx#235]: https://github.com/dtolnay/cxx/issues/235
|
||||
//! [https://github.com/google/autocxx]: https://github.com/google/autocxx
|
||||
|
||||
#![doc(html_root_url = "https://docs.rs/cxx-gen/0.7.105")]
|
||||
#![doc(html_root_url = "https://docs.rs/cxx-gen/0.7.106")]
|
||||
#![deny(missing_docs)]
|
||||
#![allow(dead_code)]
|
||||
#![allow(
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "cxxbridge-macro"
|
||||
version = "1.0.105"
|
||||
version = "1.0.106"
|
||||
authors = ["David Tolnay <dtolnay@gmail.com>"]
|
||||
categories = ["development-tools::ffi"]
|
||||
description = "Implementation detail of the `cxx` crate."
|
||||
|
@ -364,7 +364,7 @@
|
||||
//! </table>
|
||||
|
||||
#![no_std]
|
||||
#![doc(html_root_url = "https://docs.rs/cxx/1.0.105")]
|
||||
#![doc(html_root_url = "https://docs.rs/cxx/1.0.106")]
|
||||
#![deny(
|
||||
improper_ctypes,
|
||||
improper_ctypes_definitions,
|
||||
|
Loading…
Reference in New Issue
Block a user