Skip to content

Commit

Permalink
Merge branch 'release' into v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ecton committed Feb 11, 2022
2 parents 5555622 + cf10fa2 commit 013aab6
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .rustme/config.ron
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Configuration(
"../crates/bonsaidb-client/README.md": [
"client-header.md",
"client-docs.md",
"client-feature-flags.md",
"../crates/bonsaidb-client/client-feature-flags.md",
"https://github.com/khonsulabs/.github/raw/main/snippets/readme-footer.md",
],
"../crates/bonsaidb-client/src/.crate-docs.md": (
Expand All @@ -38,7 +38,7 @@ Configuration(
"../crates/bonsaidb-local/README.md": [
"local-header.md",
"local-docs.md",
"local-feature-flags.md",
"../crates/bonsaidb-local/local-feature-flags.md",
"https://github.com/khonsulabs/.github/raw/main/snippets/readme-footer.md",
],
"../crates/bonsaidb-local/src/.crate-docs.md": (
Expand All @@ -50,7 +50,7 @@ Configuration(
"../crates/bonsaidb-server/README.md": [
"server-header.md",
"server-docs.md",
"server-feature-flags.md",
"../crates/bonsaidb-server/server-feature-flags.md",
"https://github.com/khonsulabs/.github/raw/main/snippets/readme-footer.md",
],
"../crates/bonsaidb-server/src/.crate-docs.md": (
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion crates/bonsaidb-client/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![doc = include_str!(".crate-docs.md")]
#![cfg_attr(not(feature = "included-from-omnibus"), doc = include_str!("../../../.rustme/client-feature-flags.md"))]
#![cfg_attr(not(feature = "included-from-omnibus"), doc = include_str!("../client-feature-flags.md"))]
#![forbid(unsafe_code)]
#![warn(
clippy::cargo,
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion crates/bonsaidb-local/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![doc = include_str!(".crate-docs.md")]
#![cfg_attr(not(feature = "included-from-omnibus"), doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/../../.rustme/local-feature-flags.md")))]
#![cfg_attr(not(feature = "included-from-omnibus"), doc = include_str!("../local-feature-flags.md"))]
#![forbid(unsafe_code)]
#![warn(
clippy::cargo,
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion crates/bonsaidb-server/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![doc = include_str!(".crate-docs.md")]
#![cfg_attr(not(feature = "included-from-omnibus"), doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/../../.rustme/server-feature-flags.md")))]
#![cfg_attr(not(feature = "included-from-omnibus"), doc = include_str!("../server-feature-flags.md"))]
#![forbid(unsafe_code)]
#![warn(
clippy::cargo,
Expand Down

0 comments on commit 013aab6

Please sign in to comment.