Skip to content

Commit

Permalink
Publish v0.10.0-alpha.3
Browse files Browse the repository at this point in the history
  • Loading branch information
matthunz committed Jan 8, 2024
1 parent bf7ea52 commit 53858ac
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "viewbuilder"
version = "0.10.0-alpha.2"
version = "0.10.0-alpha.3"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Cross-platform UI framework"
Expand Down
20 changes: 11 additions & 9 deletions src/lib.rs
@@ -1,12 +1,14 @@
/// A high performance UI framework.
///
/// Viewbuilder is a moduler GUI library that can be used as an entire framework,
/// or with individual parts.
///
/// ## Features
/// - `full`: Enables all the features below.
/// - `tracing`: Enables structured logging and performance metrics with the `tracing` crate.
/// - `web`: Enables web support.
//! A high performance UI framework.
//!
//! Viewbuilder is a moduler GUI library that can be used as an entire framework,
//! or with individual parts.
//!
//! ## Features
//! - `full`: Enables all the features below.
//! - `tracing`: Enables structured logging and performance metrics with the `tracing` crate.
//! - `web`: Enables web support.

#![cfg_attr(docsrs, feature(doc_cfg))]

use std::sync::Arc;

Expand Down

0 comments on commit 53858ac

Please sign in to comment.