1#![allow(non_upper_case_globals)]
2use allocative::Allocative;
3use anyhow::Error;
4use convert_case::{Case, Casing};
5use serde_derive::{Deserialize, Serialize};
6use starlark::environment::LibraryExtension::*;
7use starlark::environment::{GlobalsBuilder, Module};
8use starlark::eval::Evaluator;
9use starlark::syntax::{AstModule, Dialect};
10use starlark::values::{ProvidesStaticType, StarlarkValue, Value};
11use starlark::{starlark_module, starlark_simple_value, values::starlark_value};
12use std::cell::RefCell;
13use std::collections::{HashMap, HashSet};
14use std::fmt::{self, Display};
15use std::fs;
16use std::io::ErrorKind;
17use std::path::PathBuf;
18use std::process::Command;
19use std::result::Result::Ok;
20
21mod common;
22mod tests;
23mod types;
24
25pub use common::*;
26pub use types::*;