Go to file
Dominik Csapak e7a5768e04 proxmox: section_config: add id_property to SectionConfigPlugin
if set in the SectionConfigPlugin, we set the given
field to the section_id for each entry

this way we can have e.g. the userid in the Struct and ObjectSchema,
without having to write it twice to the config but we are still getting
it when parsing the config

when a plugin does not specify an id_property, then the id_schema of
the SectionConfig will be used as fallback

also adds a test for this with multiple plugins

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
2020-05-19 09:08:49 +02:00
.cargo cargo: switch to use packaged crates by default 2020-01-03 09:39:52 +01:00
proxmox proxmox: section_config: add id_property to SectionConfigPlugin 2020-05-19 09:08:49 +02:00
proxmox-api-macro proxmox/src/api/rpc_environment.rs: use Value to store metadata 2020-05-18 09:38:00 +02:00
proxmox-sortable-macro bump proxmox-sortable-macro to 0.1.1 2020-04-17 18:37:46 +02:00
.gitignore add Cargo.lock to .gitignore 2020-01-15 17:10:13 +01:00
build.sh build.sh: point to system compiler via rust-toolchain 2020-01-15 16:25:14 +01:00
Cargo.toml merge api, sys and tools into proxmox directly 2020-01-21 12:15:42 +01:00
Makefile buildsys: drop format check in check target 2020-03-16 12:21:14 +01:00
README.rst README: Remove 'Versioning', add 'Steps for Releases' 2020-01-15 14:26:06 +01:00
rustfmt.toml initial import, starting with vec & io helpers 2019-06-06 14:00:25 +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
==================

- Cargo.toml updates:
  - Bump all modified crate versions.
  - Update all the other crates' Cargo.toml to depend on the new versions if
    required, then bump their version as well if not already done.
- Update debian/changelog files in all the crates updated above.
- Build packages with `make deb`.