Skip to content

Commit

Permalink
Enable doc_cfg feature for docs.rs and Noeldoc
Browse files Browse the repository at this point in the history
  • Loading branch information
auguwu committed Oct 21, 2024
1 parent 47e4136 commit 3173ce6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ resolver = "2"
members = ["crates/*", "remi"]

[workspace.package]
version = "0.9.0"
version = "0.9.1"
repository = "https://github.com/Noelware/remi-rs"
license = "MIT"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion crates/azure/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ azure_storage_blobs = "0.21.0"
bytes = "1.7.2"
futures-util = "0.3.31"
log = { version = "0.4.22", optional = true }
remi = { path = "../../remi", version = "0.9.0" }
remi = { path = "../../remi", version = "0.9.1" }
serde = { version = "1.0.210", features = ["derive"], optional = true }
tracing = { version = "0.1.40", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion crates/fs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ etcetera = "0.8.0"
file-format = { version = "0.25.0", features = ["reader-txt"], optional = true }
infer = { version = "0.16.0", default-features = false, optional = true }
log = { version = "0.4.22", optional = true }
remi = { path = "../../remi", version = "0.9.0" }
remi = { path = "../../remi", version = "0.9.1" }
serde = { version = "1.0.210", features = ["derive"], optional = true }
serde_json = { version = "1.0.128", optional = true }
serde_yaml_ng = { version = "0.10.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/gridfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ bytes = "1.7.2"
futures-util = "0.3.31"
log = { version = "0.4.22", optional = true }
mongodb = "3.1.0"
remi = { path = "../../remi", version = "0.9.0" }
remi = { path = "../../remi", version = "0.9.1" }
serde = { version = "1.0.210", features = ["derive"], optional = true }
tokio-util = "0.7.12"
tracing = { version = "0.1.40", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/s3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ aws-credential-types = "1.2.1"
aws-sdk-s3 = { version = "1.56.0", features = ["behavior-version-latest"] }
aws-smithy-runtime-api = "1.7.2"
log = { version = "0.4.22", optional = true }
remi = { path = "../../remi", version = "0.9.0" }
remi = { path = "../../remi", version = "0.9.1" }
serde = { version = "1.0.210", features = ["derive"], optional = true }
tracing = { version = "0.1.40", optional = true }

Expand Down
1 change: 1 addition & 0 deletions crates/s3/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

#![doc(html_logo_url = "https://cdn.floofy.dev/images/trans.png")]
#![doc = include_str!("../README.md")]
#![cfg_attr(any(noeldoc, docsrs), feature(doc_cfg))]
#![allow(
// We are aware that the `Err` variant for crate::Error is very large
// and we can't really do anything about it.
Expand Down

0 comments on commit 3173ce6

Please sign in to comment.