Skip to content

Commit

Permalink
fix: openssl-sys not found error
Browse files Browse the repository at this point in the history
  • Loading branch information
wangeguo committed May 7, 2024
1 parent 3fe2187 commit 7553d1f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 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 @@ -22,7 +22,7 @@ members = [
# https://doc.rust-lang.org/cargo/reference/workspaces.html#the-workspacedependencies-table
[workspace.dependencies]
amp-builder = { path = "builder" }
amp-common = { git = "https://github.com/amphitheatre-app/common", tag = "v0.8.1" }
amp-common = { git = "https://github.com/amphitheatre-app/common", tag = "v0.8.2" }
amp-resolver = { path = "resolver" }
amp-resources = { path = "resources" }
amp-workflow = { path = "workflow" }
Expand All @@ -32,8 +32,8 @@ async-trait = "0.1.80"
clap = { version = "4.5.4", features = ["derive", "env"] }
dotenv = "0.15.0"
futures = "0.3.30"
k8s-openapi = { version = "0.22.0", features = ["schemars", "v1_30"] }
kube = { version = "0.91.0", features = ["runtime", "derive", "rustls-tls"] }
k8s-openapi = { version = "0.22.0", default-features = false, features = ["schemars", "v1_30"] }
kube = { version = "0.91.0", default-features = false, features = ["runtime", "derive", "rustls-tls"] }
lazy_static = "1.4.0"
serde = { version = "1.0.200", features = ["derive"] }
serde_json = "1.0.116"
Expand Down

0 comments on commit 7553d1f

Please sign in to comment.