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 (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj authored Jun 25, 2024
1 parent 2b22006 commit e0889ee
Showing 6 changed files with 90 additions and 65 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.13.1

#### 🚀 Updates

- Updated `resolve.aliases` to support ranges, requirements, and aliases.
- Updated `resolve.version-pattern` and `resolve.git-tag-pattern` to support year/month/day regex group names (for calver support).
- Updated dependencies.

## 0.13.0

#### 🚀 Updates
99 changes: 51 additions & 48 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -10,19 +10,19 @@ crate-type = ['cdylib']

[dependencies]
extism-pdk = "1.2.0"
proto_pdk = { version = "0.20.0" } #, path = "../../proto/crates/pdk" }
regex = { version = "1.10.4", default-features = false, features = [
proto_pdk = { version = "0.21.0" } #, path = "../../proto/crates/pdk" }
regex = { version = "1.10.5", default-features = false, features = [
"std",
"unicode-perl",
] }
serde = "1.0.203"
serde_json = "1.0.117"
serde_json = "1.0.118"

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

[features]
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"
Loading

0 comments on commit e0889ee

Please sign in to comment.