forked from facebook/buck2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlib.rs
32 lines (30 loc) · 790 Bytes
/
lib.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under both the MIT license found in the
* LICENSE-MIT file in the root directory of this source tree and the Apache
* License, Version 2.0 found in the LICENSE-APACHE file in the root directory
* of this source tree.
*/
#![feature(error_generic_member_access)]
#![feature(never_type)]
#![feature(trait_alias)]
#![feature(try_blocks)]
#![feature(try_trait_v2)]
#![feature(used_with_arg)]
#![feature(trait_upcasting)]
#![feature(let_chains)]
pub mod artifact;
pub mod artifact_utils;
pub mod artifact_value;
pub mod bxl;
pub mod digest;
pub mod digest_config;
pub mod directory;
pub mod entry;
pub mod execute;
pub mod knobs;
pub mod materialize;
pub mod output_size;
pub mod path;
pub mod re;