mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-12-26 04:03:52 +08:00
21 lines
322 B
Rust
21 lines
322 B
Rust
|
#![allow(non_camel_case_types)]
|
||
|
#![allow(dead_code)]
|
||
|
#![allow(non_upper_case_globals)]
|
||
|
#![allow(clippy::needless_return)]
|
||
|
|
||
|
#[macro_use]
|
||
|
extern crate lazy_static;
|
||
|
|
||
|
mod fd_readable_set;
|
||
|
mod fds;
|
||
|
mod ffi;
|
||
|
mod ffi_init;
|
||
|
mod flog;
|
||
|
mod signal;
|
||
|
mod smoke;
|
||
|
mod topic_monitor;
|
||
|
mod wchar;
|
||
|
mod wchar_ext;
|
||
|
mod wchar_ffi;
|
||
|
mod wgetopt;
|