Go to file
Fabian Grünbichler 77ac0bd5fe section-config: make ReST dump reproducible
HashMaps are not ordered, so each package build containing a section config
dump would have the documentation ordered randomly.

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
2022-12-13 14:51:50 +01:00
.cargo cargo: switch to use packaged crates by default 2020-01-03 09:39:52 +01:00
proxmox-api-macro bump proxmox-api-macro to 1.0.4-1 2022-12-12 11:34:18 +01:00
proxmox-async workspace: switch remaining dependencies 2022-12-12 11:05:30 +01:00
proxmox-borrow move common metadata to workspace 2022-12-07 09:48:25 +01:00
proxmox-compression workspace: switch remaining dependencies 2022-12-12 11:05:30 +01:00
proxmox-http update d/control files 2022-12-07 09:48:47 +01:00
proxmox-io io: add boxed module for boxed bytes like vec::zeroed... 2022-12-12 11:00:22 +01:00
proxmox-lang move common metadata to workspace 2022-12-07 09:48:25 +01:00
proxmox-metrics update d/control files 2022-12-07 09:48:47 +01:00
proxmox-rest-server workspace: switch remaining dependencies 2022-12-12 11:05:30 +01:00
proxmox-router update d/control files 2022-12-07 09:48:47 +01:00
proxmox-schema more workspace dependencies 2022-12-12 09:30:30 +01:00
proxmox-section-config section-config: make ReST dump reproducible 2022-12-13 14:51:50 +01:00
proxmox-serde update d/control files 2022-12-07 09:48:47 +01:00
proxmox-shared-memory update d/control files 2022-12-07 09:48:47 +01:00
proxmox-sortable-macro inherit shared, external dependencies 2022-12-07 09:48:38 +01:00
proxmox-subscription more workspace dependencies 2022-12-12 09:30:30 +01:00
proxmox-sys update d/control 2022-12-12 11:05:30 +01:00
proxmox-tfa workspace: switch remaining dependencies 2022-12-12 11:05:30 +01:00
proxmox-time proxmox-time: drop TryFrom use statement 2022-12-07 09:48:47 +01:00
proxmox-uuid update d/control files 2022-12-07 09:48:38 +01:00
.gitignore git: ignore top level *-deb make target files 2022-08-26 12:18:44 +02:00
build.sh build: track d/control in git 2020-11-30 15:13:01 +01:00
bump.sh add bump.sh 2022-12-07 10:36:27 +01:00
Cargo.toml deps: bump api-macro to current version 2022-12-12 11:51:08 +01:00
Makefile buildsys: get crate list via cargo metadata in Makefile 2022-12-09 13:18:23 +01:00
README.rst update/extend README.rst 2022-12-12 11:05:30 +01:00
rustfmt.toml bump edition in rustfmt.toml 2022-10-13 15:00:28 +02:00

Local cargo config
==================

This repository ships with a ``.cargo/config`` that replaces the crates.io
registry with packaged crates located in ``/usr/share/cargo/registry``.

A similar config is also applied building with dh_cargo. Cargo.lock needs to be
deleted when switching between packaged crates and crates.io, since the
checksums are not compatible.

To reference new dependencies (or updated versions) that are not yet packaged,
the dependency needs to point directly to a path or git source.

Steps for Releases
==================

- Run ./bump.sh <CRATE> [patch|minor|major|<VERSION>]
-- Fill out changelog
-- Confirm bump commit
- Build packages with `make deb`.
-- Don't forget to commit updated d/control!

Adding Crates
=============

1) At the top level:
  - Generate the crate: ``cargo new --lib the-name``
  - Sort the crate into ``Cargo.toml``'s ``workspace.members``

2) In the new crate's ``Cargo.toml``:
  - In ``[package]`` set:
      authors.workspace = true
      license.workspace = true
      edition.workspace = true
      exclude.workspace = true
  - Add a meaningful ``description``
  - Copy ``debian/copyright`` and ``debian/debcargo.toml`` from another subcrate.

Adding a new Dependency
=======================

1) At the top level:
  - Add it to ``[workspace.dependencies]`` specifying the version and any
    features that should be enabled throughout the workspace

2) In each member's ``Cargo.toml``:
  - Add it to the desired dependencies section with ``workspace = true`` and no
    version specified.
  - If this member requires additional features, add only the extra features to
    the member dependency.

Updating a Dependency's Version
===============================

1) At the top level:
  - Bump the version in ``[workspace.dependencies]`` as desired.
  - Check for deprecations or breakage throughout the workspace.

Notes on Workspace Inheritance
==============================

Common metadata (like authors, license, ..) are inherited throughout the
workspace. If new fields are added that are identical for all crates, they
should be defined in the top-level ``Cargo.toml`` file's
``[workspace.package]`` section, and inherited in all members explicitly by
setting ``FIELD.workspace = true`` in the member's ``[package]`` section.

Dependency information is also inherited throughout the workspace, allowing a
single dependency specification in the top-level Cargo.toml file to be used by
all members.

Some restrictions apply:
- features can only be added in members, never removed (this includes
  ``default_features = false``!)
 - the base feature set at the workspace level should be the minimum (possibly
   empty!) set required by all members
- workspace dependency specifications cannot include ``optional``
 - if needed, the ``optional`` flag needs to be set at the member level when
   using a workspace dependency