2 releases

0.1.1 Mar 18, 2020
0.1.0 Mar 18, 2020

#689 in Unix APIs

Download history 25/week @ 2023-12-06 42/week @ 2023-12-13 7/week @ 2023-12-20 1/week @ 2023-12-27 18/week @ 2024-01-03 23/week @ 2024-01-10 115/week @ 2024-01-17 53/week @ 2024-01-24 89/week @ 2024-01-31 18/week @ 2024-02-07 50/week @ 2024-02-14 273/week @ 2024-02-21 253/week @ 2024-02-28 135/week @ 2024-03-06 293/week @ 2024-03-13 513/week @ 2024-03-20

1,218 downloads per month

MPL-2.0 license

115KB
2.5K SLoC

Coreutils Core

GitHub license

It's a library used by this implementation of coreutils in Rust programming language.

Think of it as a crate to create coreutils tools.

Here lies several abstraction for Unix/Unix-like structures in the OS supported by the project.

  • Backup module that handles creating backups
  • Input module to get user confirmation
  • mktemp: Wrappers for libc mkstemp(3) and mkdtemp(3)
  • mkfifo: Wrapper for libc mkfifo(3) and maybe expandable for other FIFO related functions
  • OS module with abstractions for more os specific stuff
    • Audit structs and syscall for FreeBSD and MacOS
    • group: Module with structures and methods to handle groups information
    • load: Safe abstraction to system function to get load of the system
    • login_name: Safe abstractions to system function to get caller login name
    • passwd: Module that holds structures and methods to handle system user information
    • process: Safe abstraction related to process handling
    • routing_table: Routing table abstractions for OpenBSD
    • time: OS functions to handle system time (set system time)
    • tty: Abstractions to check if a FileDescriptor is a TTY and ways to get the TTY name
    • utmp and utmpx: Types representing account database on unix and methods to use them
    • utsname: Types to aquire system information

It also re-export major needed things from bstr, a crate with a string type for Rust that is not required to be valid UTF-8, as well as time and libc

License

This Source Code Form is subject to the terms of the Mozilla Public License, v.2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.

This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0.

Dependencies

~4.5–6MB
~113K SLoC