mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-23 10:15:08 +00:00
30 lines
550 B
Rust
30 lines
550 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;
|
|
#[allow(rustdoc::broken_intra_doc_links)]
|
|
#[allow(clippy::module_inception)]
|
|
#[allow(clippy::new_ret_no_self)]
|
|
#[allow(clippy::wrong_self_convention)]
|
|
mod ffi;
|
|
mod ffi_init;
|
|
mod ffi_tests;
|
|
mod flog;
|
|
mod future_feature_flags;
|
|
mod signal;
|
|
mod smoke;
|
|
mod topic_monitor;
|
|
mod util;
|
|
mod wchar;
|
|
mod wchar_ext;
|
|
mod wchar_ffi;
|
|
mod wgetopt;
|
|
mod wutil;
|
|
|
|
mod builtins;
|