Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump cxx from 0.5.10 to 1.0.32 #2

Closed
wants to merge 2 commits into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Mar 14, 2021

Bumps cxx from 0.5.10 to 1.0.32.

Release notes

Sourced from cxx's releases.

1.0.32

  • Disallow placing an ineffective Drop impl on shared structs (#708, #711)
  • Support expanding type_id! macro inside of crates that have the cxx crate imported under a different name (#712)
  • Prevent rvalue instance of String, Str, Slice, Box, Vec as lhs of an assignment operator (#698)
  • Minor improvement to diagnostic placement on APIs without a handwritten visibility (#710)
  • Ship license files in the cxxbridge-flags implementation detail crate (#717, thanks @​khardix)

1.0.31

  • Clarify error for using enum as method receiver (#688, thanks @​fletcherw)
  • Fix unresolved symbol when working with rust::Vec<size_t> on macOS (#707, #705)

1.0.30

  • Fix let_cxx_string! to allow use of lhs variable name in rhs initialization expression (#701)
  • Re-export cc's parallel build feature for cxx-build (#704, thanks @​edsrzf)

1.0.29

  • Allow let_cxx_string! to work inside of async functions (#693)

1.0.28

  • Fix a missing #include manifested on MSVC when using Rust slices or vectors (#675)

1.0.27

  • Implement lifetime elision for member function receivers (#660, #661)

    #[cxx::bridge]
    mod ffi {
        unsafe extern "C++" {
            type Object<'a>;
        fn f(self: &amp;Object);  // elided lifetimes equivalent to `fn f&lt;'a, 'b&gt;(self: &amp;'a Object&lt;'b&gt;)`
        fn g(self: Pin&lt;&amp;mut Object&gt;);  // elided lifetimes equivalent to `fn g&lt;'a, 'b&gt;(self: Pin&lt;&amp;'a mut Object&lt;'b&gt;&gt;)`
    }
    
    }

  • Support Vec<&str> type (#662)

  • Improve error messages when failing to parse an extern fn (#659)

1.0.26

  • Support lifetimes on extern types (#610, #611, #622, #624, #627, #628, #630, #634, #635, #652, #653)

    #[cxx::bridge]
    mod ffi {
        unsafe extern "C++" {
            type Resource;
            type Holder<'a>;  // contains a `const Resource &`
        fn makeHolder&lt;'a&gt;(resource: &amp;'a Resource) -&gt; SharedPtr&lt;Holder&lt;'a&gt;&gt;;

... (truncated)

Commits
  • 72d47c9 Release 1.0.32
  • f9b5fe4 Lockfile update
  • 6e3a863 Hide Id associated types from ExternType impl rustdocs
  • efd852d Merge pull request #717 from khardix/master
  • de4e10c Include license files in flags crate
  • d3cb114 Merge pull request #714 from dtolnay/rvalue-assign
  • 63bec40 Disallow assignment to rvalue
  • 19b488c Merge pull request #713 from dtolnay/selfmove
  • 7bc397c Remove this != &other checks from move assignment operators
  • 87ed594 Merge pull request #712 from dtolnay/crate
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

der-lyse and others added 2 commits March 14, 2021 18:45
Bumps [cxx](https://github.com/dtolnay/cxx) from 0.5.10 to 1.0.32.
- [Release notes](https://github.com/dtolnay/cxx/releases)
- [Commits](dtolnay/cxx@0.5.10...1.0.32)

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Mar 14, 2021
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Mar 19, 2021

Superseded by #7.

@dependabot dependabot bot closed this Mar 19, 2021
@dependabot dependabot bot deleted the dependabot/cargo/cxx-1.0.32 branch March 19, 2021 07:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant