Skip to content

Commit

Permalink
Upgrade clap to 3.0.0-rc.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bruceadams committed Dec 9, 2021
1 parent 86fa5d5 commit b1d954e
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 47 deletions.
26 changes: 25 additions & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,33 @@ linux_x68_64_task:
release_script: ./upload-binary.sh yj.$CIRRUS_OS.*
before_cache_script: rm -f target/.rustc_info.json

linux_arm_task:
arm_container:
image: rust:alpine
registry_cache:
folder: $CARGO_HOME/registry
reupload_on_changes: true
fingerprint_script: date +%Y
target_cache:
folder: target
reupload_on_changes: true
fingerprint_script:
- echo $CIRRUS_OS
- rustc --version
setup_script:
- apk add --no-cache libc-dev
build_script:
- cargo build --verbose --release
- mv target/release/yj yj.$CIRRUS_OS.aarch64
- ldd yj.$CIRRUS_OS.aarch64 || echo yay - statically linked
binary_artifacts:
path: yj.$CIRRUS_OS.*
release_script: ./upload-binary.sh yj.$CIRRUS_OS.*
before_cache_script: rm -f target/.rustc_info.json

freebsd_x86_task:
freebsd_instance:
image_family: freebsd-12-2
image_family: freebsd-13-0
env:
RUST_HOME: $HOME/freebsd
CARGO_HOME: $RUST_HOME/cargo
Expand Down
69 changes: 26 additions & 43 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ repository = "https://github.com/bruceadams/yj"

[dependencies]
exitfailure = "0.5.1"
serde_json = "1.0.68"
serde_json = "1.0.72"
serde_yaml = "0.8.21"
snafu = "0.6.10"

[dependencies.clap]
features = ["wrap_help"]
version = "3.0.0-beta.5"
features = ["derive", "cargo", "wrap_help"]
version = "3.0.0-rc.0"

0 comments on commit b1d954e

Please sign in to comment.