File: README.md

package info (click to toggle)
libguestfs 1%3A1.44.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 118,932 kB
  • sloc: ansic: 458,017; ml: 51,424; sh: 13,191; java: 9,578; makefile: 7,931; cs: 6,328; haskell: 5,674; python: 3,871; perl: 3,528; erlang: 2,446; xml: 1,347; ruby: 350; pascal: 257; javascript: 157; lex: 135; yacc: 128; cpp: 10
file content (42 lines) | stat: -rw-r--r-- 728 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# libguestfs bindings for Rust

This package contains the libguestfs bindings for Rust. You can use this crate
by using cargo. See [crates.io](https://crates.io/crates/guestfs)

# 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](https://semver.org/).

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
```