mirror of
https://github.com/enso-org/enso.git
synced 2024-12-18 09:51:42 +03:00
349cc210e0
Bump rustc nightly-2022-08-30 and fix new errors and lints. https://www.pivotaltracker.com/story/show/184229094
9 lines
229 B
Rust
9 lines
229 B
Rust
const CONFIG_PATH: &str = "../config.yaml";
|
|
|
|
fn main() {
|
|
println!("cargo:rerun-if-changed={CONFIG_PATH}");
|
|
println!("cargo:rerun-if-changed=build.rs");
|
|
|
|
config_reader::generate_config_module_from_yaml(CONFIG_PATH);
|
|
}
|