stability

Crates.iostability
lib.rsstability
version0.2.1
sourcesrc
created_at2020-10-23 00:19:06.291913
updated_at2024-07-04 21:06:20.615402
descriptionRust API stability attributes for the rest of us.
homepage
repositoryhttps://github.com/sagebind/stability
max_upload_size
id304501
size14,695
libdatadog-owners (github:datadog:libdatadog-owners)

documentation

https://docs.rs/stability/

README

Stability

Rust API stability attributes for the rest of us.

Crates.io Documentation License Minimum supported Rust version Build

Overview

This crate provides attribute macros for specifying API stability of public API items of a crate. For a quick example:

/// This function does something really risky!
///
/// Don't use it yet!
#[stability::unstable(feature = "risky-function")]
pub fn risky_function() {
    unimplemented!()
}

Please check out the documentation for detailed usage.

Installation

Install via Cargo by adding to your Cargo.toml file:

[dependencies]
stability = "0.2.1"

Supported Rust versions

The current release is only guaranteed to work with the latest stable Rust compiler.

License

This project's source code and documentation are licensed under the MIT license. See the LICENSE file for details.

Commit count: 14

cargo fmt