Files
Clément DOUIN 48cb0d3e7b docs: switch back license to MIT OR Apache-2.0
The AGPL license was just too restrictive, better to put effort in a Enterprise,
paid version.
2026-06-08 14:46:05 +02:00

8 lines
162 B
Rust

use pimalaya_cli::build::{features_env, git_envs, target_envs};
fn main() {
features_env(include_str!("./Cargo.toml"));
target_envs();
git_envs();
}