slint/sixtyfps_runtime/common/lib.rs
Simon Hausmann 6318264956 Don't build the common crate with std
It's not needed and it's necessary to use no_std so that we can use it
in the mcu branch.
2021-12-22 15:55:52 +01:00

19 lines
670 B
Rust

// Copyright © SixtyFPS GmbH <info@sixtyfps.io>
// SPDX-License-Identifier: (GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)
/*!
This crate contains internal data structures and code that is shared between
the sixtyfps-corelib and the sixtyfps-compiler(lib) crates.
**NOTE**: This library is an **internal** crate for the [SixtyFPS project](https://sixtyfps.io).
This crate should **not be used directly** by applications using SixtyFPS.
You should use the `sixtyfps` crate instead.
**WARNING**: This crate does not follow the semver convention for versioning and can
only be used with `version = "=x.y.z"` in Cargo.toml.
*/
#![no_std]
pub mod key_codes;