Skip to content

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Apr 30, 2020
1 parent cc9ece5 commit 63a4384
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cxx"
version = "0.2.12" # remember to update html_root_url
version = "0.3.0" # remember to update html_root_url
authors = ["David Tolnay <[email protected]>"]
edition = "2018"
links = "cxxbridge03"
Expand All @@ -15,14 +15,14 @@ exclude = ["/demo-cxx", "/gen", "/syntax", "/third-party"]
travis-ci = { repository = "dtolnay/cxx" }

[dependencies]
cxxbridge-macro = { version = "=0.2.12", path = "macro" }
cxxbridge-macro = { version = "=0.3.0", path = "macro" }
link-cplusplus = "1.0"

[build-dependencies]
cc = "1.0.49"

[dev-dependencies]
cxx-build = { version = "=0.2.12", path = "gen/build" }
cxx-build = { version = "=0.3.0", path = "gen/build" }
cxx-test-suite = { version = "0", path = "tests/ffi" }
rustversion = "1.0"
trybuild = { version = "1.0.21", features = ["diff"] }
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ can be 100% safe.

```toml
[dependencies]
cxx = "0.2"
cxx = "0.3"
```

*Compiler support: requires rustc 1.42+*<br>
Expand Down Expand Up @@ -219,7 +219,7 @@ set up any additional source files and compiler flags as normal.
# Cargo.toml

[build-dependencies]
cxx-build = "0.2"
cxx-build = "0.3"
```

```rust
Expand Down Expand Up @@ -307,11 +307,11 @@ returns of functions.
<tr><td>String</td><td>rust::String</td><td></td></tr>
<tr><td>&amp;str</td><td>rust::Str</td><td></td></tr>
<tr><td>&amp;[u8]</td><td>rust::Slice&lt;uint8_t&gt;</td><td><sup><i>arbitrary &amp;[T] not implemented yet</i></sup></td></tr>
<tr><td><a href="https://docs.rs/cxx/0.2/cxx/struct.CxxString.html">CxxString</a></td><td>std::string</td><td><sup><i>cannot be passed by value</i></sup></td></tr>
<tr><td><a href="https://docs.rs/cxx/0.3/cxx/struct.CxxString.html">CxxString</a></td><td>std::string</td><td><sup><i>cannot be passed by value</i></sup></td></tr>
<tr><td>Box&lt;T&gt;</td><td>rust::Box&lt;T&gt;</td><td><sup><i>cannot hold opaque C++ type</i></sup></td></tr>
<tr><td><a href="https://docs.rs/cxx/0.2/cxx/struct.UniquePtr.html">UniquePtr&lt;T&gt;</a></td><td>std::unique_ptr&lt;T&gt;</td><td><sup><i>cannot hold opaque Rust type</i></sup></td></tr>
<tr><td><a href="https://docs.rs/cxx/0.3/cxx/struct.UniquePtr.html">UniquePtr&lt;T&gt;</a></td><td>std::unique_ptr&lt;T&gt;</td><td><sup><i>cannot hold opaque Rust type</i></sup></td></tr>
<tr><td>Vec&lt;T&gt;</td><td>rust::Vec&lt;T&gt;</td><td><sup><i>cannot hold opaque C++ type</i></sup></td></tr>
<tr><td><a href="https://docs.rs/cxx/0.2/cxx/struct.CxxVector.html">CxxVector&lt;T&gt;</a></td><td>std::vector&lt;T&gt;</td><td><sup><i>cannot be passed by value, cannot hold opaque Rust type</i></sup></td></tr>
<tr><td><a href="https://docs.rs/cxx/0.3/cxx/struct.CxxVector.html">CxxVector&lt;T&gt;</a></td><td>std::vector&lt;T&gt;</td><td><sup><i>cannot be passed by value, cannot hold opaque Rust type</i></sup></td></tr>
<tr><td>fn(T, U) -&gt; V</td><td>rust::Fn&lt;V(T, U)&gt;</td><td><sup><i>only passing from Rust to C++ is implemented so far</i></sup></td></tr>
<tr><td>Result&lt;T&gt;</td><td>throw/catch</td><td><sup><i>allowed as return type only</i></sup></td></tr>
</table>
Expand Down
2 changes: 1 addition & 1 deletion gen/build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cxx-build"
version = "0.2.12"
version = "0.3.0"
authors = ["David Tolnay <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion gen/cmd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-cmd"
version = "0.2.12"
version = "0.3.0"
authors = ["David Tolnay <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-macro"
version = "0.2.12"
version = "0.3.0"
authors = ["David Tolnay <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -20,7 +20,7 @@ quote = "1.0"
syn = { version = "1.0", features = ["full"] }

[dev-dependencies]
cxx = { version = "0.2", path = ".." }
cxx = { version = "0.3", path = ".." }

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@
//! # Cargo.toml
//!
//! [build-dependencies]
//! cxx-build = "0.2"
//! cxx-build = "0.3"
//! ```
//!
//! ```no_run
Expand Down Expand Up @@ -343,7 +343,7 @@
//!
//! [https://github.com/dtolnay/cxx]: https://github.com/dtolnay/cxx

#![doc(html_root_url = "https://docs.rs/cxx/0.2.12")]
#![doc(html_root_url = "https://docs.rs/cxx/0.3.0")]
#![deny(improper_ctypes)]
#![allow(
clippy::cognitive_complexity,
Expand Down
8 changes: 4 additions & 4 deletions third-party/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 63a4384

Please sign in to comment.