Skip to content

Commit 227fe9f

Browse files
committed
Fixed nightly builds and docsrs
1 parent a965f26 commit 227fe9f

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rorm-sql"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
edition = "2021"
55
keywords = ["database", "abstraction-layer", "sqlite", "postgres", "mysql"]
66
categories = ["database"]

build.rs

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! The module should be used to create sql queries for different SQL dialects.
2-
#![cfg_attr(all(doc, CHANNEL_NIGHTLY), feature(doc_auto_cfg))]
2+
#![cfg_attr(docsrs, feature(doc_cfg))]
33
#![warn(missing_docs)]
44

55
#[cfg(not(any(feature = "sqlite", feature = "postgres", feature = "mysql")))]

0 commit comments

Comments
 (0)