Skip to content

Commit

Permalink
try binstall compat
Browse files Browse the repository at this point in the history
  • Loading branch information
jondot committed Dec 15, 2022
1 parent aa1588a commit a5f50bf
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

15 changes: 14 additions & 1 deletion rustwrap/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rustwrap"
version = "1.0.0"
version = "1.0.1"
edition = "2021"

description = "A tool that helps wrap binary releases for easy distribution"
Expand All @@ -11,6 +11,19 @@ keywords = ["generator", "package", "release"]
license = "Apache-2.0"
readme = "../README.md"

[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-url = "{ repo }/releases/download/v{ version }/rustwrap-x86_64-windows.zip"

[package.metadata.binstall.overrides.x86_64-apple-darwin]
pkg-url = "{ repo }/releases/download/v{ version }/rustwrap-x86_64-macos.tar.xz"

[package.metadata.binstall.overrides.aarch64-apple-darwin]
pkg-url = "{ repo }/releases/download/v{ version }/rustwrap-aarch64-macos.tar.xz"

[package.metadata.binstall.overrides.x86_64-unknown-linux-gnu]
pkg-url = "{ repo }/releases/download/v{ version }/rustwrap-x86_64-linux.tar.xz"


[dependencies]

clap = { version = "4", features = ["cargo"] }
Expand Down

0 comments on commit a5f50bf

Please sign in to comment.