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
14use kas_core;
15#[cfg(feature = "resvg")] use kas_resvg;
16use kas_wgpu;
17use kas_widgets;