Files
libguestfs/rust
Richard W.M. Jones c2c7dfd66b rust: Use distclean to clean cache rather than make clean
Actually cargo caches downloaded libraries.  The previous change
caused cargo to download and rebuild these after make clean which is
overly aggressive.  Use make distclean instead.

Updates: commit 1834f19d20
2021-12-09 13:54:15 +00:00
..
2019-07-29 10:28:31 +01:00
2019-07-29 10:28:31 +01:00

libguestfs bindings for Rust

This package contains the libguestfs bindings for Rust. You can use this crate by using cargo. See crates.io

For maintainer

How to test

Tests are incorporated into the build system.

You can test it manually by

$ ../run cargo test

How to publish

1. Fix version in Cargo.toml.in

Regarding Versioning convention, see Semantic Versioning.

You must not break '-compat@VERSION@' to make sure that this binding is compatible with the installed libguestfs.

Example

version = "0.1.0-compat@VERSION@"

2. Commit the change of the version

3. Build libguestfs

4. Publish

$ cargo publish