ros_remove 0.1.2

The Purpose of ros_remove is to provide the `cargo ros_remove` command to remove dependencies from `Cargo.toml` and the `package.xml`
Documentation
{
  lib,
  rustPlatform,
  nix-update-script,
  ...
}:

rustPlatform.buildRustPackage (finalAttrs: {
  pname = "cargo-ros-remove";
  version = "0.1.0";

  src = ./.;

  cargoLock.lockFile = ./Cargo.lock;

  passthru.updateScript = nix-update-script { };

  meta = {
    description = "The Purpose of the Package is to provide the `cargo ros_add` command to add dependencies to `Cargo.toml` and the `package.xml`";
    homepage = "https://codeberg.org/guela_rust/ros_remove";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ guelakais ];
  };
})