Skip to content

Commit

Permalink
maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
A1-Triard committed Sep 8, 2024
1 parent 6dc95d2 commit c8599e0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "dyn-fmt"
version = "0.4.2"
version = "0.4.3"
rust-version = "1.71"
authors = ["warlock <internalmike@gmail.com>"]
description = "Provides dynamic string format."
Expand All @@ -17,5 +17,8 @@ default = ["std"]
## disable to make the library `#![no_std]`.
std = []

[badges]
maintenance = { status = "passively-maintained" }

[dependencies]
document-features = "0.2.7"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![travis](https://travis-ci.org/A1-Triard/dyn-fmt.svg?branch=master)
![maintenance: passively maintained](https://img.shields.io/badge/maintenance-passively--maintained-yellowgreen.svg)

# dyn-fmt

Expand Down
5 changes: 5 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#![deny(warnings)]
#![allow(clippy::needless_doctest_main)]

#![cfg_attr(not(feature = "std"), no_std)]

//! | Static format macro | Dynamic analog |
Expand All @@ -10,6 +12,9 @@
//! ## Feature flags
#![doc=document_features::document_features!()]

#[doc=include_str!("../README.md")]
type _DocTestReadme = ();

#[cfg(feature = "std")]
extern crate core;

Expand Down

0 comments on commit c8599e0

Please sign in to comment.