pyoxidizerlib/starlark/mod.rs
1// This Source Code Form is subject to the terms of the Mozilla Public
2// License, v. 2.0. If a copy of the MPL was not distributed with this
3// file, You can obtain one at https://mozilla.org/MPL/2.0/.
4
5/*!
6The `starlark` module and related sub-modules define the
7[Starlark](https://github.com/bazelbuild/starlark) dialect used to
8define Oxidized Python binaries.
9*/
10
11pub mod env;
12pub mod eval;
13pub mod file;
14pub mod file_resource;
15pub mod python_distribution;
16pub mod python_embedded_resources;
17pub mod python_executable;
18pub mod python_extension_module;
19pub mod python_interpreter_config;
20pub mod python_module_source;
21pub mod python_package_distribution_resource;
22pub mod python_package_resource;
23pub mod python_packaging_policy;
24pub mod python_resource;
25#[cfg(test)]
26mod testutil;
27pub mod util;