Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

Commit

Permalink
deps: Audit 06/25 (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj authored Jun 25, 2024
1 parent c8eac61 commit 3d900aa
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 52 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.12.2

#### 🚀 Updates

- Updated dependencies.

## 0.12.1

#### 🚀 Updates
Expand Down
95 changes: 49 additions & 46 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bun_plugin"
version = "0.12.1"
version = "0.12.2"
edition = "2021"
license = "MIT"
publish = false
Expand All @@ -10,12 +10,12 @@ crate-type = ['cdylib']

[dependencies]
extism-pdk = { version = "1.2.0" }
proto_pdk = { version = "0.20.0" } #, path = "../../proto/crates/pdk" }
proto_pdk = { version = "0.21.0" } #, path = "../../proto/crates/pdk" }
serde = "1.0.203"

[dev-dependencies]
proto_pdk_test_utils = { version = "0.24.0" } #, path = "../../proto/crates/pdk-test-utils" }
starbase_sandbox = "0.6.1"
proto_pdk_test_utils = { version = "0.25.0" } #, path = "../../proto/crates/pdk-test-utils" }
starbase_sandbox = "0.6.2"
tokio = { version = "1.38.0", features = ["full"] }

[features]
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
profile = "default"
channel = "1.78.0"
channel = "1.79.0"
3 changes: 2 additions & 1 deletion src/proto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ pub fn download_prebuilt(
let has_windows_support = match &input.context.version {
VersionSpec::Canary => true,
VersionSpec::Alias(alias) => alias == "latest",
VersionSpec::Version(version) => version.major >= 1 && version.minor >= 1,
VersionSpec::Semantic(version) => version.major >= 1 && version.minor >= 1,
_ => false,
};

check_supported_os_and_arch(
Expand Down

0 comments on commit 3d900aa

Please sign in to comment.