forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.rs
More file actions
34 lines (31 loc) · 740 Bytes
/
lib.rs
File metadata and controls
34 lines (31 loc) · 740 Bytes
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
33
34
#![feature(future_join)]
#![feature(arbitrary_self_types)]
#![feature(arbitrary_self_types_pointers)]
#![feature(impl_trait_in_assoc_type)]
mod app;
mod client_references;
mod dynamic_imports;
mod empty;
pub mod entrypoints;
mod font;
pub mod global_module_id_strategy;
mod instrumentation;
mod loadable_manifest;
mod middleware;
mod module_graph;
mod nft_json;
pub mod operation;
mod pages;
pub mod paths;
pub mod project;
pub mod route;
mod server_actions;
mod versioned_content_map;
mod webpack_stats;
// Declare build-time information variables generated in build.rs
shadow_rs::shadow!(build);
pub fn register() {
next_core::register();
turbopack_nodejs::register();
include!(concat!(env!("OUT_DIR"), "/register.rs"));
}