Skip to content

Commit

Permalink
Merge pull request #8 from artichoke/lopopolo/package-example-crates.io
Browse files Browse the repository at this point in the history
Ship examples to crates.io
  • Loading branch information
lopopolo authored May 14, 2023
2 parents 936d00f + 5227137 commit 5e2843c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sysdir"
version = "1.2.0" # remember to set `html_root_url` in `src/lib.rs`.
version = "1.2.1" # remember to set `html_root_url` in `src/lib.rs`.
authors = ["Ryan Lopopolo <[email protected]>"]
license = "Apache-2.0 OR MIT"
edition = "2021"
Expand All @@ -12,7 +12,7 @@ homepage = "https://github.com/artichoke/sysdir-rs"
description = "Rust bindings to sysdir(3) on macOS, iOS, tvOS, and watchOS"
keywords = ["app_dirs", "apple", "known-folder", "path", "sysdir"]
categories = ["api-bindings", "filesystem", "os::macos-apis"]
include = ["cext/**/*", "src/**/*", "tests/**/*", "LICENSE-*", "README.md", "sysdir.3.man"]
include = ["cext/**/*", "examples/**/*", "src/**/*", "tests/**/*", "LICENSE-*", "README.md", "sysdir.3.man"]

[dependencies]

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
sysdir = "1.2.0"
sysdir = "1.2.1"
```

Then resolve well-known directories like this:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
//! ```
#![no_std]
#![doc(html_root_url = "https://docs.rs/sysdir/1.2.0")]
#![doc(html_root_url = "https://docs.rs/sysdir/1.2.1")]

// Ensure code blocks in `README.md` compile
#[cfg(all(
Expand Down

0 comments on commit 5e2843c

Please sign in to comment.