Skip to content

Commit 5b8572f

Browse files
author
bors-servo
authored
Auto merge of #1295 - mbrubeck:docs, r=emilio
Make some docs more visible - Link to the user's guide from the docs and manifest - Include README.md in Cargo package so it is visible on crates.io and docs.rs. - Include LICENSE in Cargo package so that the package is legal to distribute.
2 parents 0fd5e9e + 4ef0b23 commit 5b8572f

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,13 @@ name = "bindgen"
1313
readme = "README.md"
1414
repository = "https://github.com/rust-lang-nursery/rust-bindgen"
1515
documentation = "https://docs.rs/bindgen"
16+
homepage = "https://rust-lang-nursery.github.io/rust-bindgen/"
1617
version = "0.36.0"
1718
build = "build.rs"
1819

1920
include = [
21+
"LICENSE",
22+
"README.md",
2023
"Cargo.toml",
2124
"build.rs",
2225
"src/*.rs",

src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
//! functions and use types defined in the header.
55
//!
66
//! See the [`Builder`](./struct.Builder.html) struct for usage.
7+
//!
8+
//! See the [Users Guide](https://rust-lang-nursery.github.io/rust-bindgen/) for
9+
//! additional documentation.
710
#![deny(missing_docs)]
811
#![deny(warnings)]
912
#![deny(unused_extern_crates)]

0 commit comments

Comments
 (0)