9 unstable releases (3 breaking)

0.4.1 Mar 18, 2024
0.4.0 Mar 17, 2024
0.3.2 Mar 14, 2024
0.2.1 Mar 12, 2024
0.1.2 Aug 18, 2023

#154 in Operating systems

Download history 9/week @ 2024-01-08 69/week @ 2024-01-15 68/week @ 2024-01-22 15/week @ 2024-02-12 144/week @ 2024-02-19 72/week @ 2024-02-26 98/week @ 2024-03-04 532/week @ 2024-03-11 242/week @ 2024-03-18 109/week @ 2024-03-25 76/week @ 2024-04-01

969 downloads per month
Used in 2 crates

GPL-3.0-or-later

135KB
2.5K SLoC

oma-apt

oma-apt provides bindings to libapt-pkg.

Currently oma-apt has most functionality available such as basic querying of package information, Installing and removing packages, updating the package lists and upgrading the system.

If you find something missing, please make an Issue to request the feature.

This Crate is Under Active Development

This API is not considered stable. Breaking changes will happen as the API comes together. As oma-apt doesn't have a Major, breaking change will be on the Minor. Never on the Patch.

src/raw contains the direct C++ bindings to libapt-pkg that are defined in apt-pkg-c

These are generally considered safe, but may cause segfaults if you do something wrong. We offer no saftey guarantees for using the raw bindings directly.

If you find a way to segfault without using the raw bindings directly, please report this as a bug.

Documentation and Examples

For more instructions on how to use oma-apt see our crates.io page.

License Note

This crate is licensed under the GPLv3 or later.

Building

libapt-pkg-dev must be installed.

Thread safety

It is not advised to use this crate in multiple threads.

You're free to try it but development will not be focused on making this crate thread safe.

Development

Make sure cargo and rustup are installed before you run the following commands.

You will need the stable and nightly toolchain. Nightly is only used for rustfmt.

Install just, a command runner we use to simplify some tasks.

cargo install just

Now that cargo and just are installed, You can setup your dev environment.

setup-dev will:

  • Install the necessary dependencies with apt.

  • Ensure the proper toolchains are installed with rustup.

  • Create compile_commands.json with bear for better c++ linting

just setup-dev

Before you commit, check formatting and basic code QA.

just fmt
just check

Dependencies

~2–13MB
~149K SLoC