Files
findutils/src/lib.rs
T
Jeremy Smart c5ff1bbb6b implement locate and updatedb (#536)
---------

Co-authored-by: Sylvestre Ledru <sylvestre@debian.org>
2026-06-06 10:10:44 +02:00

12 lines
259 B
Rust

// Copyright 2017 Google Inc.
//
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.
pub mod find;
#[cfg(unix)]
pub mod locate;
pub mod updatedb;
pub mod xargs;