Codebase list rust-libslirp / 4333698
Bump required debcargo to 2.2.10 Ximin Luo 5 years ago
2 changed file(s) with 2 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
22
33 To get set up, run::
44
5 apt update && apt install cargo debcargo
6
7 As your regular user, update the crates.io index:
8
9 cargo search
5 apt update && apt install debcargo
106
117 Then for each new package:
128
3434 test -x "$DEBCARGO" || abort 1 "debcargo found but not executable: $DEBCARGO"
3535 dcver=$($DEBCARGO --version | sed -ne 's/debcargo //p')
3636 case $dcver in
37 2.0.*|2.1.*|2.2.[012345678]|2.2.[012345678]-*) abort 1 "unsupported debcargo version $dcver. try reinstalling with \`cargo install debcargo --force\`";;
37 2.0.*|2.1.*|2.2.[0123456789]|2.2.[0123456789]-*) abort 1 "unsupported debcargo version $dcver. try reinstalling with \`cargo install debcargo --force\`";;
3838 2.2.*) true;;
3939 *) abort 1 "unsupported debcargo version: $dcver";;
4040 esac