mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-03 17:10:34 +00:00
19 lines
673 B
Rust
19 lines
673 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 slint-core-internal 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;
|