File tree Expand file tree Collapse file tree 9 files changed +12
-12
lines changed Expand file tree Collapse file tree 9 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " cxx"
3
- version = " 1.0.92 " # remember to update html_root_url
3
+ version = " 1.0.93 " # remember to update html_root_url
4
4
authors = [" David Tolnay <dtolnay@gmail.com>" ]
5
5
categories = [" development-tools::ffi" , " api-bindings" , " no-std" ]
6
6
description = " Safe interop between Rust and C++"
@@ -23,15 +23,15 @@ alloc = []
23
23
std = [" alloc" ]
24
24
25
25
[dependencies ]
26
- cxxbridge-macro = { version = " =1.0.92 " , path = " macro" }
26
+ cxxbridge-macro = { version = " =1.0.93 " , path = " macro" }
27
27
link-cplusplus = " 1.0"
28
28
29
29
[build-dependencies ]
30
30
cc = " 1.0.49"
31
- cxxbridge-flags = { version = " =1.0.92 " , path = " flags" , default-features = false }
31
+ cxxbridge-flags = { version = " =1.0.93 " , path = " flags" , default-features = false }
32
32
33
33
[dev-dependencies ]
34
- cxx-build = { version = " =1.0.92 " , path = " gen/build" }
34
+ cxx-build = { version = " =1.0.93 " , path = " gen/build" }
35
35
cxx-gen = { version = " 0.7" , path = " gen/lib" }
36
36
cxx-test-suite = { version = " 0" , path = " tests/ffi" }
37
37
rustversion = " 1.0"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " cxxbridge-flags"
3
- version = " 1.0.92 "
3
+ version = " 1.0.93 "
4
4
authors = [" David Tolnay <dtolnay@gmail.com>" ]
5
5
categories = [" development-tools::ffi" , " compilers" ]
6
6
description = " Compiler configuration of the `cxx` crate (implementation detail)"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " cxx-build"
3
- version = " 1.0.92 "
3
+ version = " 1.0.93 "
4
4
authors = [" David Tolnay <dtolnay@gmail.com>" ]
5
5
categories = [" development-tools::build-utils" , " development-tools::ffi" ]
6
6
description = " C++ code generator for integrating `cxx` crate into a Cargo build."
Original file line number Diff line number Diff line change 45
45
//! $ cxxbridge src/main.rs > path/to/mybridge.cc
46
46
//! ```
47
47
48
- #![ doc( html_root_url = "https://docs.rs/cxx-build/1.0.92 " ) ]
48
+ #![ doc( html_root_url = "https://docs.rs/cxx-build/1.0.93 " ) ]
49
49
#![ allow(
50
50
clippy:: cast_sign_loss,
51
51
clippy:: default_trait_access,
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " cxxbridge-cmd"
3
- version = " 1.0.92 "
3
+ version = " 1.0.93 "
4
4
authors = [" David Tolnay <dtolnay@gmail.com>" ]
5
5
categories = [" development-tools::build-utils" , " development-tools::ffi" ]
6
6
description = " C++ code generator for integrating `cxx` crate into a non-Cargo build."
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " cxx-gen"
3
- version = " 0.7.92 "
3
+ version = " 0.7.93 "
4
4
authors = [" Adrian Taylor <adetaylor@chromium.org>" ]
5
5
categories = [" development-tools::ffi" ]
6
6
description = " C++ code generator for integrating `cxx` crate into higher level tools."
Original file line number Diff line number Diff line change 7
7
//! [dtolnay/cxx#235]: https://github.com/dtolnay/cxx/issues/235
8
8
//! [https://github.com/google/autocxx]: https://github.com/google/autocxx
9
9
10
- #![ doc( html_root_url = "https://docs.rs/cxx-gen/0.7.92 " ) ]
10
+ #![ doc( html_root_url = "https://docs.rs/cxx-gen/0.7.93 " ) ]
11
11
#![ deny( missing_docs) ]
12
12
#![ allow( dead_code) ]
13
13
#![ allow(
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " cxxbridge-macro"
3
- version = " 1.0.92 "
3
+ version = " 1.0.93 "
4
4
authors = [" David Tolnay <dtolnay@gmail.com>" ]
5
5
categories = [" development-tools::ffi" ]
6
6
description = " Implementation detail of the `cxx` crate."
Original file line number Diff line number Diff line change 364
364
//! </table>
365
365
366
366
#![ no_std]
367
- #![ doc( html_root_url = "https://docs.rs/cxx/1.0.92 " ) ]
367
+ #![ doc( html_root_url = "https://docs.rs/cxx/1.0.93 " ) ]
368
368
#![ deny(
369
369
improper_ctypes,
370
370
improper_ctypes_definitions,
You can’t perform that action at this time.
0 commit comments