neume 0.0.1

Composable composition + live performance environment. This 0.0.1 reserves the crate name; the substantive 0.1.0 release follows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Neume — composable composition + live performance environment.
//!
//! This 0.0.1 release exists only to reserve the `neume` crate name on
//! crates.io while the Rust workspace is under active development.
//! The substantive `0.1.0` release will replace this stub with the
//! real implementation under the same name.
//!
//! Track development at <https://github.com/aaronstevenwhite/neume>.

#![doc(html_root_url = "https://docs.rs/neume/0.0.1")]
#![forbid(unsafe_code)]
#![warn(missing_docs)]

/// Crate version reported by the stub.  Identical to
/// [`env!("CARGO_PKG_VERSION")`][env].
pub const VERSION: &str = env!("CARGO_PKG_VERSION");