rigela_utils/lib.rs
1/*
2 * Copyright (c) 2024. The RigelA open source project team and
3 * its contributors reserve all rights.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
9 * Unless required by applicable law or agreed to in writing, software distributed under the
10 * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 * See the License for the specific language governing permissions and limitations under the License.
12 */
13
14#[cfg(feature = "bass")]
15pub mod bass;
16#[cfg(feature = "common")]
17pub mod common;
18#[cfg(feature = "clip")]
19pub mod clip;
20#[cfg(feature = "color")]
21pub mod color;
22#[cfg(feature = "fs")]
23pub mod fs;
24//noinspection SpellCheckingInspection
25#[cfg(all(feature = "ibmeci", target_arch = "x86"))]
26pub mod ibmeci;
27#[cfg(feature = "killer")]
28pub mod killer;
29#[cfg(feature = "library")]
30pub mod library;
31#[cfg(feature = "logger")]
32pub mod logger;
33#[cfg(feature = "pipe")]
34pub mod pipe;
35#[cfg(feature = "screen")]
36pub mod screen;
37
38//noinspection HttpUrlsUsage
39pub const SERVER_HOME_URI: &str = "http://rigela.site/rigela";