Skip to content

Commit

Permalink
Publish v0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
matthunz committed Dec 13, 2023
1 parent 5af395c commit e580ec7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "concoct"
version = "0.8.0-alpha.3"
version = "0.9.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Cross-platform UI framework"
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@

Concoct is a runtime for user-interfaces in Rust.

To see a list of the available features flags that can be enabled, check our [docs](https://docs.rs/concoct/latest/concoct/#feature-flags).

```rust
use concoct::{Context, Handler, Object, Runtime, Signal};

Expand Down
11 changes: 11 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
//! # Concoct
//!
//! ## Feature flags
//! Concoct uses a set of feature flags to provide support for #![no_std]
//! (and to reduce the amount of compiled code).
//!
//! - `full`: Enables all features listed below.
//! - `rt`: Enables the [`Runtime`].
//! - `futures`: Enables interop with the `futures` crate (and provides the default `Runtime`).
//!

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

Expand Down

0 comments on commit e580ec7

Please sign in to comment.