Skip to content

Commit 75ae5ab

Browse files
committed
Fixed docsrs and nightly builds
1 parent 30d75d6 commit 75ae5ab

File tree

3 files changed

+2
-13
lines changed

3 files changed

+2
-13
lines changed

Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ members = [
1111

1212
[package]
1313
name = "rorm"
14-
version = "0.8.0"
14+
version = "0.9.0"
1515
edition = "2021"
1616
repository = "https://github.com/rorm-orm/rorm"
1717
authors = ["gammelalf", "myOmikron <[email protected]>"]
@@ -79,9 +79,6 @@ utoipa = { version = "~4", optional = true }
7979
# `JsonSchema` support for `MaxStr`
8080
schemars = { version = "~0.8", optional = true }
8181

82-
[build-dependencies]
83-
rustc_version = "0.4.0"
84-
8582
[package.metadata.docs.rs]
8683
features = [
8784
"all-drivers",

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,7 +1,7 @@
11
//! Rorm is a rust orm.
22
//!
33
//! [List of all types valid as model fields](fields)
4-
#![cfg_attr(all(doc, CHANNEL_NIGHTLY), feature(doc_auto_cfg))]
4+
#![cfg_attr(docsrs, feature(doc_cfg))]
55
#![warn(missing_docs)]
66

77
#[cfg(all(feature = "all-drivers", feature = "postgres-only"))]

0 commit comments

Comments
 (0)