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

Commit

Permalink
deps: Update to latest.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Sep 18, 2023
1 parent ddb96db commit 77d7e22
Show file tree
Hide file tree
Showing 4 changed files with 90 additions and 53 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.0.2

#### ⚙️ Internal

- Updated dependencies.

## 0.0.1

#### 🎉 Release
Expand Down
126 changes: 77 additions & 49 deletions Cargo.lock

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

9 changes: 6 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "python_plugin"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
license = "MIT"
publish = false
Expand All @@ -11,15 +11,18 @@ crate-type = ['cdylib']
[dependencies]
extism-pdk = "0.3.4"
once_cell = "1.18.0"
proto_pdk = { version = "0.7.1" } # , path = "../../proto/crates/pdk" }
proto_pdk = { version = "0.7.2" } # , path = "../../proto/crates/pdk" }
regex = "1.9.5"
serde = "1.0.188"

[dev-dependencies]
proto_pdk_test_utils = { version = "0.6.2" } # , path = "../../proto/crates/pdk-test-utils" }
proto_pdk_test_utils = { version = "0.7.0" } # , path = "../../proto/crates/pdk-test-utils" }
starbase_sandbox = "0.1.10"
tokio = "1.32.0"

[profile.release]
codegen-units = 1
debug = false
lto = true
opt-level = "s"
panic = "abort"
2 changes: 1 addition & 1 deletion src/proto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ pub fn load_versions(Json(_): Json<LoadVersionsInput>) -> FnResult<Json<LoadVers
let tags = load_git_tags("https://github.com/python/cpython")?;
let tags = tags
.into_iter()
.filter(|t| !t.ends_with("^{}") && t != "legacy-trunk")
.filter(|t| t != "legacy-trunk")
.filter_map(from_python_version)
.collect::<Vec<_>>();

Expand Down

0 comments on commit 77d7e22

Please sign in to comment.