Skip to content

Commit 6a936b3

Browse files
committed
Add link to website
1 parent 0f0162f commit 6a936b3

File tree

6 files changed

+18
-0
lines changed

6 files changed

+18
-0
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ license = "MIT OR Apache-2.0"
88
description = "Safe interop between Rust and C++"
99
repository = "https://github.com/dtolnay/cxx"
1010
documentation = "https://docs.rs/cxx"
11+
website = "https://cxx.rs"
1112
readme = "README.md"
1213
exclude = ["/demo", "/gen", "/syntax", "/third-party"]
1314
keywords = ["ffi"]

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@ cxx-build = "0.5"
2929

3030
<br>
3131

32+
## Guide
33+
34+
Please see **<https://cxx.rs>** for a tutorial, reference material, and example
35+
code.
36+
37+
<br>
38+
3239
## Overview
3340

3441
The idea is that we define the signatures of both sides of our FFI boundary

gen/build/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ edition = "2018"
66
license = "MIT OR Apache-2.0"
77
description = "C++ code generator for integrating `cxx` crate into a Cargo build."
88
repository = "https://github.com/dtolnay/cxx"
9+
website = "https://cxx.rs"
910
exclude = ["build.rs"]
1011
keywords = ["ffi"]
1112
categories = ["development-tools::ffi"]

gen/cmd/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ edition = "2018"
66
license = "MIT OR Apache-2.0"
77
description = "C++ code generator for integrating `cxx` crate into a non-Cargo build."
88
repository = "https://github.com/dtolnay/cxx"
9+
website = "https://cxx.rs"
910
exclude = ["build.rs"]
1011
keywords = ["ffi"]
1112
categories = ["development-tools::ffi"]

macro/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ edition = "2018"
66
license = "MIT OR Apache-2.0"
77
description = "Implementation detail of the `cxx` crate."
88
repository = "https://github.com/dtolnay/cxx"
9+
website = "https://cxx.rs"
910
exclude = ["build.rs", "README.md"]
1011
keywords = ["ffi"]
1112
categories = ["development-tools::ffi"]

src/lib.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@
2323
//!
2424
//! <br>
2525
//!
26+
//! # Guide
27+
//!
28+
//! Please see **<https://cxx.rs>** for a tutorial, reference material, and
29+
//! example code.
30+
//!
31+
//! <br>
32+
//!
2633
//! # Overview
2734
//!
2835
//! The idea is that we define the signatures of both sides of our FFI boundary

0 commit comments

Comments
 (0)