Skip to main content

kas_dylib/
lib.rs

1// Licensed under the Apache License, Version 2.0 (the "License");
2// you may not use this file except in compliance with the License.
3// You may obtain a copy of the License in the LICENSE-APACHE file or at:
4//     https://www.apache.org/licenses/LICENSE-2.0
5
6//! KAS GUI dylib
7//!
8//! Using this library forces dynamic linking, which can make builds much
9//! faster. It may be preferable only to use this in debug builds.
10
11#![allow(unused_imports)]
12#![allow(clippy::single_component_path_imports)]
13#![cfg_attr(docsrs, feature(doc_cfg))]
14
15use kas_core;
16#[cfg(feature = "image")] use kas_image;
17#[cfg(feature = "soft")] use kas_soft;
18#[cfg(feature = "wgpu")] use kas_wgpu;
19use kas_widgets;