Skip to content

Commit 5e2843c

Browse files
authored
Merge pull request #8 from artichoke/lopopolo/package-example-crates.io
Ship examples to crates.io
2 parents 936d00f + 5227137 commit 5e2843c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sysdir"
3-
version = "1.2.0" # remember to set `html_root_url` in `src/lib.rs`.
3+
version = "1.2.1" # remember to set `html_root_url` in `src/lib.rs`.
44
authors = ["Ryan Lopopolo <[email protected]>"]
55
license = "Apache-2.0 OR MIT"
66
edition = "2021"
@@ -12,7 +12,7 @@ homepage = "https://github.com/artichoke/sysdir-rs"
1212
description = "Rust bindings to sysdir(3) on macOS, iOS, tvOS, and watchOS"
1313
keywords = ["app_dirs", "apple", "known-folder", "path", "sysdir"]
1414
categories = ["api-bindings", "filesystem", "os::macos-apis"]
15-
include = ["cext/**/*", "src/**/*", "tests/**/*", "LICENSE-*", "README.md", "sysdir.3.man"]
15+
include = ["cext/**/*", "examples/**/*", "src/**/*", "tests/**/*", "LICENSE-*", "README.md", "sysdir.3.man"]
1616

1717
[dependencies]
1818

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Add this to your `Cargo.toml`:
2323

2424
```toml
2525
[dependencies]
26-
sysdir = "1.2.0"
26+
sysdir = "1.2.1"
2727
```
2828

2929
Then resolve well-known directories like this:

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
//! ```
9393
9494
#![no_std]
95-
#![doc(html_root_url = "https://docs.rs/sysdir/1.2.0")]
95+
#![doc(html_root_url = "https://docs.rs/sysdir/1.2.1")]
9696

9797
// Ensure code blocks in `README.md` compile
9898
#[cfg(all(

0 commit comments

Comments
 (0)